Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-33396

CVE-2026-33396: Hackerbay Oneuptime RCE Vulnerability

CVE-2026-33396 is a remote code execution vulnerability in Hackerbay Oneuptime that lets low-privileged users execute arbitrary code via Playwright sandbox escape. This article covers technical details, affected versions, and mitigation.

Published: March 27, 2026

CVE-2026-33396 Overview

CVE-2026-33396 is a critical command injection vulnerability in OneUptime, an open-source monitoring and observability platform. The vulnerability allows a low-privileged authenticated user with ProjectMember permissions to achieve remote command execution on the Probe container or host by exploiting an incomplete denylist in the Synthetic Monitor Playwright script execution sandbox.

Critical Impact

Authenticated attackers with low privileges can escape the sandbox and execute arbitrary system commands on the Probe container/host, potentially leading to full system compromise.

Affected Products

  • Hackerbay OneUptime versions prior to 10.0.35

Discovery Timeline

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

Technical Details for CVE-2026-33396

Vulnerability Analysis

This vulnerability exists in OneUptime's Synthetic Monitor feature, which allows users to execute Playwright scripts for monitoring purposes. The synthetic monitor code runs within VMRunner.runCodeInNodeVM, which provides a sandbox environment with a live Playwright page object in context.

The sandbox implementation relies on a denylist approach to block dangerous properties and methods. However, the denylist is incomplete, failing to restrict access to _browserType and the launchServer method. This oversight creates a pathway for attackers to escape the sandbox by traversing the object chain from the provided page object.

Root Cause

The root cause is an incomplete denylist-based security model in the VM sandbox. The sandbox was designed to prevent malicious code execution by blocking known dangerous methods, but failed to account for all exploitable paths through the Playwright browser object hierarchy. Specifically, the internal _browserType property and its launchServer method were not included in the blocked properties list, allowing sandbox escape.

Attack Vector

An attacker with ProjectMember access can craft a malicious Synthetic Monitor script that exploits the incomplete denylist. The attack leverages the Playwright object chain traversal:

  1. Start with the page object provided in the sandbox context
  2. Access the browser context via page.context()
  3. Obtain the browser instance with .browser()
  4. Access the internal _browserType property
  5. Call launchServer(...) to spawn arbitrary processes

The vulnerability allows the attacker to traverse page.context().browser()._browserType.launchServer(...) to spawn arbitrary processes on the underlying Probe container or host system, effectively bypassing the sandbox entirely.

Detection Methods for CVE-2026-33396

Indicators of Compromise

  • Unusual process spawning originating from the Probe container or OneUptime worker processes
  • Synthetic Monitor scripts containing references to _browserType or launchServer
  • Unexpected network connections or outbound traffic from Probe containers
  • Anomalous system command executions logged in audit trails

Detection Strategies

  • Monitor Synthetic Monitor script submissions for suspicious patterns including _browserType, launchServer, or other internal Playwright APIs
  • Implement runtime monitoring on Probe containers to detect unexpected child process creation
  • Review audit logs for ProjectMember accounts creating or modifying Synthetic Monitors with complex scripts
  • Deploy application-level logging to capture all Playwright method invocations within the sandbox

Monitoring Recommendations

  • Enable verbose logging for the VMRunner.runCodeInNodeVM function to capture all executed code
  • Set up alerts for any process execution anomalies on Probe hosts
  • Monitor for lateral movement attempts originating from Probe container network segments
  • Implement container runtime security to detect sandbox escape attempts

How to Mitigate CVE-2026-33396

Immediate Actions Required

  • Upgrade OneUptime to version 10.0.35 or later immediately
  • Audit existing Synthetic Monitor scripts for potentially malicious code patterns
  • Review access permissions and remove unnecessary ProjectMember privileges
  • Consider temporarily disabling the Synthetic Monitor feature until patching is complete

Patch Information

OneUptime has released version 10.0.35 which addresses this vulnerability. The fix is available in commit e8e4ee3ff0740eb131045ab3d67453141c46178a. Organizations should update immediately by pulling the latest version from the official repository. For detailed patch information, refer to the GitHub Security Advisory and the patch commit.

Workarounds

  • Restrict Synthetic Monitor creation to trusted administrator accounts only until patching is complete
  • Implement network segmentation to isolate Probe containers from sensitive internal resources
  • Deploy container runtime security solutions to prevent unauthorized process spawning
  • Add custom application-level filtering to block scripts containing _browserType or launchServer patterns
bash
# Example: Update OneUptime to patched version
git pull origin main
git checkout v10.0.35
docker-compose down
docker-compose build --no-cache
docker-compose up -d

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechHackerbay Oneuptime

  • SeverityCRITICAL

  • CVSS Score9.9

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-78
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-cqpg-phpp-9jjg
  • Related CVEs
  • CVE-2026-30957: Hackerbay OneUptime RCE Vulnerability

  • CVE-2026-30921: Hackerbay OneUptime RCE Vulnerability

  • CVE-2026-30887: Hackerbay Oneuptime RCE Vulnerability

  • CVE-2026-27574: Hackerbay OneUptime RCE 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