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

CVE-2026-34385: Fleet Device Management SQLi Vulnerability

CVE-2026-34385 is a second-order SQL injection flaw in Fleet's Apple MDM profile delivery that enables database exfiltration of credentials and secrets. This article covers technical details, affected versions, and patches.

Published: April 2, 2026

CVE-2026-34385 Overview

A second-order SQL injection vulnerability has been identified in Fleet, the open source device management software. The flaw exists in Fleet's Apple MDM profile delivery pipeline and could allow an attacker with a valid MDM enrollment certificate to exfiltrate or modify the contents of the Fleet database. This includes sensitive data such as user credentials, API tokens, and device enrollment secrets.

Critical Impact

Attackers with valid MDM enrollment certificates can exploit this SQL injection vulnerability to access and modify critical database contents including credentials and API tokens.

Affected Products

  • Fleet versions prior to 4.81.0
  • Fleet Apple MDM profile delivery pipeline component

Discovery Timeline

  • 2026-03-27 - CVE CVE-2026-34385 published to NVD
  • 2026-03-30 - Last updated in NVD database

Technical Details for CVE-2026-34385

Vulnerability Analysis

This vulnerability is classified as a second-order SQL injection (CWE-89), which differs from traditional SQL injection in that the malicious payload is not immediately executed. Instead, the attack payload is first stored in the database and later executed when the data is retrieved and used in a subsequent SQL query without proper sanitization.

In the context of Fleet's Apple MDM profile delivery pipeline, an attacker who possesses a valid MDM enrollment certificate can inject malicious SQL statements that are stored and later processed by the system. This allows the attacker to bypass traditional input validation that might exist at the initial data entry point.

The vulnerability enables both data exfiltration and modification capabilities, meaning attackers can read sensitive information from the database as well as alter existing records. The compromised data types include user credentials, API tokens, and device enrollment secrets—all critical components for maintaining the security posture of managed devices.

Root Cause

The root cause of this vulnerability lies in improper input sanitization within the MDM profile delivery pipeline. When processing data associated with enrolled devices, the application fails to properly parameterize SQL queries, allowing previously stored malicious input to be interpreted as SQL commands during subsequent database operations.

Attack Vector

The attack requires network access and a valid MDM enrollment certificate, which serves as the prerequisite authentication. An attacker would:

  1. Obtain or compromise a valid MDM enrollment certificate
  2. Submit specially crafted data through the enrollment process
  3. Wait for the malicious payload to be processed by the profile delivery pipeline
  4. Extract or modify database contents through the injected SQL statements

The second-order nature of this attack makes it particularly insidious as the malicious input may pass initial validation checks, only to be weaponized when retrieved and used in subsequent queries.

Detection Methods for CVE-2026-34385

Indicators of Compromise

  • Unusual SQL error messages in Fleet server logs related to MDM profile operations
  • Unexpected database query patterns originating from the MDM profile delivery component
  • Evidence of bulk data extraction or unusual SELECT statements in database audit logs
  • Modified user credentials, API tokens, or enrollment secrets without legitimate administrative action

Detection Strategies

  • Implement database activity monitoring to detect anomalous SQL query patterns
  • Enable detailed logging for the MDM profile delivery pipeline and review for suspicious activity
  • Monitor for authentication failures that may indicate use of exfiltrated credentials
  • Deploy web application firewalls (WAF) with SQL injection detection rules targeting MDM endpoints

Monitoring Recommendations

  • Audit database access logs for unusual queries against user credential and API token tables
  • Set up alerts for any direct database modifications outside of normal application operations
  • Monitor Fleet server logs for errors related to SQL syntax or database operations
  • Track MDM enrollment certificate usage patterns to identify potential abuse

How to Mitigate CVE-2026-34385

Immediate Actions Required

  • Upgrade Fleet to version 4.81.0 or later immediately
  • Rotate all API tokens and device enrollment secrets as a precautionary measure
  • Force password resets for all Fleet user accounts
  • Audit database contents for signs of unauthorized access or modification
  • Review MDM enrollment certificate inventory and revoke any suspicious certificates

Patch Information

Fleet has addressed this vulnerability in version 4.81.0. Organizations should upgrade to this version or later to remediate the SQL injection flaw. The security advisory is available on GitHub Security Advisory GHSA-v895-833r-8c45.

Workarounds

  • Restrict network access to Fleet MDM endpoints to trusted networks only
  • Implement additional network segmentation around Fleet infrastructure
  • Deploy database activity monitoring to detect and alert on suspicious queries
  • Consider temporarily disabling MDM profile delivery features until patching is complete
  • Implement strict MDM certificate management with regular audits and short validity periods
bash
# Upgrade Fleet to patched version
# Using Fleet official upgrade process
fleet upgrade --version 4.81.0

# Rotate API tokens after upgrade
fleet api-token rotate --all

# Force credential reset for all users
fleet user reset-password --all-users

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 Score6.2

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:N/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
  • AvailabilityNone
  • CWE References
  • CWE-89
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-26186: Fleet Device Management SQL Injection

  • 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