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
    • 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-2026-26186

CVE-2026-26186: Fleet Device Management SQL Injection

CVE-2026-26186 is a SQL injection vulnerability in Fleet device management software that allows authenticated users to inject SQL via order_key parameter. This post covers technical details, affected versions, and mitigation.

Published: February 27, 2026

CVE-2026-26186 Overview

Fleet is an open source device management software platform used for managing and monitoring endpoints across organizations. A SQL injection vulnerability was discovered in versions prior to 4.80.1 that allows authenticated users to inject arbitrary SQL expressions via the order_key query parameter. This vulnerability arises from unsafe use of goqu.I() when constructing the ORDER BY clause, where specially crafted input can escape identifier quoting and be interpreted as executable SQL.

Critical Impact

Authenticated attackers can perform blind SQL injection attacks to disclose database information through conditional expressions affecting result ordering, potentially leading to data exfiltration and denial of service.

Affected Products

  • Fleet Device Management Software versions prior to 4.80.1

Discovery Timeline

  • 2026-02-26 - CVE CVE-2026-26186 published to NVD
  • 2026-02-26 - Last updated in NVD database

Technical Details for CVE-2026-26186

Vulnerability Analysis

This SQL injection vulnerability (CWE-89) exists in Fleet's query construction logic where user-supplied input for the order_key parameter is not properly sanitized before being incorporated into SQL queries. The vulnerability specifically manifests in the ORDER BY clause construction, where the application uses goqu.I() function to build dynamic column identifiers.

The unsafe handling of the order_key parameter allows attackers to escape the identifier quoting mechanism. While the injection point is within an ORDER BY context, which typically limits direct data extraction, skilled attackers can leverage blind SQL injection techniques to infer database contents by crafting expressions that conditionally affect query result ordering.

The vulnerability requires authentication to exploit, which limits the attack surface to users with valid credentials. However, the potential for database information disclosure and denial of service through resource-intensive queries makes this a significant security concern for Fleet deployments.

Root Cause

The root cause of this vulnerability lies in the improper use of the goqu.I() function when constructing dynamic SQL queries. The goqu library's identifier function is designed to safely quote column and table names, but when user input is passed directly to this function without validation, attackers can craft input that escapes the quoting mechanism.

The application failed to implement proper allow-listing or validation of the order_key parameter against a predefined set of acceptable column names, allowing arbitrary input to reach the SQL query construction logic.

Attack Vector

The attack is network-based and requires the attacker to be authenticated to the Fleet application. An attacker can exploit this vulnerability by sending specially crafted HTTP requests to the affected endpoint with malicious SQL expressions embedded in the order_key query parameter.

The exploitation technique involves blind SQL injection where the attacker crafts conditional SQL expressions that affect the ordering of query results. By observing changes in result ordering, the attacker can infer information about the database structure and contents bit by bit.

Additionally, attackers can construct computationally expensive SQL expressions that cause excessive database load, potentially leading to degraded performance or denial of service conditions. The advisory notes that no direct evidence of reliable data modification or stacked query execution was demonstrated, suggesting the vulnerability's impact is primarily limited to information disclosure and availability impacts.

Detection Methods for CVE-2026-26186

Indicators of Compromise

  • Unusual or malformed values in the order_key query parameter in web server access logs
  • HTTP requests containing SQL syntax characters (quotes, semicolons, comments) in sorting parameters
  • Database query logs showing anomalous ORDER BY clauses with unexpected expressions
  • Increased database query execution times without corresponding legitimate traffic increases

Detection Strategies

  • Monitor web application logs for requests to affected endpoints containing suspicious order_key parameter values
  • Implement Web Application Firewall (WAF) rules to detect SQL injection patterns in query string parameters
  • Review database slow query logs for queries with unusual ORDER BY expressions
  • Deploy application-layer intrusion detection to identify SQL injection attempt patterns

Monitoring Recommendations

  • Enable detailed request logging for the affected Fleet endpoints and review for anomalous parameter values
  • Configure alerting for database performance degradation that may indicate SQL injection-based denial of service attempts
  • Establish baseline metrics for normal API usage patterns to identify deviations indicative of exploitation
  • Monitor authentication logs for unusual access patterns from authenticated users targeting the vulnerable endpoint

How to Mitigate CVE-2026-26186

Immediate Actions Required

  • Upgrade Fleet to version 4.80.1 or later immediately to apply the security fix
  • Restrict access to the affected endpoint to trusted roles only until patching is complete
  • Implement strict allow-listing for any user-supplied sort or column parameters at the application or proxy layer
  • Review access logs for evidence of exploitation attempts prior to patching

Patch Information

The vulnerability has been addressed in Fleet version 4.80.1. Organizations running Fleet should upgrade to this version or later to remediate the vulnerability. For detailed information about the fix, refer to the GitHub Security Advisory.

Workarounds

  • If immediate upgrade is not possible, restrict access to the affected endpoint to trusted administrative roles only
  • Implement strict allow-listing of permitted order_key values at the reverse proxy or API gateway layer
  • Deploy WAF rules to block requests containing SQL injection patterns in query parameters
  • Consider temporarily disabling sorting functionality on affected endpoints until patching can be completed
bash
# Example: Nginx location block to restrict order_key values
# Add to Fleet reverse proxy configuration
location /api/v1/fleet/ {
    # Allow only alphanumeric characters and underscores in order_key
    if ($arg_order_key ~* "[^a-zA-Z0-9_]") {
        return 400;
    }
    proxy_pass http://fleet_backend;
}

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechFleet

  • SeverityMEDIUM

  • CVSS Score5.1

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:N/VA:H/SC:N/SI:N/SA:N/E:U/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
  • AvailabilityHigh
  • CWE References
  • CWE-89
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-34385: Fleet Device Management SQLi Vulnerability

  • CVE-2026-34387: Fleet Device Management RCE Vulnerability

  • CVE-2026-27465: Fleet Information Disclosure Vulnerability

  • CVE-2026-25963: Fleet Authorization Bypass Vulnerability
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