The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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-34953

CVE-2026-34953: Praison Praisonai Auth Bypass Vulnerability

CVE-2026-34953 is an authentication bypass flaw in Praison Praisonai that allows unauthorized access with any token. This post covers the technical details, affected versions, security impact, and mitigation steps.

Published: April 10, 2026

CVE-2026-34953 Overview

CVE-2026-34953 is a critical authentication bypass vulnerability in PraisonAI, a multi-agent teams system. Prior to version 4.5.97, the OAuthManager.validate_token() function incorrectly returns True for any token not found in its internal store, which is empty by default. This flawed logic allows any HTTP request to the MCP server with an arbitrary Bearer token to be treated as authenticated, granting full access to all registered tools and agent capabilities.

Critical Impact

Unauthenticated remote attackers can gain full access to all registered tools and agent capabilities in PraisonAI deployments by providing any arbitrary Bearer token.

Affected Products

  • PraisonAI versions prior to 4.5.97
  • praison praisonai

Discovery Timeline

  • 2026-04-03 - CVE-2026-34953 published to NVD
  • 2026-04-09 - Last updated in NVD database

Technical Details for CVE-2026-34953

Vulnerability Analysis

This vulnerability represents a severe Broken Access Control flaw (CWE-863: Incorrect Authorization) in the PraisonAI authentication mechanism. The core issue lies in the OAuthManager.validate_token() method's flawed validation logic. When a token is checked against the internal token store, the function incorrectly returns True if the token is not found, rather than returning False to deny access.

Since the internal token store is empty by default upon deployment, every token validation check will result in a positive authentication response. This means that any attacker who can reach the MCP server endpoint can simply craft an HTTP request with any arbitrary Bearer token value in the Authorization header, and the system will treat this request as fully authenticated.

The vulnerability is network-exploitable without requiring any prior authentication or user interaction, allowing attackers to bypass all authentication controls and gain unauthorized access to the entire agent ecosystem.

Root Cause

The root cause is an inverted logic error in the OAuthManager.validate_token() function. The method returns True (authenticated) for tokens that are NOT found in the token store, instead of returning False (unauthenticated). Combined with the fact that the token store is empty by default, this creates a situation where all authentication attempts succeed regardless of the token value provided.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by:

  1. Identifying a PraisonAI MCP server endpoint accessible over the network
  2. Sending an HTTP request with an Authorization header containing any arbitrary Bearer token value
  3. The OAuthManager.validate_token() function checks if the token exists in the empty internal store
  4. Since the token is not found (because no tokens exist), the function incorrectly returns True
  5. The attacker is granted full authenticated access to all registered tools and agent capabilities

The vulnerability can be exploited through simple HTTP requests to the MCP server. No special tools or complex exploitation techniques are required. See the GitHub Security Advisory for technical details on the vulnerable code path.

Detection Methods for CVE-2026-34953

Indicators of Compromise

  • Unexpected or unauthorized API requests to the MCP server from unknown IP addresses
  • Bearer tokens in authentication logs that do not match any legitimately issued tokens
  • Unusual agent activity or tool executions not initiated by authorized users
  • Access logs showing successful authentication from multiple distinct Bearer token values

Detection Strategies

  • Monitor authentication logs for requests using unrecognized Bearer tokens
  • Implement rate limiting and alerting on authentication attempts to the MCP server
  • Deploy network intrusion detection rules to identify suspicious traffic patterns to PraisonAI endpoints
  • Audit agent and tool execution logs for unauthorized or anomalous activity

Monitoring Recommendations

  • Enable verbose logging on the MCP server to capture all authentication attempts and token values
  • Set up alerts for successful authentication events that do not correlate with legitimate user sessions
  • Monitor for bulk or automated requests to agent endpoints that could indicate exploitation
  • Review access patterns regularly to identify potential unauthorized access

How to Mitigate CVE-2026-34953

Immediate Actions Required

  • Upgrade PraisonAI to version 4.5.97 or later immediately
  • If immediate upgrade is not possible, restrict network access to the MCP server to trusted IP addresses only
  • Audit logs for any signs of unauthorized access or exploitation
  • Review and revoke any suspicious agent activities or tool executions

Patch Information

Praison has released version 4.5.97 of PraisonAI which corrects the authentication bypass vulnerability in OAuthManager.validate_token(). Organizations running affected versions should upgrade immediately. For detailed patch information, refer to the GitHub Security Advisory.

Workarounds

  • Restrict network access to the MCP server using firewall rules to allow only trusted IP addresses
  • Deploy a reverse proxy with proper authentication in front of the PraisonAI MCP server
  • Disable external network access to the MCP server until the patch can be applied
  • Implement network segmentation to isolate PraisonAI deployments from untrusted networks
bash
# Example: Restrict MCP server access using iptables
# Allow only trusted IP ranges to access the MCP server port (adjust port as needed)
iptables -A INPUT -p tcp --dport 8080 -s 10.0.0.0/8 -j ACCEPT
iptables -A INPUT -p tcp --dport 8080 -j DROP

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechPraison

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-863
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-44336: Praison Praisonai RCE Vulnerability

  • CVE-2026-41496: Praison Praisonai SQLi Vulnerability

  • CVE-2026-44339: Praison PraisonAI RCE Vulnerability

  • CVE-2026-41497: Praison Praisonai RCE Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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