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

CVE-2026-33622: PinchTab Server RCE Vulnerability

CVE-2026-33622 is a remote code execution flaw in PinchTab that bypasses security policies to execute arbitrary JavaScript. This post explains the security policy bypass, affected versions v0.8.3-v0.8.5, and mitigation.

Published: March 27, 2026

CVE-2026-33622 Overview

CVE-2026-33622 is a Code Injection vulnerability affecting PinchTab, a standalone HTTP server that provides AI agents with direct control over a Chrome browser. The vulnerability allows arbitrary JavaScript execution through the POST /wait and POST /tabs/{id}/wait endpoints when using fn mode, even when the security.allowEvaluate configuration option is explicitly disabled.

Critical Impact

Authenticated attackers can bypass security policy controls to execute arbitrary JavaScript code in browser tab contexts, potentially leading to data theft, session hijacking, or malicious browser automation despite operators explicitly disabling JavaScript evaluation capabilities.

Affected Products

  • PinchTab v0.8.3
  • PinchTab v0.8.4
  • PinchTab v0.8.5

Discovery Timeline

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

Technical Details for CVE-2026-33622

Vulnerability Analysis

This vulnerability represents a security policy bypass in PinchTab's request handling logic. The POST /evaluate endpoint correctly enforces the security.allowEvaluate guard, which is disabled by default to prevent arbitrary JavaScript execution. However, the POST /wait endpoint accepts a user-controlled fn expression and embeds it directly into executable JavaScript without performing the same security policy validation.

The core issue stems from inconsistent security boundary enforcement across functionally similar endpoints. While one code path properly validates the security configuration before allowing code evaluation, the alternate path through /wait completely bypasses this check, creating a gap that authenticated users can exploit.

Root Cause

The root cause is inconsistent application of the security.allowEvaluate policy across different API endpoints. The /wait endpoint's fn mode functionality directly evaluates user-supplied JavaScript expressions in the browser context without consulting the same policy guard that protects the /evaluate endpoint. This allows attackers with valid API authentication to circumvent the operator's explicit security configuration.

Attack Vector

The attack vector is network-based and requires authenticated API access. An attacker with a valid server token can send crafted requests to the /wait or /tabs/{id}/wait endpoints using fn mode. The user-controlled fn expression is embedded directly into executable JavaScript and evaluated in the target browser tab's context. While exploitation requires prior authentication, this bypasses the security policy that operators may have enabled specifically to prevent such code execution scenarios.

The vulnerability manifests when the request processing logic for /wait endpoints fails to check the security.allowEvaluate setting before accepting and executing the fn parameter contents. This allows callers to effectively perform the same operations blocked by /evaluate through an alternate, unprotected code path. For detailed technical information, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-33622

Indicators of Compromise

  • Unusual API requests to /wait or /tabs/{id}/wait endpoints containing fn mode parameters
  • Server logs showing JavaScript evaluation attempts after security.allowEvaluate was disabled
  • Unexpected browser automation behavior or tab manipulation in monitored Chrome instances
  • Authentication tokens being used from unexpected source IP addresses or at unusual times

Detection Strategies

  • Monitor API request logs for /wait endpoint calls containing fn parameters, especially in environments where JavaScript evaluation is disabled
  • Implement request payload inspection to detect JavaScript code patterns in /wait endpoint requests
  • Deploy network monitoring to identify anomalous patterns in PinchTab API traffic
  • Configure alerting for any successful JavaScript evaluation events when security.allowEvaluate is set to false

Monitoring Recommendations

  • Enable verbose logging for all PinchTab API endpoints to capture full request payloads
  • Implement centralized log collection and analysis for PinchTab server instances
  • Set up real-time alerts for requests to /wait endpoints that contain potential code execution patterns
  • Regularly audit API access tokens and revoke any that are no longer needed or may be compromised

How to Mitigate CVE-2026-33622

Immediate Actions Required

  • Review all active PinchTab deployments to identify instances running affected versions (v0.8.3 through v0.8.5)
  • Restrict network access to PinchTab servers to only trusted sources via firewall rules
  • Audit API access tokens and revoke any tokens that may have been compromised or are no longer required
  • Implement additional network segmentation to isolate PinchTab servers from sensitive systems

Patch Information

As of the publication date (2026-03-26), a patched version is not yet available. The fix will apply the same security.allowEvaluate policy boundary to fn mode in /wait that already exists on /evaluate, while preserving non-code wait modes. Users should monitor the GitHub Security Advisory for patch release announcements and update immediately when a patched version becomes available.

Workarounds

  • Implement strict network-level access controls to limit which systems can reach the PinchTab API
  • Use a reverse proxy or Web Application Firewall (WAF) to filter requests containing fn parameters to /wait endpoints
  • Rotate and strictly limit distribution of API server tokens to only essential, trusted clients
  • Consider temporarily disabling PinchTab deployments in security-sensitive environments until a patch is available
bash
# Example: Restrict access to PinchTab server using iptables
# Allow only trusted IP addresses to connect to PinchTab port (default: 3000)
iptables -A INPUT -p tcp --dport 3000 -s 10.0.0.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 3000 -j DROP

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechPinchtab

  • SeverityMEDIUM

  • CVSS Score6.1

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:H/UI:N/VC:L/VI:L/VA:N/SC:H/SI:N/SA:N/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
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-94
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33623: PinchTab HTTP Server RCE Vulnerability

  • CVE-2026-33621: PinchTab Auth Bypass Vulnerability

  • CVE-2026-33620: PinchTab Information Disclosure Flaw

  • CVE-2026-33619: PinchTab HTTP Server SSRF 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