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

CVE-2026-33997: Moby Privilege Escalation Vulnerability

CVE-2026-33997 is a privilege escalation flaw in Moby that allows plugins to bypass privilege validation during installation. This post covers the technical details, affected versions, impact, and mitigation.

Published: April 2, 2026

CVE-2026-33997 Overview

A security vulnerability has been identified in Moby, the open source container framework that powers Docker. This Authorization Bypass vulnerability allows the privilege validation mechanism to be bypassed during docker plugin install operations. Due to an error in the daemon's privilege comparison logic, the daemon may incorrectly accept a privilege set that differs from the one approved by the user, potentially allowing malicious plugins to gain unauthorized capabilities.

Critical Impact

Attackers could install Docker plugins with elevated privileges beyond what users approve, potentially leading to container escape scenarios, unauthorized host access, or compromise of container orchestration environments.

Affected Products

  • Moby (Docker) versions prior to 29.3.1
  • Docker Engine installations using the plugin system
  • Container environments with plugin installation capabilities enabled

Discovery Timeline

  • 2026-03-31 - CVE-2026-33997 published to NVD
  • 2026-04-01 - Last updated in NVD database

Technical Details for CVE-2026-33997

Vulnerability Analysis

This vulnerability is classified as CWE-193 (Off-by-one Error), which occurs in the daemon's privilege comparison logic during Docker plugin installation. The flaw manifests in how the Docker daemon validates plugin privileges against user-approved permissions.

When a user installs a Docker plugin, they are typically presented with the plugin's requested privileges and must approve them. However, due to the comparison logic error, the daemon fails to properly verify that the actual privileges match the approved set. This creates a dangerous gap where a plugin could request and receive privileges that were never explicitly authorized by the user.

A particularly concerning aspect of this vulnerability is that plugins requesting exactly one privilege bypass privilege comparison entirely, as no validation is performed in this edge case. This makes single-privilege plugins especially dangerous attack vectors.

Root Cause

The root cause lies in an off-by-one error (CWE-193) within the privilege comparison function of the Docker daemon. This type of error typically occurs when loop boundaries or array indices are incorrectly calculated, causing one fewer or one more iteration than intended. In this case, the comparison logic appears to skip or incorrectly process privilege entries, allowing discrepancies between approved and actual privileges to go undetected.

Attack Vector

The vulnerability requires network access and user interaction, as an attacker would need to:

  1. Create a malicious Docker plugin that requests elevated privileges
  2. Convince a user to install the plugin (social engineering component)
  3. Exploit the comparison logic flaw to gain privileges beyond what the user approved

The attack could be facilitated through compromised plugin registries, typosquatting attacks on popular plugin names, or supply chain compromises where legitimate plugins are modified to include malicious privilege requests.

Detection Methods for CVE-2026-33997

Indicators of Compromise

  • Unexpected Docker plugins installed with elevated privileges not matching user approval records
  • Plugin installation audit logs showing privilege discrepancies
  • Containers or plugins with capabilities that exceed documented requirements
  • Anomalous system calls or host resource access from plugin containers

Detection Strategies

  • Review Docker daemon logs for plugin installation events and compare requested vs. granted privileges
  • Implement runtime security monitoring to detect plugins accessing resources beyond their stated scope
  • Audit installed plugins using docker plugin ls and verify their privilege configurations
  • Deploy container security platforms that monitor for privilege escalation attempts

Monitoring Recommendations

  • Enable Docker daemon debug logging to capture detailed plugin installation events
  • Configure alerting for new plugin installations in production environments
  • Implement continuous monitoring of container capabilities and seccomp profiles
  • Regularly audit plugin privileges against a known-good baseline

How to Mitigate CVE-2026-33997

Immediate Actions Required

  • Upgrade Moby/Docker Engine to version 29.3.1 or later immediately
  • Audit all currently installed plugins and their granted privileges
  • Temporarily disable plugin installation capabilities in production environments if upgrading is delayed
  • Review recent plugin installation logs for potential exploitation

Patch Information

The Moby project has released version 29.3.1 which addresses this vulnerability. The fix corrects the privilege comparison logic to ensure proper validation of all plugin privilege requests, including the edge case where plugins request exactly one privilege.

For detailed release information, see the GitHub Release Notes. Additional technical details are available in the GitHub Security Advisory.

Workarounds

  • Restrict plugin installation permissions to trusted administrators only
  • Implement policy enforcement to block plugin installations until patching is complete
  • Use Docker's authorization plugins to add additional privilege validation layers
  • Deploy network segmentation to limit exposure of Docker daemon endpoints
bash
# Configuration example - Restrict Docker plugin capabilities
# Add to /etc/docker/daemon.json to disable live restore and limit plugin scope
{
  "authorization-plugins": ["your-authz-plugin"],
  "no-new-privileges": true
}

# Verify installed plugins and their privileges
docker plugin ls --format '{{.Name}}: {{.Enabled}}'

# Disable suspicious plugins pending investigation
docker plugin disable <plugin-name>

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechMoby

  • SeverityMEDIUM

  • CVSS Score6.8

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityHigh
  • AvailabilityNone
  • CWE References
  • CWE-193
  • Technical References
  • GitHub Release Notes

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2022-24769: Moby Privilege Escalation Vulnerability

  • CVE-2021-41089: Moby Docker Engine Privilege Escalation

  • CVE-2026-34040: Moby Authorization Bypass Vulnerability

  • CVE-2024-29018: Moby Information Disclosure 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