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-2021-47980

CVE-2021-47980: Fuel CMS 1.4.13 SQL Injection Vulnerability

CVE-2021-47980 is a blind SQL injection vulnerability in Fuel CMS 1.4.13 that enables authenticated attackers to extract database information via the Activity Log interface. This article covers technical details, impact, and mitigation.

Published: May 21, 2026

CVE-2021-47980 Overview

CVE-2021-47980 is a blind SQL injection vulnerability in Fuel CMS 1.4.13. The flaw exists in the Activity Log interface, where the col parameter passed to the logs endpoint is not properly sanitized before inclusion in database queries. Authenticated attackers can inject SQL payloads through this parameter to manipulate backend queries. Because the application does not return query results directly, attackers extract data using time-based blind techniques that infer values from response delays. The vulnerability is classified under [CWE-89] (Improper Neutralization of Special Elements used in an SQL Command).

Critical Impact

Authenticated attackers can extract arbitrary database contents from Fuel CMS 1.4.13, including administrative credentials, session tokens, and stored content, by issuing time-based blind SQL injection payloads through the col parameter.

Affected Products

  • Fuel CMS version 1.4.13
  • Activity Log component (logs endpoint)
  • Deployments using the vulnerable col query parameter handler

Discovery Timeline

  • 2026-05-16 - CVE-2021-47980 published to NVD
  • 2026-05-18 - Last updated in NVD database

Technical Details for CVE-2021-47980

Vulnerability Analysis

Fuel CMS 1.4.13 is an open-source content management system built on the CodeIgniter framework. The Activity Log interface accepts a col parameter that specifies which database column should be referenced when ordering or filtering log entries. The application concatenates this user-supplied value into a SQL query without parameterization or allow-list validation. As a result, an authenticated attacker with access to the administrative interface can append arbitrary SQL syntax to the query.

Because the endpoint does not echo query output in HTTP responses, exploitation relies on blind techniques. Attackers use conditional time delays such as SLEEP() or BENCHMARK() to infer boolean conditions byte by byte. Over repeated requests, this allows full extraction of database tables, including the fuel_users table containing administrator credentials.

Root Cause

The root cause is missing input validation and the absence of prepared statements when constructing the SQL query that uses the col parameter. Column identifiers cannot be safely parameterized in most database drivers, so secure implementations require strict allow-listing against a known set of column names. Fuel CMS 1.4.13 omits this check, treating attacker-supplied strings as trusted SQL fragments.

Attack Vector

Exploitation requires an authenticated session with access to the Activity Log feature. The attacker sends an HTTP request to the logs endpoint, supplying a crafted col parameter containing SQL injection payloads. Time-based payloads conditionally trigger SLEEP calls, and the attacker measures response latency to deduce data values. Public proof-of-concept material is documented in Exploit-DB #50523 and the VulnCheck Advisory on FUEL-CMS.

Detection Methods for CVE-2021-47980

Indicators of Compromise

  • HTTP requests to the Fuel CMS logs endpoint containing SQL keywords such as SLEEP, BENCHMARK, UNION, or SELECT in the col parameter.
  • Unusually long response times from the Activity Log interface, particularly in repeated bursts that suggest character-by-character data extraction.
  • Authenticated administrative sessions originating from atypical IP addresses or user agents immediately preceding suspicious log queries.

Detection Strategies

  • Inspect web server and application logs for requests to the logs endpoint where the col parameter deviates from expected column names.
  • Deploy web application firewall (WAF) rules that match SQL injection signatures in query string parameters targeting Fuel CMS routes.
  • Correlate authentication events with subsequent administrative activity to identify compromised accounts being used for data extraction.

Monitoring Recommendations

  • Monitor database query logs for unusual SLEEP or BENCHMARK invocations originating from the Fuel CMS application user.
  • Alert on sustained sequences of similar requests to the same administrative endpoint with incrementing payload variations.
  • Track outbound network traffic from web servers hosting Fuel CMS to detect data exfiltration following successful injection.

How to Mitigate CVE-2021-47980

Immediate Actions Required

  • Restrict access to the Fuel CMS administrative interface using network controls, VPN, or IP allow-listing to reduce the authenticated attack surface.
  • Rotate all administrative credentials and session secrets for Fuel CMS deployments that may have been exposed.
  • Audit the fuel_users table and application logs for signs of unauthorized data access or account creation.

Patch Information

No official vendor patch is referenced in the published advisory data. Administrators should monitor the FUEL CMS Official Site and the GitHub FUEL-CMS repository for updated releases. Where no patch is available, organizations should consider migrating off Fuel CMS 1.4.13 or applying source-level fixes that validate the col parameter against an allow-list of known column names.

Workarounds

  • Apply a WAF rule that blocks requests to the Fuel CMS logs endpoint containing SQL metacharacters or reserved keywords in the col parameter.
  • Modify the application source to validate the col value against a hardcoded list of permitted column identifiers before query construction.
  • Disable the Activity Log feature for non-essential administrative roles, limiting access to a minimal set of trusted accounts.
bash
# Example WAF rule fragment (ModSecurity) to block SQLi in the col parameter
SecRule ARGS:col "@rx (?i)(select|union|sleep|benchmark|--|;|/\*)" \
  "id:1004780,phase:2,deny,status:403,msg:'Fuel CMS col parameter SQLi attempt'"

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechFuel Cms

  • 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 FUEL-CMS Archive

  • Exploit-DB #50523

  • FUEL CMS Official Site

  • VulnCheck Advisory on FUEL-CMS
  • Related CVEs
  • CVE-2020-17463: Fuel CMS SQL Injection Vulnerability

  • CVE-2026-38948: FUEL CMS XSS Vulnerability via SVG Upload

  • CVE-2026-30461: Fuel CMS Authenticated RCE 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