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

CVE-2018-25413: AiOPMSD Final SQL Injection Vulnerability

CVE-2018-25413 is an SQL injection flaw in AiOPMSD Final 1.0.0 that lets unauthenticated attackers execute arbitrary SQL queries via the 'q' parameter. This article covers technical details, impact, and mitigation.

Published: June 4, 2026

CVE-2018-25413 Overview

CVE-2018-25413 is an SQL injection vulnerability in AiOPMSD Final 1.0.0, an open-source PHP-based music streaming application distributed via SourceForge. The flaw resides in search.php, which fails to sanitize the q GET parameter before incorporating it into a database query. Unauthenticated remote attackers can inject arbitrary SQL statements to read sensitive data, including database names, version strings, and stored user credentials. The weakness is classified under CWE-89: Improper Neutralization of Special Elements used in an SQL Command.

Critical Impact

Unauthenticated attackers can extract database contents — including usernames and version metadata — by sending a single crafted HTTP GET request to search.php.

Affected Products

  • AiOPMSD Final 1.0.0
  • AioPMSD project on SourceForge
  • Deployments using the unpatched search.php endpoint

Discovery Timeline

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

Technical Details for CVE-2018-25413

Vulnerability Analysis

The vulnerability stems from improper neutralization of user-supplied input in the search functionality of AiOPMSD Final 1.0.0. The search.php script accepts a q parameter via HTTP GET and concatenates its value directly into an SQL query. Because no parameterized statements or input validation are applied, attackers control the structure of the executed query.

An attacker can supply UNION-based payloads to exfiltrate data from arbitrary tables. Common payloads target MySQL information functions such as user(), database(), and version(), then enumerate information_schema.tables to map the schema. Stored user records can subsequently be extracted, exposing credentials reused across other services.

No authentication is required, and the attack succeeds over the network with low complexity. Public exploitation details are documented in Exploit-DB entry 45690 and the VulnCheck advisory.

Root Cause

The root cause is direct interpolation of the q query-string parameter into a dynamically constructed SQL statement. The application does not use prepared statements, does not enforce a strict type or character allowlist, and does not apply context-aware escaping. This pattern matches [CWE-89] precisely.

Attack Vector

Exploitation requires only a network-reachable instance of AiOPMSD and the ability to issue HTTP GET requests. An attacker sends a request such as GET /search.php?q=<payload> where <payload> contains SQL syntax that terminates the original query and appends attacker-controlled clauses. Refer to the public Exploit-DB proof of concept for the full request structure and example UNION SELECT payloads.

Detection Methods for CVE-2018-25413

Indicators of Compromise

  • HTTP GET requests to /search.php containing SQL keywords such as UNION, SELECT, information_schema, or encoded variants in the q parameter.
  • Web server access logs showing q= values with single quotes, comment markers (--, #), or hex-encoded payloads.
  • Database error messages referencing syntax errors originating from search.php request handling.
  • Outbound responses with unusually large payloads from search.php indicating data exfiltration.

Detection Strategies

  • Deploy web application firewall (WAF) signatures that flag SQL metacharacters in the q parameter against /search.php.
  • Correlate web access logs with database query logs to identify abnormal query patterns sourced from search requests.
  • Apply [CWE-89] detection rules in static analysis tooling against the AiOPMSD codebase to confirm unsafe string concatenation in search.php.

Monitoring Recommendations

  • Enable verbose access logging on the web server and retain logs long enough to support retrospective hunts.
  • Alert on repeated 500-series responses from search.php, which often accompany SQL injection probing.
  • Monitor for sudden spikes in row counts returned by the search endpoint relative to historical baselines.

How to Mitigate CVE-2018-25413

Immediate Actions Required

  • Remove or restrict public access to AiOPMSD Final 1.0.0 instances until a patched build is available.
  • Place the application behind a WAF configured to block SQL injection patterns targeting the q parameter.
  • Audit database accounts used by AiOPMSD and rotate any credentials that may have been exposed through prior exploitation attempts.

Patch Information

No official vendor patch is referenced in the NVD entry for CVE-2018-25413. The AiOPMSD project distribution remains available on SourceForge, but downstream users should review the codebase and apply parameterized query fixes to search.php before redeploying. Consult the VulnCheck advisory for additional remediation context.

Workarounds

  • Replace dynamic SQL construction in search.php with prepared statements using PDO or mysqli parameter binding.
  • Enforce strict input validation on the q parameter, allowing only expected character classes and bounded length.
  • Run the database account used by AiOPMSD with least-privilege permissions to limit the blast radius of any successful injection.
  • Disable the search functionality entirely if it is not required for operational use.
bash
# Example WAF rule (ModSecurity) to block SQLi patterns in the q parameter
SecRule ARGS:q "@rx (?i)(union(\s|/\*.*\*/)+select|information_schema|--|;|/\*)" \
    "id:1002518,phase:2,deny,status:403,msg:'Possible SQLi in q parameter (CVE-2018-25413)'"

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 Page

  • AioPMSD Latest Download

  • Exploit-DB #45690

  • VulnCheck SQL Injection Advisory
  • Latest CVEs
  • CVE-2026-49199: Acer Predator Connect W6x Firmware RCE Flaw

  • CVE-2026-46344: Openquantumsafe Liboqs DOS Vulnerability

  • CVE-2026-44518: Openquantumsafe Liboqs DoS Vulnerability

  • CVE-2026-42951: MacGregor VDR Information Disclosure 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