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

CVE-2026-33620: PinchTab Information Disclosure Flaw

CVE-2026-33620 is an information disclosure vulnerability in PinchTab HTTP server that exposes API tokens through URL query parameters. This article covers technical details, affected versions, impact, and mitigation.

Published: March 26, 2026

CVE-2026-33620 Overview

CVE-2026-33620 is a sensitive data exposure vulnerability in PinchTab, a standalone HTTP server that enables AI agents to directly control a Chrome browser. The vulnerability stems from an unsafe credential transport pattern where the application accepted API tokens via URL query parameters (?token=) in addition to the recommended Authorization header. This design flaw can lead to credential exposure through various logging mechanisms and client-side tooling.

Critical Impact

API tokens passed via URL query parameters can be inadvertently exposed through reverse proxy access logs, browser history, shell history, clipboard history, and tracing systems that capture full URLs, potentially allowing unauthorized access to PinchTab-controlled browser sessions.

Affected Products

  • PinchTab v0.7.8 through v0.8.3

Discovery Timeline

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

Technical Details for CVE-2026-33620

Vulnerability Analysis

This vulnerability represents an information exposure issue classified under CWE-598 (Use of GET Request Method With Sensitive Query Strings). The core problem lies in PinchTab's acceptance of authentication tokens through URL query parameters, which violates security best practices for credential handling.

When API credentials are transmitted via URL query strings rather than secure headers, they become susceptible to exposure through multiple vectors. URLs are routinely logged by web servers, proxies, and load balancers. They appear in browser history, can be captured in clipboard operations, and may be recorded by various debugging and tracing tools. This creates numerous opportunities for credential leakage even in otherwise secure deployments.

The vulnerability requires user interaction to exploit—a valid token must be configured and a client must actually use the query-parameter authentication form. However, the risk is compounded by the fact that PinchTab included first-party flows that generated and consumed URLs containing tokens, potentially normalizing this insecure pattern for users.

Root Cause

The root cause of CVE-2026-33620 is the implementation of dual authentication pathways that accepted API tokens from both the Authorization header and the token URL query parameter. While PinchTab's security documentation recommended using Authorization: Bearer <token>, the application's acceptance of query parameter tokens—combined with first-party features that generated token-bearing URLs—created an unsafe credential transport pattern that could lead to inadvertent token exposure.

Attack Vector

The attack vector is network-based and requires user interaction. An attacker would need to gain access to systems or logs where URLs containing the API token have been recorded. Potential exposure points include:

Access to reverse proxy or web server logs that record full request URIs could reveal tokens. Browser history access on systems where administrators have used token-bearing URLs would expose credentials. Shell history files may contain curl commands or similar requests with tokens in the URL. Clipboard history applications could capture URLs copied for sharing or testing purposes. Application performance monitoring and tracing systems that log complete URLs would also retain sensitive credentials.

Once an attacker obtains a valid API token, they could potentially gain unauthorized control over PinchTab-managed browser sessions, depending on the deployment configuration.

Detection Methods for CVE-2026-33620

Indicators of Compromise

  • Review web server, reverse proxy, and load balancer logs for requests containing ?token= query parameters to PinchTab endpoints
  • Search browser history databases for URLs containing PinchTab token parameters
  • Audit shell history files (.bash_history, .zsh_history) for commands with embedded tokens

Detection Strategies

  • Implement log monitoring rules to alert on any requests to PinchTab endpoints containing token= in the query string
  • Deploy web application firewalls (WAF) with rules to detect and block sensitive credentials in URL parameters
  • Use SentinelOne's behavioral analysis to identify unusual access patterns to browser automation services

Monitoring Recommendations

  • Enable audit logging for all PinchTab API access and monitor for authentication anomalies
  • Configure alerts for API token usage from unexpected IP addresses or geographic locations
  • Review application logs for any deprecated query-parameter authentication attempts after upgrading to v0.8.4

How to Mitigate CVE-2026-33620

Immediate Actions Required

  • Upgrade PinchTab to v0.8.4 or later, which removes query-string token authentication entirely
  • Rotate all existing API tokens that may have been exposed via URL query parameters
  • Audit and purge logs, browser histories, and shell histories that may contain exposed tokens
  • Review access logs to identify any potential unauthorized usage of leaked credentials

Patch Information

The vulnerability was addressed in PinchTab v0.8.4, which removes query-string token authentication and requires safer header- or session-based authentication flows. The fix ensures that tokens can only be transmitted via the secure Authorization: Bearer <token> header mechanism.

For detailed patch information, refer to the GitHub Release v0.8.4 and the GitHub Security Advisory GHSA-mrqc-3276-74f8.

Workarounds

  • If immediate upgrade is not possible, ensure all clients exclusively use the Authorization: Bearer <token> header for authentication
  • Configure reverse proxies to strip or reject requests containing token= query parameters
  • Implement network-level access controls to limit PinchTab API exposure to trusted networks only
bash
# Example: Configure nginx to reject requests with token query parameter
location /pinchtab/ {
    if ($query_string ~* "token=") {
        return 403;
    }
    proxy_pass http://pinchtab-backend;
}

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechPinchtab

  • SeverityMEDIUM

  • CVSS Score4.3

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-598
  • Technical References
  • GitHub Release v0.8.4

  • GitHub Security Advisory GHSA-mrqc-3276-74f8
  • Related CVEs
  • CVE-2026-33623: PinchTab HTTP Server RCE Vulnerability

  • CVE-2026-33622: PinchTab Server RCE Vulnerability

  • CVE-2026-33621: PinchTab Auth Bypass Vulnerability

  • 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