Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2020-37089

CVE-2020-37089: School ERP Pro SQLi Vulnerability

CVE-2020-37089 is a SQL injection flaw in School ERP Pro 1.0 affecting the es_messagesid parameter. Attackers can manipulate database queries to extract or modify data. This article covers technical details and mitigation.

Published: February 6, 2026

CVE-2020-37089 Overview

School ERP Pro 1.0 contains a SQL injection vulnerability in the es_messagesid parameter that allows attackers to manipulate database queries through GET requests. Attackers can exploit the vulnerable parameter by injecting crafted SQL statements to potentially extract, modify, or delete database information. This vulnerability poses a significant risk to educational institutions using this software, as it could expose sensitive student and staff records.

Critical Impact

Attackers can leverage this SQL injection flaw to extract sensitive educational records, modify database contents, or potentially compromise the entire backend database system through the vulnerable es_messagesid parameter.

Affected Products

  • School ERP Pro 1.0

Discovery Timeline

  • 2026-02-03 - CVE CVE-2020-37089 published to NVD
  • 2026-02-04 - Last updated in NVD database

Technical Details for CVE-2020-37089

Vulnerability Analysis

This vulnerability falls under CWE-89 (Improper Neutralization of Special Elements used in an SQL Command), commonly known as SQL Injection. The flaw exists in how the application processes user-supplied input through the es_messagesid parameter without proper sanitization or parameterized queries.

When a user submits a request containing the es_messagesid parameter, the application directly incorporates this input into SQL queries. This allows an attacker to break out of the intended query structure and inject arbitrary SQL commands. The network-accessible nature of this vulnerability means remote attackers can exploit it without requiring physical access to the target system, though some level of authentication appears necessary based on the attack requirements.

Root Cause

The root cause of this vulnerability is the failure to properly validate and sanitize user input before incorporating it into SQL queries. The es_messagesid parameter accepts GET request input that is directly concatenated into database queries without the use of prepared statements or parameterized queries. This classic SQL injection pattern allows attackers to manipulate the query logic by injecting special SQL characters and commands.

Attack Vector

The attack is conducted over the network via HTTP GET requests targeting the vulnerable es_messagesid parameter. An attacker can craft malicious URLs containing SQL injection payloads that, when processed by the application, execute unintended database operations. The exploitation requires low attack complexity, making it accessible to attackers with basic SQL injection knowledge.

The vulnerability enables attackers to potentially:

  • Extract sensitive data from the database including student records, grades, and personal information
  • Modify existing database records
  • Enumerate database structure and user credentials
  • Potentially escalate to further system compromise depending on database permissions

Technical details and proof-of-concept information are available through the Exploit-DB #48390 entry and the VulnCheck SQL Injection Advisory.

Detection Methods for CVE-2020-37089

Indicators of Compromise

  • Unusual or malformed HTTP GET requests containing SQL syntax in the es_messagesid parameter
  • Database error messages appearing in web application responses indicating query manipulation
  • Unexpected database queries or access patterns in database logs
  • Evidence of data exfiltration or unauthorized database modifications

Detection Strategies

  • Deploy Web Application Firewall (WAF) rules to detect and block SQL injection patterns in the es_messagesid parameter
  • Monitor web server access logs for requests containing SQL keywords such as UNION, SELECT, INSERT, DELETE, or comment sequences (--, /*)
  • Implement database activity monitoring to detect anomalous query patterns
  • Use intrusion detection systems (IDS) with SQL injection signature detection capabilities

Monitoring Recommendations

  • Enable detailed logging on web servers and database systems to capture all requests to endpoints handling the es_messagesid parameter
  • Configure alerts for database errors that may indicate attempted SQL injection attacks
  • Regularly review access logs for patterns consistent with automated SQL injection scanning tools
  • Monitor for unexpected outbound data transfers that could indicate successful data exfiltration

How to Mitigate CVE-2020-37089

Immediate Actions Required

  • Restrict network access to the School ERP Pro application to trusted networks only
  • Implement Web Application Firewall (WAF) rules to filter SQL injection attempts targeting the es_messagesid parameter
  • Consider temporarily disabling or restricting access to the messaging functionality if not critical to operations
  • Audit database logs for any signs of prior exploitation

Patch Information

No official vendor patch information is currently available in the CVE data. Organizations should check the vendor's website or contact support for security updates. The original project appears to have been hosted on SourceForge, with archived information available through the SourceForge Project Archive. Additional vendor information may be found at the Arox Website Snapshot.

Workarounds

  • Implement input validation at the application level to reject any input containing SQL metacharacters in the es_messagesid parameter
  • Deploy a reverse proxy or WAF with SQL injection protection in front of the application
  • Use database user accounts with minimal required privileges to limit the impact of successful exploitation
  • Consider implementing prepared statements or parameterized queries if source code modification is possible
  • Isolate the database server from direct internet access and restrict connections to the application server only

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechSchool Erp Pro

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:L/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-89
  • Technical References
  • SourceForge Project Archive

  • Arox Website Snapshot

  • Exploit-DB #48390

  • VulnCheck SQL Injection Advisory
  • Related CVEs
  • CVE-2020-37084: School ERP Pro 1.0 RCE Vulnerability

  • CVE-2020-37090: School ERP Pro File Upload RCE Flaw

  • CVE-2020-37088: School ERP Pro Path Traversal Flaw
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English