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-2026-26061

CVE-2026-26061: Fleetdm Fleet DoS Vulnerability

CVE-2026-26061 is a denial-of-service flaw in Fleetdm Fleet that allows unauthenticated attackers to cause excessive memory allocation through large HTTP payloads. This article covers technical details, affected versions, and mitigation.

Published: April 3, 2026

CVE-2026-26061 Overview

Fleet is an open source device management software solution. A critical vulnerability has been identified in versions prior to 4.81.0 where multiple unauthenticated HTTP endpoints read request bodies without enforcing a size limit. This resource allocation flaw (CWE-770: Allocation of Resources Without Limits or Throttling) allows an unauthenticated attacker to exploit this behavior by sending large or repeated HTTP payloads, causing excessive memory allocation and resulting in a denial-of-service (DoS) condition.

Critical Impact

Unauthenticated attackers can remotely exhaust server memory resources, causing service unavailability for the Fleet device management platform without requiring any credentials or prior access.

Affected Products

  • FleetDM Fleet versions prior to 4.81.0
  • All deployments exposing unauthenticated HTTP endpoints to untrusted networks
  • Self-hosted Fleet installations without upstream request size limits

Discovery Timeline

  • 2026-03-27 - CVE-2026-26061 published to NVD
  • 2026-03-31 - Last updated in NVD database

Technical Details for CVE-2026-26061

Vulnerability Analysis

This vulnerability stems from improper resource allocation in Fleet's HTTP request handling. The affected endpoints fail to implement request body size limits, allowing attackers to submit arbitrarily large payloads that the server attempts to fully read into memory. Since these endpoints do not require authentication, any network-accessible attacker can exploit this weakness.

The impact is primarily on service availability. When an attacker sends sufficiently large or numerous requests, the Fleet server allocates memory without bounds until system resources are exhausted. This can crash the service or render it unresponsive to legitimate device management operations.

Root Cause

The root cause is classified under CWE-770 (Allocation of Resources Without Limits or Throttling). The vulnerable code paths read incoming HTTP request bodies into memory without validating or limiting the content length. This architectural oversight allows unbounded memory consumption when processing malicious requests.

Properly secured HTTP endpoints should enforce maximum request body sizes at both the application and infrastructure levels to prevent such resource exhaustion attacks.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by:

  1. Identifying publicly accessible Fleet endpoints that accept HTTP request bodies
  2. Crafting HTTP requests with extremely large payloads (potentially gigabytes)
  3. Sending multiple concurrent requests to amplify memory consumption
  4. Sustaining the attack until the server runs out of memory or becomes unresponsive

The attack can be executed remotely against any Fleet installation accessible over the network. Since no authentication is required for the vulnerable endpoints, the barrier to exploitation is extremely low.

Detection Methods for CVE-2026-26061

Indicators of Compromise

  • Unusual spike in memory consumption on Fleet server instances
  • Large HTTP request bodies (exceeding normal operational thresholds) in web server access logs
  • Multiple requests from single IP addresses targeting unauthenticated endpoints
  • Service restarts or crashes correlating with memory exhaustion events

Detection Strategies

  • Monitor Fleet server memory utilization for anomalous spikes that could indicate exploitation attempts
  • Configure web application firewalls (WAF) to log and alert on requests exceeding normal body size thresholds
  • Implement rate limiting on unauthenticated endpoints and monitor for trigger events
  • Enable verbose logging on reverse proxies to capture request sizes and client behavior patterns

Monitoring Recommendations

  • Set up automated alerts for Fleet service availability and memory consumption metrics
  • Review HTTP access logs for patterns of large POST requests to Fleet endpoints
  • Monitor for repeated connection attempts from single source IPs to unauthenticated API paths
  • Establish baseline metrics for normal request sizes to quickly identify anomalous traffic

How to Mitigate CVE-2026-26061

Immediate Actions Required

  • Upgrade Fleet to version 4.81.0 or later immediately to apply the security patch
  • If immediate upgrade is not possible, implement request body size limits at the reverse proxy or load balancer level
  • Review network exposure and restrict access to Fleet endpoints from untrusted networks where feasible
  • Enable rate limiting on all HTTP endpoints as an additional defense layer

Patch Information

FleetDM has released version 4.81.0 which patches this vulnerability. Organizations running affected versions should upgrade immediately. For detailed patch information and upgrade instructions, refer to the GitHub Security Advisory GHSA-99hj-44vg-hfcp.

Workarounds

  • Configure upstream reverse proxies (nginx, Apache, HAProxy) to enforce maximum request body size limits
  • Implement network-level access controls to restrict access to Fleet endpoints from trusted sources only
  • Deploy a Web Application Firewall (WAF) with request size throttling capabilities
  • Use cloud provider load balancers with built-in request size limits as a protective layer
bash
# Example nginx configuration to limit request body size
# Add to server or location block for Fleet endpoints
client_max_body_size 10m;

# Example rate limiting configuration
limit_req_zone $binary_remote_addr zone=fleet_limit:10m rate=10r/s;
location /api/ {
    limit_req zone=fleet_limit burst=20 nodelay;
    client_max_body_size 10m;
    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
  • TypeDOS

  • Vendor/TechFleetdm

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/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
  • AvailabilityHigh
  • CWE References
  • CWE-770
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-34388: Fleetdm Fleet DoS Vulnerability

  • CVE-2026-34391: Fleetdm Fleet Information Disclosure Bug

  • CVE-2026-34389: Fleetdm Fleet Auth Bypass Vulnerability

  • CVE-2026-29180: Fleetdm Fleet Privilege Escalation Flaw
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