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

CVE-2026-33430: Briefcase Privilege Escalation Vulnerability

CVE-2026-33430 is a privilege escalation vulnerability in Briefcase affecting Windows MSI installers. Improper permissions allow low-privilege users to modify binaries. This article covers technical details, affected versions, impact, and mitigation.

Published: March 27, 2026

CVE-2026-33430 Overview

CVE-2026-33430 is an insecure permissions vulnerability in Briefcase, a tool for converting Python projects into standalone native applications. When Briefcase generates Windows MSI installers and the application is installed for "All Users" (per-machine scope), the installation process creates directories that inherit all permissions from the parent directory. This improper permission configuration (CWE-732) enables local privilege escalation attacks where a low-privileged authenticated user can modify application binaries that may later be executed by administrators.

Critical Impact

A low-privileged local attacker can replace or modify installed binaries. If an administrator subsequently executes the altered binary, the attacker's malicious code runs with elevated privileges, leading to full system compromise.

Affected Products

  • Briefcase versions 0.3.0 through 0.3.25
  • Windows MSI installers generated using vulnerable Briefcase templates
  • Applications installed with "All Users" (per-machine) scope

Discovery Timeline

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

Technical Details for CVE-2026-33430

Vulnerability Analysis

The vulnerability stems from an improper permission configuration in the WXS (Windows Installer XML) templates used by Briefcase to generate Windows MSI installers. When a Briefcase-packaged application is installed with the "All Users" option (per-machine scope), the installation directories are created without explicit security descriptors, causing them to inherit permissions from their parent directory.

In many Windows environments, particularly when applications are installed to non-standard locations or directories without restricted ACLs, this inheritance behavior grants write access to authenticated users. A local attacker with limited privileges can exploit this by replacing legitimate application executables or DLLs with malicious versions.

The attack achieves privilege escalation when an administrator or elevated process runs the compromised binary, executing the attacker's payload with those elevated privileges. This represents a classic binary planting or DLL hijacking scenario enabled by weak file system permissions.

Root Cause

The root cause is CWE-732: Incorrect Permission Assignment for Critical Resource. The WXS template files used in Briefcase versions 0.3.0 through 0.3.25 did not specify restrictive directory permissions during MSI-based installations. Instead of explicitly configuring secure ACLs that limit write access to administrators only, the templates allowed directory permission inheritance from parent folders, which may include overly permissive write access for standard users.

Attack Vector

This vulnerability requires local access to the target system. An attacker must have authenticated access to the Windows system where a vulnerable Briefcase-generated application is installed with per-machine scope. The attack involves identifying the installation directory, verifying write permissions exist, and replacing or modifying executable files within that directory.

The vulnerability is exploited through the following mechanism:

  1. The attacker identifies a Briefcase-generated application installed for All Users
  2. The attacker verifies that the installation directory inherited permissive ACLs allowing write access
  3. The attacker replaces a legitimate executable or DLL with a malicious payload
  4. When an administrator or elevated service executes the modified binary, the malicious code runs with elevated privileges

For technical details on the vulnerable template code and the applied fix, see the GitHub Pull Request #85 and GitHub Pull Request #86.

Detection Methods for CVE-2026-33430

Indicators of Compromise

  • Unexpected modifications to executable files or DLLs in Briefcase-generated application directories
  • File timestamps on application binaries that differ from the original installation date
  • Changes to file hashes of installed executables compared to known-good baseline
  • Anomalous process execution chains where low-integrity processes modify files later executed by high-integrity processes

Detection Strategies

  • Monitor file system integrity of installed application directories using Windows Security Event IDs 4663 (file access) and 4656 (handle requests)
  • Implement application whitelisting or code signing verification to detect unauthorized binary modifications
  • Use SentinelOne's Behavioral AI to detect privilege escalation patterns involving binary replacement attacks
  • Audit ACLs on application installation directories to identify overly permissive configurations

Monitoring Recommendations

  • Deploy file integrity monitoring (FIM) on directories containing Briefcase-generated applications
  • Configure alerts for write operations to application directories by non-administrator accounts
  • Monitor for execution of modified binaries through process lineage analysis
  • Review Windows Installer logs for applications installed with per-machine scope to identify potentially vulnerable deployments

How to Mitigate CVE-2026-33430

Immediate Actions Required

  • Upgrade Briefcase to version 0.3.26, 0.4.0, or 0.4.1 which contain the fixed templates
  • Re-run briefcase create on all existing projects to regenerate installers with secure templates
  • Audit existing installations for permissive directory ACLs and remediate manually if necessary
  • Consider reinstalling affected applications to apply correct permissions

Patch Information

The vulnerability was fixed in Briefcase versions 0.3.26, 0.4.0, and 0.4.1. The fix modifies the WXS template files to explicitly set restrictive directory permissions during MSI installation, preventing permission inheritance from parent directories. Detailed information about the fix is available in the GitHub Security Advisory GHSA-r3r2-35v9-v238.

To apply the fix, upgrade Briefcase and regenerate your application installers:

bash
pip install --upgrade briefcase
briefcase create
briefcase package

Workarounds

  • For Briefcase 0.3.24 or later, manually patch existing .wxs files with the security fix before building installers
  • Manually set restrictive ACLs on installation directories after deployment using icacls or PowerShell commands
  • Avoid installing applications for "All Users" and use per-user installation scope when possible
  • Implement additional access controls through Group Policy to restrict write access to program directories
bash
# Manually fix directory permissions on existing installations
icacls "C:\Program Files\YourApp" /inheritance:r
icacls "C:\Program Files\YourApp" /grant:r Administrators:(OI)(CI)F
icacls "C:\Program Files\YourApp" /grant:r SYSTEM:(OI)(CI)F
icacls "C:\Program Files\YourApp" /grant:r Users:(OI)(CI)RX

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechBriefcase

  • SeverityHIGH

  • CVSS Score7.3

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-732
  • Technical References
  • GitHub Pull Request #85

  • GitHub Pull Request #86

  • GitHub Issue #2759

  • GitHub Security Advisory GHSA-r3r2-35v9-v238
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs Path Traversal 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