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
    • 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-2013-20005

CVE-2013-20005: Qool CMS 2.0 RC2 CSRF Vulnerability

CVE-2013-20005 is a cross-site request forgery flaw in Qool CMS 2.0 RC2 that enables attackers to create unauthorized admin accounts. This article covers the technical details, affected versions, and mitigation strategies.

Published: March 20, 2026

CVE-2013-20005 Overview

Qool CMS 2.0 RC2 contains a cross-site request forgery (CSRF) vulnerability that allows attackers to perform administrative actions by tricking logged-in users into visiting malicious web pages. Attackers can forge POST requests to the /admin/adduser endpoint with parameters like username, password, email, and level to create root-level user accounts without user consent.

Critical Impact

Successful exploitation enables attackers to create administrative user accounts on the Qool CMS system, leading to complete application takeover without any direct authentication.

Affected Products

  • Qool CMS 2.0 RC2

Discovery Timeline

  • 2026-03-16 - CVE CVE-2013-20005 published to NVD
  • 2026-03-16 - Last updated in NVD database

Technical Details for CVE-2013-20005

Vulnerability Analysis

This Cross-Site Request Forgery (CSRF) vulnerability exists in Qool CMS 2.0 RC2 due to the absence of proper anti-CSRF token validation on the administrative user creation endpoint. When an authenticated administrator visits a malicious webpage containing a crafted form or JavaScript, the attacker can silently submit a request to /admin/adduser that creates a new administrative account.

The vulnerability is classified under CWE-79, though the attack mechanism is a classic CSRF pattern where the application fails to verify that form submissions originate from legitimate user interactions within the application itself. The administrative interface does not implement CSRF protection mechanisms such as synchronizer tokens, double-submit cookies, or origin header validation.

Root Cause

The root cause of this vulnerability is the lack of CSRF token validation in the Qool CMS administrative interface. The /admin/adduser endpoint processes POST requests and creates user accounts based solely on session authentication, without verifying that the request originated from a legitimate form submission within the application.

Attack Vector

The attack vector is network-based and requires no authentication from the attacker's perspective. An attacker crafts a malicious HTML page containing a hidden form or JavaScript that automatically submits a POST request to the victim's Qool CMS installation. The request targets the /admin/adduser endpoint with attacker-controlled parameters including username, password, email, and level (set to root/admin level). When an authenticated administrator visits the malicious page, their browser automatically includes their session cookies with the forged request, causing the CMS to create the attacker's account with full administrative privileges.

The vulnerability is documented in technical advisories from Zero Science Labs and Exploit-DB #24627, which provide detailed technical analysis of the attack mechanism.

Detection Methods for CVE-2013-20005

Indicators of Compromise

  • Unexpected administrative user accounts appearing in the Qool CMS user database
  • Web server logs showing POST requests to /admin/adduser with unusual referrer headers from external domains
  • User account creation events occurring without corresponding legitimate administrative sessions

Detection Strategies

  • Monitor web application logs for POST requests to /admin/adduser with external or missing Referer headers
  • Implement alerting on new administrative account creation events
  • Review access logs for patterns indicating CSRF attacks, such as rapid user creation from different source IPs

Monitoring Recommendations

  • Enable detailed logging of all administrative actions within Qool CMS
  • Configure web application firewall (WAF) rules to detect and block suspicious cross-origin form submissions
  • Implement regular audits of administrative user accounts to identify unauthorized additions

How to Mitigate CVE-2013-20005

Immediate Actions Required

  • Discontinue use of Qool CMS 2.0 RC2 in production environments if possible
  • Implement web application firewall rules to validate Referer and Origin headers for administrative endpoints
  • Restrict administrative interface access to trusted IP addresses or networks
  • Regularly audit administrative user accounts for unauthorized entries

Patch Information

No official vendor patch information is available for this vulnerability. The VulnCheck Advisory provides additional context on the vulnerability status. Organizations using Qool CMS should consider migrating to an actively maintained CMS platform.

Workarounds

  • Add custom CSRF token validation to the /admin/adduser endpoint through application modification or WAF rules
  • Implement strict Content Security Policy (CSP) headers to prevent unauthorized form submissions
  • Use browser-level protections by requiring administrators to use SameSite cookie attributes
  • Restrict administrative panel access to VPN-only or internal network segments
bash
# Example: Apache mod_security rule to validate Referer header for admin endpoints
SecRule REQUEST_URI "@contains /admin/adduser" \
    "id:100001,phase:2,deny,status:403,\
    chain"
SecRule REQUEST_HEADERS:Referer "!@contains yourdomain.com" \
    "t:none"

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

  • Vulnerability Details
  • TypeCSRF

  • Vendor/TechQool Cms

  • SeverityMEDIUM

  • CVSS Score6.9

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:L/VA:N/SC:L/SI:L/SA:L/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-79
  • Technical References
  • Zero Science Vulnerability Report

  • Exploit-DB #24627

  • VulnCheck Advisory on Qool CMS
  • Related CVEs
  • CVE-2013-20006: Qool CMS Persistent XSS 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