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

CVE-2018-25431: No-Cms 1.0 SQL Injection Vulnerability

CVE-2018-25431 is an SQL injection flaw in No-Cms 1.0 that enables authenticated attackers to manipulate database queries via the order_by parameter. This article covers technical details, exploitation risks, and mitigation.

Published: June 4, 2026

CVE-2018-25431 Overview

CVE-2018-25431 is a SQL injection vulnerability in No-CMS 1.0, an open-source content management system maintained by goFrendiAsgard. The flaw resides in the order_by parameter of the manage_privilege export endpoint. Authenticated attackers can send crafted POST requests to /nocms/main/manage_privilege/index/export with malicious SQL in the order_by[0] parameter. Successful exploitation allows extraction of sensitive database contents. The weakness is classified as [CWE-89] Improper Neutralization of Special Elements used in an SQL Command.

Critical Impact

Authenticated attackers can execute arbitrary SQL queries against the backend database, exposing credentials, privilege tables, and other sensitive records stored by No-CMS.

Affected Products

  • No-CMS version 1.0
  • manage_privilege export functionality (/nocms/main/manage_privilege/index/export)
  • Deployments sourced from the goFrendiAsgard/No-CMS GitHub repository

Discovery Timeline

  • 2026-06-01 - CVE-2018-25431 published to NVD
  • 2026-06-02 - Last updated in NVD database

Technical Details for CVE-2018-25431

Vulnerability Analysis

No-CMS exposes an export action under the manage_privilege controller that accepts user-controlled sorting input through the order_by[0] array parameter. The application concatenates this value directly into the ORDER BY clause of a database query without parameterization or allow-list validation. Because ORDER BY clauses cannot use standard prepared-statement placeholders, developers must apply strict input filtering, which No-CMS does not perform. An authenticated user with access to the privilege management feature can therefore alter the query structure and read arbitrary data from the underlying database.

Root Cause

The root cause is improper neutralization of SQL syntax in the order_by parameter handler inside the privilege export workflow. The controller trusts the array element supplied via POST and forwards it to the data access layer, where it becomes part of a dynamically constructed SQL statement. No type checking, column allow-list, or escape routine sits between the HTTP request and query execution.

Attack Vector

Exploitation requires network access to the No-CMS instance and a valid authenticated session with permission to reach the privilege export endpoint. The attacker submits a POST request to /nocms/main/manage_privilege/index/export containing a payload such as a UNION-based or time-based SQL injection in order_by[0]. The server executes the modified query and returns or processes the resulting data, enabling extraction of database rows. Public proof-of-concept material is available through Exploit-DB #45903 and the VulnCheck SQL Injection Advisory.

Detection Methods for CVE-2018-25431

Indicators of Compromise

  • POST requests to /nocms/main/manage_privilege/index/export containing SQL keywords such as UNION, SELECT, SLEEP, or INFORMATION_SCHEMA inside the order_by[0] parameter.
  • Unusually large response payloads or extended response times from the privilege export endpoint, indicating data extraction or time-based injection.
  • Web server logs showing repeated export requests from a single authenticated session within a short interval.

Detection Strategies

  • Inspect web application logs for order_by values that contain SQL metacharacters such as ', --, /*, or parentheses.
  • Deploy a web application firewall rule that blocks SQL syntax inside array-style query parameters submitted to No-CMS endpoints.
  • Correlate authenticated session activity with database error logs to identify failed injection attempts that produced syntax errors.

Monitoring Recommendations

  • Forward No-CMS web server and database logs to a centralized analytics platform and alert on anomalous query patterns against privilege tables.
  • Monitor outbound database query volume from the No-CMS application server for spikes that diverge from baseline export usage.
  • Track authentication events for the privilege management role and flag accounts that access the export endpoint outside of expected administrative windows.

How to Mitigate CVE-2018-25431

Immediate Actions Required

  • Restrict access to /nocms/main/manage_privilege/ to a minimal set of administrative accounts and trusted source IP ranges.
  • Audit existing No-CMS user accounts and remove or downgrade any privilege that grants access to the export endpoint without operational need.
  • Review database and application logs for prior exploitation of the order_by parameter and rotate credentials if compromise is suspected.

Patch Information

No vendor patch is referenced in the NVD entry for CVE-2018-25431. Operators should monitor the upstream GitHub No-CMS Project for fixes and review the latest source from the GitHub Repository Zip. Until a fix is published, apply the workarounds below.

Workarounds

  • Implement an allow-list filter in the manage_privilege controller that accepts only known column names for the order_by parameter and rejects all other input.
  • Place No-CMS behind a web application firewall configured to block SQL injection payloads in array parameters, with specific signatures for order_by[0].
  • Disable or remove the privilege export feature in production deployments where it is not required for business operations.
bash
# Example WAF rule (ModSecurity) to block SQL syntax in order_by parameter
SecRule ARGS_NAMES "@rx ^order_by\[" \
  "id:1002543,phase:2,deny,status:403,\
   msg:'Possible SQLi in No-CMS order_by parameter (CVE-2018-25431)',\
   chain"
  SecRule ARGS "@rx (?i)(union\s+select|sleep\(|information_schema|--|/\*)" \
    "t:none,t:urlDecodeUni"

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechNocms

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.03%

  • 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
  • GitHub Repository Zip

  • GitHub No-CMS Project

  • Exploit-DB #45903

  • 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