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-37090

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

CVE-2020-37090 is a file upload vulnerability in School ERP Pro 1.0 allowing attackers to upload malicious PHP files via the messaging system for remote code execution. This article covers technical details, impact, and mitigations.

Published: February 6, 2026

CVE-2020-37090 Overview

School ERP Pro 1.0 contains a critical file upload vulnerability (CWE-434: Unrestricted Upload of File with Dangerous Type) that allows authenticated students to upload arbitrary PHP files through the messaging system. Attackers can exploit the message attachment feature to upload malicious PHP scripts, enabling remote code execution on the server.

Critical Impact

This vulnerability allows low-privileged users (students) to achieve remote code execution on the web server by uploading malicious PHP files through the messaging attachment feature, potentially compromising the entire school management system and sensitive student data.

Affected Products

  • School ERP Pro 1.0

Discovery Timeline

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

Technical Details for CVE-2020-37090

Vulnerability Analysis

The vulnerability resides in School ERP Pro's messaging system, specifically in the file attachment handling functionality. The application fails to properly validate the file type and content of attachments uploaded through the messaging feature. This allows authenticated users, including those with low privileges such as students, to bypass intended file type restrictions and upload arbitrary PHP files.

Once a malicious PHP file is uploaded to the server, the attacker can directly access the uploaded file via a predictable or discoverable URL path, causing the web server to execute the PHP code. This grants the attacker the ability to run arbitrary commands on the underlying server with the privileges of the web server process.

The vulnerability is particularly severe in educational environments where student accounts are widely distributed and may be compromised or misused.

Root Cause

The root cause is improper input validation (CWE-434) in the file upload handling code within the messaging module. The application does not implement sufficient server-side validation to restrict file uploads to safe file types. Key deficiencies include:

  • No server-side validation of file extensions
  • Missing MIME type verification
  • Absence of content-type inspection
  • No restrictions on executable file types like .php, .phtml, or .php5

Attack Vector

The attack is network-based and requires low privileges (an authenticated student account). The attacker follows this exploitation path:

  1. Authenticate to the School ERP Pro application using valid student credentials
  2. Navigate to the messaging system's attachment upload feature
  3. Craft a malicious PHP file containing web shell code or command execution payloads
  4. Upload the PHP file as a message attachment, bypassing client-side restrictions
  5. Locate the uploaded file path on the server (typically in a predictable uploads directory)
  6. Access the uploaded PHP file directly via HTTP, triggering code execution
  7. Execute arbitrary commands on the server

The vulnerability mechanism involves the server accepting and storing the uploaded PHP file without sanitization, then serving it in a way that allows PHP execution. For detailed technical information, refer to the Exploit-DB #48392 and the VulnCheck Remote Code Execution Advisory.

Detection Methods for CVE-2020-37090

Indicators of Compromise

  • Presence of unexpected .php, .phtml, or .php5 files in message attachment upload directories
  • Web server access logs showing direct requests to uploaded files in attachment folders
  • Unusual file creation timestamps in upload directories during non-business hours
  • Web shell signatures or command execution patterns in uploaded file contents

Detection Strategies

  • Monitor web server logs for POST requests to message attachment upload endpoints followed by GET requests to the same uploaded file
  • Implement file integrity monitoring on upload directories to detect new PHP file creation
  • Deploy web application firewall (WAF) rules to detect file upload attacks targeting PHP extensions
  • Review application logs for unusual attachment upload activity from student accounts

Monitoring Recommendations

  • Configure alerts for any PHP file writes to the messaging attachment directories
  • Monitor outbound connections from the web server that may indicate post-exploitation activity
  • Implement real-time log analysis for suspicious URL patterns accessing upload directories
  • Track student account activity for anomalous messaging behavior or high-volume attachments

How to Mitigate CVE-2020-37090

Immediate Actions Required

  • Restrict or disable the file attachment feature in the messaging system until a patch is applied
  • Implement server-side file type validation to block PHP and other executable file extensions
  • Configure the web server to prevent PHP execution in upload directories
  • Audit existing uploaded files in the attachment directory for malicious content
  • Consider migrating to a supported and actively maintained school management solution

Patch Information

No official vendor patch has been identified in the available CVE data. The original vendor (Arox) and the SourceForge project appear to be archived based on the Arox Website Archive and SourceForge Project Archive. Organizations using School ERP Pro 1.0 should implement workarounds immediately and consider migrating to an actively maintained alternative.

Workarounds

  • Add .htaccess rules or web server configuration to disable PHP execution in upload directories
  • Implement a whitelist of allowed file extensions (e.g., .pdf, .doc, .jpg, .png) at the server level
  • Store uploaded files outside the web root and serve them through a download script that sets appropriate headers
  • Apply network segmentation to limit the blast radius if the web server is compromised
bash
# Apache configuration to disable PHP execution in upload directories
# Add to .htaccess or httpd.conf for the uploads directory
<Directory "/var/www/html/school-erp/uploads">
    php_admin_flag engine off
    AddHandler default-handler .php .phtml .php5
</Directory>

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechSchool Erp Pro

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.22%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/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
  • AvailabilityHigh
  • CWE References
  • CWE-434
  • Technical References
  • SourceForge Project Archive

  • Arox Website Archive

  • Exploit-DB #48392

  • VulnCheck Remote Code Execution Advisory
  • Related CVEs
  • CVE-2020-37084: School ERP Pro 1.0 RCE Vulnerability

  • CVE-2020-37089: School ERP Pro SQLi Vulnerability

  • 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