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

CVE-2026-34464: Sandboxie-Plus RCE Vulnerability

CVE-2026-34464 is a remote code execution flaw in Sandboxie-Plus that allows sandbox escape through buffer overflow. This post explains its impact, affected versions through 1.17.2, and mitigation steps.

Published: May 7, 2026

CVE-2026-34464 Overview

CVE-2026-34464 is a stack-based buffer overflow [CWE-121] in Sandboxie-Plus, an open source sandbox-based isolation tool for Windows. The flaw resides in NamedPipeServer::OpenHandler, which copies the server field from a NAMED_PIPE_OPEN_REQ message into a fixed WCHAR pipename[160] stack buffer using wcscat without verifying null termination. A sandboxed caller can supply oversized wide-character data and overflow the buffer inside the SYSTEM-level SbieSvc service. Versions 1.17.2 and earlier are affected, and the issue is fixed in version 1.17.3.

Critical Impact

A sandboxed process can crash SbieSvc or potentially execute code as SYSTEM, defeating the isolation boundary that Sandboxie-Plus is designed to enforce.

Affected Products

  • Sandboxie-Plus versions 1.17.2 and earlier
  • SbieSvc SYSTEM service component
  • NamedPipeServer IPC handler

Discovery Timeline

  • 2026-05-05 - CVE CVE-2026-34464 published to NVD
  • 2026-05-07 - Last updated in NVD database

Technical Details for CVE-2026-34464

Vulnerability Analysis

The vulnerability lives in the named pipe IPC layer that SbieSvc exposes to sandboxed processes. When a sandboxed caller sends a NAMED_PIPE_OPEN_REQ message, NamedPipeServer::OpenHandler reads the request's server field and concatenates it into a fixed WCHAR pipename[160] stack buffer. The handler uses wcscat, which copies wide characters until it encounters a null terminator in the source.

The service pipe accepts variable-length messages and only enforces a minimum packet size. An attacker can populate the 48-byte server field with non-null wide characters and append additional controlled data after the structure. wcscat then reads past the fixed field, traversing into attacker-controlled bytes and writing far beyond the 160-WCHAR destination buffer on the stack.

Because SbieSvc runs as SYSTEM, a successful exploit promotes a sandboxed process to full SYSTEM privilege, breaking the security boundary Sandboxie-Plus is designed to provide.

Root Cause

The root cause is missing input validation. The handler trusts that server is null-terminated within its 48-byte field and does not bound the destination copy. Combining wcscat with an unterminated source field produces a classic stack buffer overflow [CWE-121].

Attack Vector

Exploitation requires local code execution inside a Sandboxie-Plus sandbox. The attacker crafts a NAMED_PIPE_OPEN_REQ message larger than the minimum size, fills server[48] with non-zero wide characters, and appends shellcode-bearing data. The message is sent to the SbieSvc named pipe, triggering the overflow in the SYSTEM service.

See the GitHub Security Advisory GHSA-cf8x-f33g-vwfg for vendor-supplied technical detail.

Detection Methods for CVE-2026-34464

Indicators of Compromise

  • Unexpected crashes or restarts of the SbieSvc service on Windows endpoints running Sandboxie-Plus.
  • Windows Error Reporting (WER) entries referencing SbieSvc.exe with stack corruption or access violation faults.
  • Child processes spawned by SbieSvc.exe that fall outside the documented Sandboxie-Plus process tree.

Detection Strategies

  • Inventory endpoints running Sandboxie-Plus and flag any host on version 1.17.2 or earlier.
  • Monitor for anomalous named pipe activity targeting SbieSvc pipes from sandboxed processes.
  • Alert on SYSTEM-level process creation lineage that originates from SbieSvc.exe after sandboxed activity.

Monitoring Recommendations

  • Collect Sysmon Event ID 11 (file create) and Event ID 17/18 (named pipe events) for SbieSvc pipes.
  • Forward Application and System event logs to a central platform to correlate SbieSvc faults with user activity.
  • Track Sandboxie-Plus version inventory through endpoint management tooling and alert on outdated builds.

How to Mitigate CVE-2026-34464

Immediate Actions Required

  • Upgrade Sandboxie-Plus to version 1.17.3 or later on every Windows host where it is deployed.
  • Identify and decommission unmanaged or end-of-life Sandboxie-Plus installations that cannot be patched.
  • Restrict who can run Sandboxie-Plus sandboxes on shared or multi-user systems until patching is complete.

Patch Information

The maintainers fixed the issue in Sandboxie-Plus 1.17.3 by correcting the unsafe concatenation in NamedPipeServer::OpenHandler. Refer to the Sandboxie-Plus security advisory GHSA-cf8x-f33g-vwfg for fixed-version download links and release notes.

Workarounds

  • Stop and disable the SbieSvc service on systems where Sandboxie-Plus is not actively required.
  • Avoid running untrusted code inside Sandboxie-Plus sandboxes on hosts that cannot be upgraded.
  • Apply application allowlisting to prevent unknown binaries from launching inside sandboxes that interact with SbieSvc.
bash
# Verify the installed Sandboxie-Plus version on Windows (PowerShell)
Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\*" |
  Where-Object { $_.DisplayName -like "*Sandboxie*" } |
  Select-Object DisplayName, DisplayVersion, Publisher

# Stop and disable SbieSvc on hosts where Sandboxie-Plus is not required
Stop-Service -Name SbieSvc -Force
Set-Service -Name SbieSvc -StartupType Disabled

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechSandboxie Plus

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:H/AT:P/PR:L/UI:N/VC:H/VI:H/VA:H/SC:H/SI:H/SA:H/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
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-121
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-34462: Sandboxie-Plus RCE Vulnerability

  • CVE-2026-34461: Sandboxie-Plus Buffer Overflow Vulnerability

  • CVE-2026-34458: Sandboxie-Plus Privilege Escalation Flaw

  • CVE-2026-34527: Sandboxie-Plus Info Disclosure 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