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

CVE-2026-33711: Incus Privilege Escalation Vulnerability

CVE-2026-33711 is a privilege escalation vulnerability in Incus that exploits predictable temporary file paths to manipulate arbitrary files. This article covers the technical details, affected versions, and mitigation strategies.

Published: March 27, 2026

CVE-2026-33711 Overview

CVE-2026-33711 is a symlink attack vulnerability in Incus, a system container and virtual machine manager. The flaw exists in the VM screenshot API, which uses predictable file paths under /tmp for temporary screenshot files. An attacker with local access can exploit this by creating symlinks at these predictable paths before Incus generates screenshots, potentially leading to denial of service or local privilege escalation on systems where the Linux kernel's protected_symlinks security feature is disabled.

Critical Impact

Local attackers can trick Incus into truncating and altering the mode and permissions of arbitrary files on the filesystem, potentially leading to denial of service or local privilege escalation on vulnerable systems.

Affected Products

  • Incus versions prior to 6.23.0

Discovery Timeline

  • 2026-03-26 - CVE CVE-2026-33711 published to NVD
  • 2026-03-26 - Last updated in NVD database

Technical Details for CVE-2026-33711

Vulnerability Analysis

This vulnerability is classified under CWE-61 (UNIX Symbolic Link Following), a race condition vulnerability type commonly known as Time-of-Check Time-of-Use (TOCTOU). The flaw resides in how Incus handles temporary files when retrieving VM screenshots through its API.

When a user requests a VM screenshot, Incus creates a temporary file in /tmp for QEMU to write the screenshot data. The API then reads this file, sends the content to the user, and deletes the temporary file. The issue arises because versions prior to 6.23.0 use predictable file paths for these temporary files, making them susceptible to symlink attacks.

The attack requires local access to the system. An attacker can pre-create symbolic links at the predictable temporary file locations, pointing to sensitive system files. When Incus subsequently creates the screenshot file at that location, file operations intended for the temporary screenshot are instead redirected to the symlink target.

Root Cause

The root cause is the use of predictable temporary file paths in the /tmp directory without proper validation of the file type before performing write operations. The vulnerability is a classic TOCTOU race condition where an attacker can interpose a symlink between the time Incus checks for the file and the time it performs operations on it.

On most Linux systems, the kernel's protected_symlinks feature mitigates this attack by preventing processes from following symlinks in world-writable directories unless the symlink owner matches the follower. However, on systems where this protection is purposefully disabled, the full exploit chain becomes viable.

Attack Vector

The attack vector is local, requiring the attacker to have existing access to the target system. The attacker must:

  1. Identify the predictable temporary file paths used by Incus for VM screenshots
  2. Create symbolic links at these paths pointing to target files they wish to manipulate
  3. Trigger or wait for a legitimate user to request a VM screenshot
  4. When Incus performs file operations on the temporary path, the symlink redirects these operations to the attacker-chosen target file

The vulnerability is exploited through symbolic link manipulation in the /tmp directory. When Incus attempts to create and write to its predictable temporary file path, the pre-existing symlink causes the write operations to be redirected to whatever file the symlink points to. This can result in file truncation, permission changes, or mode alterations on arbitrary files. For detailed technical information, see the GitHub Security Advisory.

Detection Methods for CVE-2026-33711

Indicators of Compromise

  • Suspicious symlink creation in /tmp directory pointing to sensitive system files
  • Unexpected file permission or mode changes on critical system files
  • Anomalous file truncation events on configuration or system files
  • Evidence of local users creating symlinks in /tmp immediately before VM screenshot requests

Detection Strategies

  • Monitor file system events in /tmp for symlink creation by non-root users
  • Implement auditd rules to track symlink syscalls (symlinkat, symlink) in /tmp
  • Alert on unexpected changes to file permissions or modes on sensitive system files
  • Track Incus API calls for VM screenshots and correlate with /tmp file system activity

Monitoring Recommendations

  • Enable Linux audit framework with rules targeting /tmp directory symlink operations
  • Deploy file integrity monitoring (FIM) on critical system files to detect unauthorized modifications
  • Monitor Incus logs for screenshot API requests and correlate with system-level file operations
  • Review systems for protected_symlinks kernel setting and ensure it remains enabled

How to Mitigate CVE-2026-33711

Immediate Actions Required

  • Upgrade Incus to version 6.23.0 or later immediately
  • Verify that the Linux kernel's protected_symlinks feature is enabled on all systems
  • Audit /tmp directory for suspicious symlinks that may indicate attempted exploitation
  • Restrict local access to systems running vulnerable Incus versions

Patch Information

The vulnerability is fixed in Incus version 6.23.0. The patch addresses the predictable temporary file path issue by implementing secure temporary file handling. Administrators should upgrade to version 6.23.0 or later to remediate this vulnerability. For additional details, refer to the GitHub Security Advisory.

Workarounds

  • Ensure the Linux kernel's protected_symlinks feature is enabled by verifying /proc/sys/fs/protected_symlinks is set to 1
  • Restrict local shell access to systems running Incus to trusted users only
  • Consider mounting /tmp with the nosymfollow option if supported by your system
  • Monitor and audit all local user activity on systems running vulnerable versions
bash
# Verify protected_symlinks is enabled
cat /proc/sys/fs/protected_symlinks
# Should return: 1

# Enable protected_symlinks if disabled
echo 1 > /proc/sys/fs/protected_symlinks

# Make the setting persistent across reboots
echo "fs.protected_symlinks = 1" >> /etc/sysctl.conf
sysctl -p

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechIncus

  • SeverityMEDIUM

  • CVSS Score4.7

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:P/PR:L/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P/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-61
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33898: Incus Privilege Escalation Vulnerability

  • CVE-2026-33897: Incus Privilege Escalation Vulnerability

  • CVE-2026-33743: Incus Storage Bucket DoS Vulnerability

  • CVE-2026-33542: Incus Image Cache Poisoning Vulnerability
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