Severity by source
AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N
Primary rating from NVD · only source for this CVE.
CVSS VectorNVD
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N
Lifecycle Timeline
3DescriptionCVE.org
A cross-session information disclosure vulnerability exists in the awesome-llm-apps project in commit e46690f99c3f08be80a9877fab52acacf7ab8251 (2026-01-19). The affected Streamlit-based GitHub MCP Agent stores user-supplied API tokens in process-wide environment variables using os.environ without proper session isolation. Because Streamlit serves multiple concurrent users from a single Python process, credentials provided by one user remain accessible to subsequent unauthenticated users. An attacker can exploit this issue to retrieve sensitive information such as GitHub Personal Access Tokens or LLM API keys, potentially leading to unauthorized access to private resources and financial abuse.
AnalysisAI
Cross-session credential leakage in awesome-llm-apps Streamlit-based GitHub MCP Agent allows unauthenticated users to retrieve previously stored API tokens and secrets from process-wide environment variables, compromising GitHub Personal Access Tokens and LLM API keys across concurrent session boundaries. The vulnerability stems from improper session isolation in a multi-user Streamlit application that persists credentials in os.environ without clearing them between user sessions, enabling attackers to escalate privileges and access private resources without authentication.
Technical ContextAI
The vulnerability exists in a Streamlit-based application that interfaces with GitHub via the Model Context Protocol (MCP). Streamlit is a Python framework designed for rapid data application development that runs a single Python process serving multiple concurrent users via websocket connections. The flaw occurs because user-supplied API credentials are stored directly in process-wide environment variables (os.environ) without implementing session-scoped storage or cleanup mechanisms. When one user provides credentials for GitHub API access or LLM authentication, these values persist in the process memory and environment variable dictionary. Subsequent users connecting to the same Streamlit server instance can access these credentials, effectively bypassing the application's implicit per-user isolation expectations. This is a classic case of CWE-200 (Information Exposure) compounded by CWE-384 (Session Fixation) due to the shared process architecture and lack of credential scoping to individual sessions. The vulnerability highlights a fundamental architecture mismatch: Streamlit's single-process, multi-user design is incompatible with naive credential storage patterns that assume process isolation.
RemediationAI
The primary remediation is to implement proper session-scoped credential storage rather than process-wide environment variables. Developers should refactor credential handling to use Streamlit's session_state dictionary (st.session_state) or implement a secure per-session credential cache that is cleared when sessions terminate. A temporary workaround is to deploy each Streamlit user session in an isolated Python process (e.g., using Docker containers per user or a load-balanced multi-process Streamlit server configuration), though this is architecturally inefficient. Immediately patch to a version that implements session isolation; check the security-research repository referenced (https://github.com/lilmingwa13/security-research/blob/main/CVE-2026-29872.md) for patched commit hashes or pull requests. As a stopgap measure, clear os.environ of sensitive keys at session end, though this does not prevent cross-session leakage during concurrent sessions. Users should rotate all API credentials (GitHub tokens, LLM keys) that may have been exposed in affected deployments and enable multi-factor authentication on associated accounts.
Wazuh SIEM platform versions 4.4.0 through 4.9.0 contain an unsafe deserialization vulnerability in the DistributedAPI t
BentoML version 1.4.2 and earlier contains an unauthenticated remote code execution vulnerability through insecure deser
pgAdmin 4 contains critical remote code execution vulnerabilities in the Query Tool download and Cloud Deployment endpoi
The renderLocalView function in render/views.py in graphite-web in Graphite 0.9.5 through 0.9.10 uses the pickle Python
BentoML is a Python library for building online serving systems optimized for AI apps and model inference. Rated critica
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
pyLoad download manager version prior to 0.5.0b3.dev77 exposes the Flask SECRET_KEY through an unauthenticated endpoint.
In Mercurial before 4.1.3, "hg serve --stdio" allows remote authenticated users to launch the Python debugger, and conse
Unauthenticated remote code execution in Marimo ≤0.20.4 allows attackers to execute arbitrary system commands via the `/
pyLoad is the free and open-source Download Manager written in pure Python. Rated medium severity (CVSS 5.3), this vulne
Langflow (a visual LLM pipeline builder) contains a critical unauthenticated code execution vulnerability (CVE-2026-3301
Cross-user flow execution in Langflow (< 1.9.1) lets any authenticated API-key holder run another user's flow by passing
Same weakness CWE-522 – Insufficiently Protected Credentials
View allSame technique Information Disclosure
View allShare
External POC / Exploit Code
Leaving vuln.today
EUVD-2026-17141
GHSA-qx64-h3hh-3vhj