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

CVE-2026-29872: awesome-llm-apps Information Disclosure

CVE-2026-29872 is a cross-session information disclosure vulnerability in awesome-llm-apps that exposes API tokens across user sessions. This article covers the technical details, affected versions, impact, and mitigation.

Published: April 2, 2026

CVE-2026-29872 Overview

A cross-session information disclosure vulnerability exists in the awesome-llm-apps project that allows attackers to retrieve sensitive credentials from other users' sessions. 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.

Critical Impact

An attacker can exploit this vulnerability to retrieve sensitive information such as GitHub Personal Access Tokens or LLM API keys, potentially leading to unauthorized access to private repositories and financial abuse through API key theft.

Affected Products

  • awesome-llm-apps project (commit e46690f99c3f08be80a9877fab52acacf7ab8251)
  • Streamlit-based GitHub MCP Agent component
  • Deployments using shared Python process architecture

Discovery Timeline

  • 2026-03-30 - CVE CVE-2026-29872 published to NVD
  • 2026-04-01 - Last updated in NVD database

Technical Details for CVE-2026-29872

Vulnerability Analysis

This vulnerability stems from improper session isolation in the awesome-llm-apps Streamlit application. The application stores user-supplied credentials, including GitHub Personal Access Tokens and LLM API keys, directly in process-wide environment variables via os.environ. This design flaw becomes critical in Streamlit's execution model, where a single Python process handles requests from multiple concurrent users.

When a user submits their API credentials through the GitHub MCP Agent interface, these tokens are written to the shared process environment. Any subsequent user connecting to the same application instance can access these environment variables, effectively retrieving another user's sensitive credentials without any authentication.

The vulnerability is classified under CWE-200 (Exposure of Sensitive Information to an Unauthorized Actor), reflecting the core issue of inadequate access controls on sensitive data.

Root Cause

The root cause lies in the architectural decision to use process-wide environment variables (os.environ) for storing per-user session data. Streamlit applications are designed to serve multiple users from a single Python process, making environment variables an inappropriate storage mechanism for user-specific secrets. The lack of session isolation means credentials persist beyond the original user's session and become accessible to other users sharing the same process.

Attack Vector

The attack is network-accessible and requires no authentication or user interaction. An attacker can exploit this vulnerability through the following attack flow:

  1. The attacker accesses the publicly available Streamlit-based GitHub MCP Agent
  2. A legitimate user has previously submitted their GitHub Personal Access Token or LLM API key
  3. The attacker reads the process environment variables through the application interface or by exploiting the shared process context
  4. The attacker obtains the victim's credentials and can use them for unauthorized access to private GitHub repositories or to abuse paid LLM API services

The vulnerability requires no privileges and has low attack complexity, making it particularly dangerous for public-facing deployments of the affected application.

Detection Methods for CVE-2026-29872

Indicators of Compromise

  • Unexpected access patterns to GitHub repositories using stolen Personal Access Tokens
  • Unusual API consumption spikes on LLM service accounts indicating potential credential theft
  • Multiple authentication events from disparate geographic locations using the same credentials
  • Log entries showing environment variable access from different session contexts

Detection Strategies

  • Monitor Streamlit application logs for patterns indicating environment variable enumeration
  • Implement application-level logging to track credential submission and access events
  • Analyze GitHub audit logs for suspicious repository access using tokens provisioned through the affected application
  • Review LLM API provider dashboards for anomalous usage patterns that may indicate stolen API keys

Monitoring Recommendations

  • Enable verbose logging on all Streamlit deployments running the awesome-llm-apps GitHub MCP Agent
  • Set up alerts for GitHub Personal Access Token usage from unexpected IP addresses
  • Monitor cloud costs associated with LLM API services for sudden increases indicating credential abuse
  • Implement session-aware logging to correlate user activities with credential access patterns

How to Mitigate CVE-2026-29872

Immediate Actions Required

  • Immediately rotate all GitHub Personal Access Tokens that have been used with the affected application
  • Revoke and regenerate any LLM API keys submitted through the GitHub MCP Agent
  • Take affected Streamlit deployments offline until proper session isolation can be implemented
  • Audit access logs for signs of credential theft and unauthorized resource access

Patch Information

As of the last NVD update on 2026-04-01, users should check the GitHub security research repository for the latest remediation guidance. The vulnerable commit is e46690f99c3f08be80a9877fab52acacf7ab8251 dated 2026-01-19. Organizations should update to a patched version once available or implement the workarounds below.

Workarounds

  • Replace os.environ storage with Streamlit's built-in session state (st.session_state) for per-user credential storage
  • Implement proper session isolation by storing credentials in encrypted, session-scoped storage mechanisms
  • Deploy the application in single-user mode or use containerization to isolate each user session
  • Use external secrets management services (e.g., HashiCorp Vault) with per-session authentication rather than environment variables
bash
# Example: Deploy with session isolation using container-per-user
docker run -d --name streamlit-session-${USER_SESSION_ID} \
  -e STREAMLIT_SERVER_PORT=8501 \
  -e STREAMLIT_SERVER_ADDRESS=0.0.0.0 \
  awesome-llm-apps:latest

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechAwesome Llm Apps

  • SeverityHIGH

  • CVSS Score8.2

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-200
  • Technical References
  • GitHub CVE-2026-29872 Research
  • Latest CVEs
  • CVE-2025-52793: Esselink.nu Settings CSRF Vulnerability

  • CVE-2025-52772: Virtual Moderator CSRF Vulnerability

  • CVE-2025-48279: WC MyParcel Belgium XSS Vulnerability

  • CVE-2025-39381: KiotViet Sync CSRF 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