CyberRota Analysis
AI-GeneratedThe vulnerability arises from PlaywrightCapture storing configuration and runtime data as mutable class-level variables, allowing multiple Capture objects within the same Python process to share sensitive state information. This can lead to the unintended disclosure of authentication cookies, credentials, and other user-specific data, as well as unauthorized access to resources due to overlapping capture contexts. Organizations utilizing PlaywrightCapture in multi-user or concurrent environments should prioritize addressing this issue to safeguard user data and maintain operational integrity.
Public Exploit Signal
A public exploit, PoC, GitHub repository or Metasploit reference was detected for this CVE.
Note: these links are listed for security research and verification purposes only.
Original NVD Description
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.