Skip to main content

PlaywrightCapture CVE-2026-63175

| EUVDEUVD-2026-44823 HIGH
Insufficient Session Expiration (CWE-613)
2026-07-15 CIRCL GHSA-45hp-h3fx-8mr2
7.1
CVSS 4.0 · Vendor: CIRCL
Share

Severity by source

Vendor (CIRCL) PRIMARY
7.1 HIGH
CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:N/VA:N/SC:L/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
vuln.today AI
7.1 HIGH

Legitimate shared-service user (PR:L) with no interaction; leakage is concurrency/timing-dependent (AC:H); cross-user data exposure changes scope (S:C) with high confidentiality and low integrity impact, no availability loss.

3.1 AV:N/AC:H/PR:L/UI:N/S:C/C:H/I:L/A:N
4.0 AV:N/AC:H/AT:P/PR:L/UI:N/VC:H/VI:L/VA:N/SC:L/SI:N/SA:N

Primary rating from Vendor (CIRCL).

CVSS VectorVendor: CIRCL

Attack Vector
Network
Attack Complexity
Low
Privileges Required
Low
User Interaction
None
Scope
X

Lifecycle Timeline

3
Source Code Evidence Fetched
Jul 15, 2026 - 22:07 vuln.today
Analysis Generated
Jul 15, 2026 - 22:07 vuln.today
CVE Published
Jul 15, 2026 - 21:26 cve.org
HIGH 7.1

DescriptionCVE.org

PlaywrightCapture stored capture-specific configuration and runtime data as mutable class-level variables rather than instance-level variables. Consequently, multiple Capture objects running within the same Python process could share state, including HTTP headers, cookies, browser storage, HTTP credentials, proxy configuration, user-agent settings, geolocation information, and captured request data.

In a multi-user or concurrent deployment, information supplied during one capture could therefore persist and be reused by a subsequent or parallel capture. This could result in the disclosure of authentication cookies, credentials, browser storage, or captured request data belonging to another user. It could also cause requests to be performed with another capture's authentication context, headers, or proxy configuration, potentially enabling unauthorized access to remote resources or interference with other capture operations.

The vulnerability is resolved by initializing all capture-specific settings and request data as instance variables in the Capture constructor, ensuring that state is isolated between capture operations.

AnalysisAI

Cross-user state leakage in Lookyloo's PlaywrightCapture Python library allows one capture operation to inherit sensitive data from another when multiple Capture objects run within the same Python process. Because capture-specific settings (HTTP headers, cookies, browser storage, HTTP credentials, proxy, user-agent, geolocation) were stored as mutable class-level rather than instance-level variables, a concurrent or subsequent capture in a multi-user deployment can disclose or reuse another user's authentication cookies, credentials, and captured request data. Exploitation requires low privileges (PR:L, a legitimate user of a shared deployment); a vendor patch exists (commit 1e354b9) and no public exploit identified at time of analysis.

Technical ContextAI

PlaywrightCapture is a Python wrapper around Microsoft Playwright used by Lookyloo (CIRCL's URL/web-capture and investigation platform) to drive a headless browser and record how a page loads. The affected component is the Capture class in playwrightcapture/capture.py. The root cause is a Python object-model mistake: attributes such as _headers, _cookies, _storage, _http_credentials, _proxy, _user_agent, _geolocation, and _requests were declared as class-level attributes with mutable default values ({} / []). In Python, a class-level mutable attribute is shared by every instance until explicitly rebound, so all Capture objects living in one interpreter process referenced the same underlying dicts/lists. The vendor fix moves each of these into instance attributes assigned in __init__ (explicitly commented 'do not make them class vars!'), isolating per-capture state. The assigned CWE-613 (Insufficient Session Expiration) is an imperfect fit - the mechanism is closer to CWE-488 (Exposure of Data Element to Wrong Session) or shared mutable global state (CWE-668); the underlying issue is cross-instance state bleed, not session timeout.

RemediationAI

Upgrade to a PlaywrightCapture build that includes vendor commit 1e354b9d8566f49dbb331410be24c7c295645d43, which moves all capture-specific settings and request data into instance variables in the Capture constructor. Upstream fix available (commit); a released patched version was not independently confirmed from the provided data, so verify the pinned pip/package version actually incorporates this commit (https://github.com/Lookyloo/PlaywrightCapture/commit/1e354b9d8566f49dbb331410be24c7c295645d43). If you cannot upgrade immediately, avoid running multiple Capture objects concurrently in one shared Python process: run each capture in an isolated, short-lived worker process (one interpreter per capture) so class-level state cannot persist across users - the trade-off is higher per-capture startup cost and resource consumption. Additionally restrict the shared service to trusted users, and rotate/clear any credentials, cookies, or proxy settings that may have leaked while the vulnerable version was running, since leaked authentication material should be treated as compromised.

More in Python

View all
CVE-2025-24016 CRITICAL POC
9.9 Feb 10

Wazuh SIEM platform versions 4.4.0 through 4.9.0 contain an unsafe deserialization vulnerability in the DistributedAPI t

CVE-2025-27520 CRITICAL POC
9.8 Apr 04

BentoML version 1.4.2 and earlier contains an unauthenticated remote code execution vulnerability through insecure deser

CVE-2025-2945 CRITICAL POC
9.9 Apr 03

pgAdmin 4 contains critical remote code execution vulnerabilities in the Query Tool download and Cloud Deployment endpoi

CVE-2013-5093 MEDIUM POC
6.8 Sep 27

The renderLocalView function in render/views.py in graphite-web in Graphite 0.9.5 through 0.9.10 uses the pickle Python

CVE-2025-32375 CRITICAL POC
9.8 Apr 09

BentoML is a Python library for building online serving systems optimized for AI apps and model inference. Rated critica

CVE-2014-0224 HIGH POC
7.4 Jun 05

OpenSSL before 0.9.8za, 1.0.0 before 1.0.0m, and 1.0.1 before 1.0.1h does not properly restrict processing of ChangeCiph

CVE-2024-21644 HIGH POC
7.5 Jan 08

pyLoad download manager version prior to 0.5.0b3.dev77 exposes the Flask SECRET_KEY through an unauthenticated endpoint.

CVE-2026-33017 CRITICAL POC
9.3 Mar 17

Langflow (a visual LLM pipeline builder) contains a critical unauthenticated code execution vulnerability (CVE-2026-3301

CVE-2017-9462 HIGH POC
8.8 Jun 06

In Mercurial before 4.1.3, "hg serve --stdio" allows remote authenticated users to launch the Python debugger, and conse

CVE-2026-49869 CRITICAL POC
10.0 Jun 26

Unauthenticated remote code execution affects Kestra OSS (the open-source event-driven orchestration platform) prior to

CVE-2026-39987 CRITICAL POC
9.3 Apr 08

Unauthenticated remote code execution in Marimo ≤0.20.4 allows attackers to execute arbitrary system commands via the `/

CVE-2024-21645 MEDIUM POC
5.3 Jan 08

pyLoad is the free and open-source Download Manager written in pure Python. Rated medium severity (CVSS 5.3), this vulne

Share

CVE-2026-63175 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy