The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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
    • 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-2024-37870

CVE-2024-37870: Learning Management System SQLi Flaw

CVE-2024-37870 is an SQL injection vulnerability in Itsourcecode Learning Management System 1.0 affecting processscore.php. Attackers can execute arbitrary SQL commands via the id parameter. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: March 31, 2026

CVE-2024-37870 Overview

CVE-2024-37870 is a SQL injection vulnerability discovered in the processscore.php file of the Learning Management System Project In PHP With Source Code version 1.0. This vulnerability allows unauthenticated attackers to execute arbitrary SQL commands through the id parameter, potentially leading to complete database compromise, data exfiltration, and unauthorized system access.

Critical Impact

This SQL injection vulnerability enables attackers to bypass authentication, extract sensitive student and administrator data, modify academic records, and potentially achieve remote code execution on the underlying server through SQL features like INTO OUTFILE or xp_cmdshell depending on database configuration.

Affected Products

  • itsourcecode Learning Management System version 1.0

Discovery Timeline

  • 2024-07-09 - CVE-2024-37870 published to NVD
  • 2025-12-15 - Last updated in NVD database

Technical Details for CVE-2024-37870

Vulnerability Analysis

The vulnerability resides in the processscore.php script, which handles score processing functionality within the Learning Management System. The script accepts user-supplied input through the id parameter without proper sanitization or parameterized query implementation. This allows attackers to inject malicious SQL statements that are directly concatenated into database queries and executed by the backend database server.

The attack requires no authentication and can be performed remotely over the network. The lack of input validation creates a direct path for attackers to manipulate the SQL query structure, enabling them to read, modify, or delete data across the entire database. In severe cases, attackers could leverage database-specific features to execute operating system commands or write files to the server filesystem.

Root Cause

The root cause of this vulnerability is the failure to implement proper input validation and parameterized queries (prepared statements) in the processscore.php file. The id parameter is directly incorporated into SQL queries without sanitization, escaping, or the use of bound parameters. This represents a violation of CWE-89 (Improper Neutralization of Special Elements used in an SQL Command).

Attack Vector

The vulnerability is exploitable via network-based requests to the processscore.php endpoint. Attackers can craft malicious HTTP requests containing SQL injection payloads within the id parameter. Since no authentication is required and user interaction is not necessary, automated exploitation is straightforward.

A typical attack scenario involves an attacker sending specially crafted requests to the vulnerable endpoint with SQL metacharacters and commands embedded in the id parameter. The injected SQL commands are then executed with the privileges of the database user configured for the application, potentially granting full access to all database tables and operations.

For technical details and proof-of-concept information, refer to the GitHub Issue Discussion documenting this vulnerability.

Detection Methods for CVE-2024-37870

Indicators of Compromise

  • Unusual SQL error messages appearing in web server logs referencing processscore.php
  • HTTP requests to processscore.php containing SQL keywords such as UNION, SELECT, DROP, INSERT, or comment characters (--, /*)
  • Database query logs showing unexpected queries or syntax errors originating from the application
  • Evidence of data exfiltration or unauthorized database modifications in audit logs

Detection Strategies

  • Deploy Web Application Firewall (WAF) rules to detect and block SQL injection patterns targeting the id parameter
  • Implement application-layer monitoring to flag requests containing SQL metacharacters in query parameters
  • Enable database audit logging to track anomalous query patterns and failed authentication attempts
  • Configure intrusion detection systems (IDS) with signatures for common SQL injection attack patterns

Monitoring Recommendations

  • Monitor web server access logs for requests to processscore.php with anomalous parameter lengths or special characters
  • Set up alerts for database errors related to malformed SQL queries from the Learning Management System application
  • Review database connection logs for unexpected query patterns or access from the web application user account
  • Implement real-time monitoring for any changes to user privilege tables or academic record data

How to Mitigate CVE-2024-37870

Immediate Actions Required

  • Remove or restrict access to the Learning Management System until a patch is applied or code is remediated
  • Implement Web Application Firewall rules to filter SQL injection attempts targeting processscore.php
  • Review database access logs for evidence of prior exploitation and assess potential data compromise
  • Consider network segmentation to limit database server exposure from the web application tier

Patch Information

No official vendor patch has been released for this vulnerability at the time of writing. The Learning Management System Project In PHP With Source Code version 1.0 from itsourcecode remains vulnerable. Organizations using this software should monitor the vendor's repository for updates or implement the workarounds below. For additional context, see the GitHub Issue Discussion.

Workarounds

  • Modify the processscore.php source code to use parameterized queries (prepared statements) with PDO or MySQLi
  • Implement strict input validation on the id parameter to accept only integer values
  • Deploy a reverse proxy or WAF with SQL injection filtering capabilities in front of the application
  • Restrict database user privileges to minimum required operations to limit impact of successful exploitation
bash
# Example WAF rule for ModSecurity to block SQL injection on the id parameter
SecRule ARGS:id "@detectSQLi" \
    "id:1001,\
    phase:2,\
    deny,\
    status:403,\
    msg:'SQL Injection Attempt Detected on processscore.php',\
    log,\
    auditlog"

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechItsourcecode Learning Management System

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.10%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-89
  • Technical References
  • GitHub Issue Discussion
  • Latest CVEs
  • CVE-2026-35467: Browser API Key Information Disclosure

  • CVE-2026-35466: cveInterface.js XSS Vulnerability

  • CVE-2026-30252: ZenShare Suite XSS Vulnerability

  • CVE-2026-30251: ZenShare Suite v17.0 XSS Vulnerability
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