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

CVE-2018-25417: AiOPMSD Final SQL Injection Vulnerability

CVE-2018-25417 is an SQL injection flaw in AiOPMSD Final 1.0.0 that allows unauthenticated attackers to execute arbitrary SQL queries via the quality parameter, exposing sensitive database information.

Published: June 4, 2026

CVE-2018-25417 Overview

CVE-2018-25417 is an SQL injection vulnerability [CWE-89] in AiOPMSD Final 1.0.0, an open-source PHP application distributed via SourceForge. The flaw resides in quality.php, which passes the quality GET parameter directly into a backend SQL query without sanitization. Unauthenticated remote attackers can inject arbitrary SQL through crafted HTTP requests to extract database contents, including usernames, database names, and DBMS version information. A public proof-of-concept is published as Exploit-DB entry 45690, and the issue is tracked by VulnCheck as an SQL injection advisory affecting quality.php.

Critical Impact

Unauthenticated attackers can read arbitrary database content over the network by injecting SQL through the quality parameter of quality.php.

Affected Products

  • AiOPMSD Final 1.0.0
  • quality.php endpoint (vulnerable script)
  • Deployments sourced from the AiOPMSD SourceForge project

Discovery Timeline

  • 2026-05-30 - CVE-2018-25417 published to NVD
  • 2026-06-01 - Last updated in NVD database

Technical Details for CVE-2018-25417

Vulnerability Analysis

The vulnerability is a classic in-band SQL injection in the AiOPMSD Final 1.0.0 web component. The quality.php script accepts a quality query parameter from the client and concatenates it into a SQL statement executed against the application database. Because the parameter is neither validated nor parameterized, an attacker can break out of the intended SQL context and append arbitrary clauses such as UNION SELECT to read data from other tables and system functions. The endpoint requires no authentication, which removes any prerequisite for an attacker beyond network reachability. Public exploit material demonstrates extraction of user(), database(), and version() values, confirming end-to-end exploitability.

Root Cause

The root cause is improper neutralization of special elements used in an SQL command [CWE-89]. The application builds queries through string concatenation with untrusted GET input instead of using prepared statements or parameter binding. No allowlist, type coercion, or escaping is applied to the quality parameter before it reaches the database driver.

Attack Vector

Exploitation occurs over the network through a single HTTP GET request to quality.php with a malicious payload in the quality parameter. No credentials, user interaction, or special privileges are required. A typical payload appends a UNION SELECT clause to retrieve database metadata or rows from sensitive tables. See the Exploit-DB #45690 entry and the VulnCheck SQL Injection Advisory for the documented request structure and example payloads.

Detection Methods for CVE-2018-25417

Indicators of Compromise

  • HTTP GET requests to /quality.php containing SQL keywords such as UNION, SELECT, information_schema, or comment sequences (--, /*) in the quality parameter.
  • Database error messages or unexpected HTTP 500 responses returned from quality.php.
  • Web server access logs showing repeated requests to quality.php from a single source with varying quality values.
  • Outbound database queries referencing user(), database(), or version() originating from the AiOPMSD application user.

Detection Strategies

  • Deploy WAF or reverse-proxy rules that flag SQL metacharacters and UNION SELECT patterns on requests to quality.php.
  • Enable database query logging and alert on queries containing concatenated metadata functions issued by the web application account.
  • Correlate web access logs with database audit logs to identify request-to-query patterns consistent with injection.

Monitoring Recommendations

  • Monitor the AiOPMSD host for new processes, file writes under the web root, or outbound connections following suspicious quality.php traffic.
  • Track authentication anomalies on accounts whose credentials could be exposed through the application database.
  • Forward web, application, and database logs to a centralized analytics platform and retain them for retrospective hunting.

How to Mitigate CVE-2018-25417

Immediate Actions Required

  • Restrict access to quality.php at the web server or firewall layer until the application can be remediated.
  • Rotate any credentials and secrets that may be stored in the AiOPMSD database, since unauthenticated read access must be assumed.
  • Inspect web and database logs for prior exploitation attempts referencing the quality parameter.

Patch Information

No vendor patch is referenced in the NVD record or linked advisories for AiOPMSD Final 1.0.0. The project is distributed through the AioPMSD Project Homepage and AioPMSD Latest Download; operators should monitor those locations for updated releases and review the VulnCheck SQL Injection Advisory for current remediation guidance.

Workarounds

  • Replace string-concatenated queries in quality.php with prepared statements using bound parameters (for example, PDO with ? placeholders or mysqli_prep are).
  • Enforce strict server-side input validation on the quality parameter, accepting only the expected data type and character set.
  • Run the application database account with least privilege, removing access to information_schema and unrelated tables where feasible.
  • Place the application behind a WAF with signatures for SQL injection until source-level fixes are applied.
bash
# Example Apache rule to block obvious SQL injection patterns on quality.php
<Location "/quality.php">
    SetEnvIfNoCase Query_String "(?i)(union[\s/*]+select|information_schema|--|/\*)" block_sqli
    Require all granted
    Require not env block_sqli
</Location>

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechN/A

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.07%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/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
  • AioPMSD Project Homepage

  • AioPMSD Latest Download

  • Exploit-DB #45690

  • VulnCheck SQL Injection Advisory
  • Latest CVEs
  • CVE-2025-11956: OBS Student Affairs System XSS Flaw

  • CVE-2026-49199: Acer Predator Connect W6x Firmware RCE Flaw

  • CVE-2026-46344: Openquantumsafe Liboqs DOS Vulnerability

  • CVE-2026-44518: Openquantumsafe Liboqs DoS Vulnerability
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