A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-2024-7375

CVE-2024-7375: Simple Realtime Quiz System SQLi Flaw

CVE-2024-7375 is a critical SQL injection vulnerability in Simple Realtime Quiz System 1.0 affecting the /my_quiz_result.php file. This article covers the technical details, affected versions, security impact, and mitigation.

Published: May 26, 2026

CVE-2024-7375 Overview

CVE-2024-7375 is a SQL injection vulnerability in SourceCodester Simple Realtime Quiz System 1.0, developed by oretnom23. The flaw resides in the /my_quiz_result.php script, where the quiz parameter is passed to a database query without proper sanitization. Authenticated attackers can manipulate the parameter remotely to inject arbitrary SQL statements. Public exploit code has been disclosed, lowering the barrier for opportunistic abuse. The vulnerability maps to [CWE-89] (Improper Neutralization of Special Elements used in an SQL Command).

Critical Impact

Remote attackers with low privileges can extract, modify, or destroy quiz database contents by injecting SQL through the quiz HTTP parameter in /my_quiz_result.php.

Affected Products

  • Oretnom23 Simple Realtime Quiz System 1.0
  • File: /my_quiz_result.php
  • Vulnerable parameter: quiz

Discovery Timeline

  • 2024-08-02 - CVE-2024-7375 published to NVD
  • 2024-08-09 - Last updated in NVD database

Technical Details for CVE-2024-7375

Vulnerability Analysis

The vulnerability stems from unsanitized handling of the quiz request parameter inside /my_quiz_result.php. The application concatenates the user-supplied value directly into a SQL query string rather than using parameterized statements. As a result, attackers can break out of the intended query context and append arbitrary SQL clauses.

Exploitation requires network access to the application and a low-privilege authenticated session. No user interaction is required, and the attack complexity is low. Successful exploitation can disclose stored user records, quiz answers, and authentication material, and can also allow data tampering through UPDATE or DELETE payloads stacked onto the injected statement.

The exploit has been disclosed publicly via a GitHub Gist referenced in VulDB #273359, increasing the likelihood of automated scanning against exposed instances. The EPSS probability remains low, but public availability of the proof of concept means defenders should treat exposure as actionable.

Root Cause

The root cause is improper neutralization of special characters in SQL query construction [CWE-89]. The quiz argument is interpolated into a query without prepared statements, input validation, or output encoding. Any character with SQL semantics, such as single quotes, parentheses, or comment markers, is interpreted by the database engine.

Attack Vector

An attacker submits a crafted HTTP request to /my_quiz_result.php with a malicious quiz parameter value. The injection payload typically includes a UNION SELECT clause to exfiltrate data from adjacent tables, or boolean-based predicates to enumerate records blindly. See the public exploit gist for the disclosed proof-of-concept request format.

Detection Methods for CVE-2024-7375

Indicators of Compromise

  • HTTP requests to /my_quiz_result.php containing SQL metacharacters such as ', --, UNION, or SLEEP( in the quiz parameter.
  • Unexpected SELECT, UNION, or INFORMATION_SCHEMA queries in MySQL/MariaDB query logs originating from the quiz application user.
  • Web server access logs showing repeated requests to my_quiz_result.php from a single source with varying quiz values.

Detection Strategies

  • Deploy web application firewall (WAF) signatures for SQL injection patterns targeting the quiz parameter on the /my_quiz_result.php endpoint.
  • Enable database query logging and alert on queries containing UNION SELECT or comment sequences from the quiz application service account.
  • Correlate authentication events with anomalous query volume from the same session to identify automated injection attempts.

Monitoring Recommendations

  • Forward web server and database logs to a centralized analytics platform for correlation and retention.
  • Establish baseline request rates for /my_quiz_result.php and alert on deviations.
  • Monitor outbound connections from the database host for signs of post-exploitation data exfiltration.

How to Mitigate CVE-2024-7375

Immediate Actions Required

  • Restrict network access to the Simple Realtime Quiz System until a patch is available, exposing it only to trusted networks or behind a VPN.
  • Deploy a WAF rule that blocks SQL metacharacters in the quiz parameter sent to /my_quiz_result.php.
  • Audit the underlying database for unauthorized read or write activity since the application was first deployed.
  • Rotate credentials for any accounts whose data may have been stored in the affected database.

Patch Information

No official vendor patch has been published for Simple Realtime Quiz System 1.0 at the time of NVD publication. Organizations should refer to the VulDB CTI Report #273359 for tracking updates. If source code modifications are feasible, replace string-concatenated queries in my_quiz_result.php with parameterized queries using PHP PDO::prepare() or mysqli_prepare(), and apply server-side input validation to the quiz parameter.

Workarounds

  • Place the application behind an authenticating reverse proxy that filters request parameters.
  • Apply database-level least privilege so the application account cannot read sensitive tables or execute administrative statements.
  • Disable or remove the /my_quiz_result.php endpoint if it is not required for business operations.
bash
# Example ModSecurity rule to block SQLi in the quiz parameter
SecRule ARGS:quiz "@detectSQLi" \
  "id:1007375,phase:2,deny,status:403,\
   msg:'CVE-2024-7375 SQLi attempt on my_quiz_result.php',\
   logdata:'Matched data: %{MATCHED_VAR}'"

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechOretnom23 Simple Realtime Quiz System

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.11%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:L/VI:L/VA:L/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
  • AvailabilityLow
  • CWE References
  • CWE-89
  • Technical References
  • GitHub Gist Exploit Code

  • VulDB CTI Report #273359

  • VulDB #273359

  • VulDB Submission #383523
  • Related CVEs
  • CVE-2024-7374: Simple Realtime Quiz System SQLi Flaw

  • CVE-2024-7377: Simple Realtime Quiz System SQLi Flaw

  • CVE-2024-7378: Simple Realtime Quiz System SQLi Flaw

  • CVE-2024-7369: Simple Realtime Quiz System SQLi Flaw
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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