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-2018-25207

CVE-2018-25207: Online Quiz Maker SQLi Vulnerability

CVE-2018-25207 is a SQL injection flaw in Online Quiz Maker 1.0 affecting the catid and usern parameters. Authenticated attackers can execute arbitrary SQL commands to extract sensitive data or bypass authentication.

Published: March 27, 2026

CVE-2018-25207 Overview

CVE-2018-25207 is a SQL Injection vulnerability affecting Online Quiz Maker 1.0. The application contains SQL injection vulnerabilities in the catid and usern parameters that allow authenticated attackers to execute arbitrary SQL commands. Attackers can submit malicious POST requests to quiz-system.php or add-category.php with crafted SQL payloads in POST parameters to extract sensitive database information or bypass authentication.

Critical Impact

Authenticated attackers can exploit SQL injection flaws to extract sensitive database contents, modify data, or potentially bypass authentication mechanisms entirely.

Affected Products

  • Online Quiz Maker 1.0

Discovery Timeline

  • 2026-03-26 - CVE CVE-2018-25207 published to NVD
  • 2026-03-26 - Last updated in NVD database

Technical Details for CVE-2018-25207

Vulnerability Analysis

This SQL Injection vulnerability (CWE-89) affects Online Quiz Maker version 1.0, a PHP-based web application for creating and managing online quizzes. The core issue stems from improper sanitization of user-supplied input in POST parameters before incorporating them into SQL queries.

The vulnerable endpoints include quiz-system.php and add-category.php, where the catid and usern parameters are directly concatenated into database queries without adequate validation or parameterization. This allows authenticated users to inject malicious SQL syntax that the database engine will interpret and execute.

Upon successful exploitation, an attacker can extract sensitive information from the database, including user credentials, quiz answers, and potentially other stored data. In certain configurations, this could also enable authentication bypass or database manipulation.

Root Cause

The root cause of CVE-2018-25207 is the failure to implement proper input validation and parameterized queries (prepared statements) when handling user-supplied POST data. The catid and usern parameters are directly incorporated into SQL query strings without sanitization, escaping, or the use of parameterized statements. This classic SQL injection pattern allows attackers to break out of the intended query context and inject arbitrary SQL commands.

Attack Vector

The attack is network-based and requires low privileges (authenticated access) to exploit. An attacker with valid credentials can craft malicious POST requests targeting the vulnerable endpoints. The attack requires no user interaction and can be executed remotely.

The exploitation flow involves:

  1. An authenticated attacker identifies the vulnerable parameters (catid or usern)
  2. The attacker crafts a POST request containing SQL injection payloads
  3. The malicious request is sent to quiz-system.php or add-category.php
  4. The backend database executes the injected SQL commands
  5. Sensitive data is returned to the attacker or database modifications occur

Technical details regarding exploitation techniques can be found in the Exploit-DB #45323 reference and the VulnCheck SQL Injection Advisory.

Detection Methods for CVE-2018-25207

Indicators of Compromise

  • Unusual POST requests to quiz-system.php or add-category.php containing SQL syntax characters such as single quotes, double dashes, or UNION statements
  • Database error messages appearing in application logs or responses that indicate malformed queries
  • Unexpected database queries or data extraction patterns in database audit logs
  • Authentication anomalies or privilege escalation events following requests to vulnerable endpoints

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect and block SQL injection patterns in POST parameters
  • Monitor application logs for error messages containing SQL syntax errors or database exception details
  • Deploy database activity monitoring to identify unusual query patterns, particularly UNION-based data extraction
  • Review access logs for repeated POST requests to quiz-system.php and add-category.php with unusual parameter values

Monitoring Recommendations

  • Enable detailed logging for POST requests to vulnerable PHP endpoints
  • Configure alerting for database queries containing suspicious keywords like UNION, SELECT, DROP, or comment sequences
  • Implement rate limiting on authentication-related endpoints to slow brute-force and injection attempts
  • Deploy SentinelOne Singularity to detect and respond to exploitation attempts across the application stack

How to Mitigate CVE-2018-25207

Immediate Actions Required

  • Restrict access to the Online Quiz Maker application to trusted users and networks only
  • Implement a Web Application Firewall with SQL injection protection rules
  • Audit existing database content for signs of unauthorized access or data exfiltration
  • Consider taking the application offline until proper remediation can be applied

Patch Information

No official vendor patch has been identified for this vulnerability. The application is available from Hscripts PHP Quiz Maker. Organizations using this software should contact the vendor directly or consider migrating to a maintained alternative.

For technical details, refer to the VulnCheck SQL Injection Advisory and Exploit-DB #45323.

Workarounds

  • Implement input validation using whitelist approaches for the catid and usern parameters
  • Modify the application code to use prepared statements (parameterized queries) for all database operations
  • Deploy a reverse proxy or WAF with SQL injection detection capabilities in front of the application
  • Restrict database user privileges to the minimum required for application functionality
bash
# Example: Restrict access to vulnerable endpoints via .htaccess
<Files "quiz-system.php">
    Order deny,allow
    Deny from all
    Allow from 192.168.1.0/24
</Files>

<Files "add-category.php">
    Order deny,allow
    Deny from all
    Allow from 192.168.1.0/24
</Files>

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechOnline Quiz Maker

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.08%

  • 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
  • Exploit-DB #45323

  • Hscripts PHP Download

  • Hscripts PHP Quiz Maker

  • VulnCheck SQL Injection Advisory
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs Path Traversal Vulnerability
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