Skip to main content
A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Find Out Why
  • Experiencing a breach?
  • Blog
  • Careers
  • Platform & Products

    • Singularity™ Platform

      Unified Enterprise Security. Machine-Speed Protection, Intelligence, and Response.

    • XDR

      Native and Open Protection, Detection, and Response.

    • Integrations and Partners

      One-Click Integrations to Unlock the Power of SentinelOne.

    Product Tours
    Pricing & Packages
    Get a Demo
  • Solutions & Use Cases

    SentinelOne for Industries

    Security Tuned for Your Industry.

    See All Industries
    • Healthcare

      Protect Patient Data. Keep Clinical Systems Online.

    • Financial Services

      Stop Fraud and Ransomware. Stay Audit-Ready.

    • Federal Government

      FedRAMP and IL5-Ready Defense for Federal Missions.

    • Manufacturing

      Defend OT, IT, IIOT, and Supply Chains at Scale.

    • Energy

      Secure OT Systems and Critical Infrastructure.

    • Transportation and Logistics

      Defend Operations Across Fleet, Port, and Rail.

    • Higher Education

      Protect Open Networks Without Slowing Research.

    • K-12 Education

      Stop Ransomware. Protect Students, Staff, and Data.

    • Retail and Hospitality

      Defend Your Brand, Customer Data, and Bottom Line.

    • SMB & Startups

      Enterprise-Grade Defense for Fast Teams.

    See all solutions
  • Services

    Managed Services

    Wayfinder Threat Detection and Response.

    Learn More
    • Threat Hunting

      World-Class Expertise and Threat Intelligence.

    • Managed Detection and Response

      24/7 Expert MDR Across Your Entire Environment.

    • Incident Readiness and Response

      DFIR, Breach Readiness, and Compromise Assessments.

    Experiencing a breach?

    Our experts are here to help 24/7.

    1-855-868-3733
    Get Help Now
  • Partners

    Become a Partner

    • Become a SentinelOne Partner

      Join the Global SentinelOne Ecosystem

    • Explore MSSP Solutions

      Services Succeed Faster with SentinelOne

    • Form a Technology Alliance

      Integrated, Enterprise-Scale Solutions

    Find a Partner

    • Enlist a Response or Advisory Team

      Enlist Pro Response and Advisory Teams

    • SentinelOne for AWS

      Hosted Across AWS Regions Worldwide

    • SentinelOne for Google

      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale

    • Partner Locator

      Your Go-to Source for Our Top Partners in Your Region

    • Singularity Marketplace

      One-Click Integrations for Unified Prevention, Detection, and Response

      Explore integrations
    Partner Portal Login
  • Why SentinelOne

    • Why Choose SentinelOne

      AI-Powered Cybersecurity Built to Secure What’s Next.

    • Our Customers

      Trusted by the World’s Leading Companies.

    • Industry Awards & Recognition

      Tested and Proven by the Experts.

  • Resources & Support

    Resources

    • Resource Center
    • Webinars
    • Cybersecurity Blog
    • Events
    • Newsroom

    Company

    • About SentinelOne
    • Careers
    • S Ventures
    • S Foundation
    • Dataset
    • FAQ
    • Investors Relations

    Customer Success & Support

    • Live and On-Demand Training
    • Guided Onboarding & Deployment
    • Technical Account Management
    • Support Services
    • Customer Portal
    • Get Support Now

    Explore

    • Vulnerability Database
    • SentinelLABS Threat Research
    • Ransomeware Anthology
    • Cybersecurity 101
    EventJoin us at OneCon (Oct. 20–22, 2026)
    CompetitionThreat Hunting World Championship 2026
    ReportThe SentinelOne Annual Threat Report
  • Pricing
Get StartedContact us

Explore SentinelOne

  • Pricing
Events
Get StartedContact us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-40252

CVE-2026-40252: FastGPT Auth Bypass Vulnerability

CVE-2026-40252 is an authentication bypass flaw in FastGPT that allows authenticated teams to access applications from other teams. This article covers the technical details, affected versions, impact, and mitigation.

Published: April 17, 2026

CVE-2026-40252 Overview

CVE-2026-40252 is a Broken Access Control vulnerability affecting FastGPT, an AI Agent building platform. Prior to version 4.14.10.4, the platform contains an Insecure Direct Object Reference (IDOR) / Broken Object Level Authorization (BOLA) flaw that allows any authenticated team to access and execute applications belonging to other teams by supplying a foreign appId. While the API correctly validates the team token, it does not verify that the requested application belongs to the authenticated team, leading to cross-tenant data exposure and unauthorized execution of private AI workflows.

Critical Impact

Authenticated attackers can access and execute private AI applications across tenant boundaries, exposing sensitive data and workflows belonging to other organizations.

Affected Products

  • FastGPT versions prior to 4.14.10.4

Discovery Timeline

  • 2026-04-10 - CVE CVE-2026-40252 published to NVD
  • 2026-04-13 - Last updated in NVD database

Technical Details for CVE-2026-40252

Vulnerability Analysis

This vulnerability falls under CWE-284 (Improper Access Control). The FastGPT platform implements multi-tenant architecture where multiple teams can create and manage their own AI applications and workflows. The application API endpoints accept an appId parameter to identify which application to access or execute.

The core issue lies in the authorization logic: while the platform properly authenticates incoming requests by validating team tokens, it fails to perform object-level authorization checks. This means the system does not verify whether the authenticated team actually owns or has permission to access the requested application specified by the appId parameter.

An attacker from one team can enumerate or guess valid appId values belonging to other teams and gain unauthorized access to those applications. This enables cross-tenant data exposure where confidential AI configurations, training data, and workflow logic may be revealed to unauthorized parties.

Root Cause

The root cause is missing authorization validation at the object level. The API endpoint processes requests based solely on authentication (valid team token) without verifying that the requested resource (appId) belongs to the authenticated team's scope. This is a classic BOLA/IDOR vulnerability pattern where resource ownership is not checked after authentication succeeds.

Attack Vector

The attack is network-based and requires low privileges (valid authenticated team account). An attacker can exploit this vulnerability by:

  1. Authenticating with valid team credentials to obtain an API token
  2. Identifying or enumerating appId values belonging to other teams
  3. Making API requests with foreign appId values using their valid authentication token
  4. Accessing application configurations, data, or executing workflows belonging to victim teams

The vulnerability requires no user interaction and can be exploited remotely over the network. The attack complexity is low since no special conditions need to be met beyond having valid authentication credentials for any team on the platform.

Detection Methods for CVE-2026-40252

Indicators of Compromise

  • Unusual API access patterns where a single team token accesses multiple applications belonging to different teams
  • Audit logs showing application access or execution requests for appId values not associated with the authenticated team
  • Spike in application enumeration attempts or sequential appId requests from a single source

Detection Strategies

  • Implement monitoring for cross-tenant access attempts by correlating team authentication tokens with accessed appId ownership
  • Deploy API security solutions that can detect BOLA/IDOR patterns based on authorization boundary violations
  • Review access logs for patterns where authenticated entities request resources outside their authorized scope

Monitoring Recommendations

  • Enable detailed audit logging for all application access and execution API endpoints
  • Monitor for anomalous patterns of appId parameter usage that don't match expected team-to-application relationships
  • Set up alerts for high-volume application enumeration attempts from single sources

How to Mitigate CVE-2026-40252

Immediate Actions Required

  • Upgrade FastGPT to version 4.14.10.4 or later immediately
  • Audit access logs to identify potential exploitation attempts or unauthorized cross-tenant access
  • Review any sensitive AI workflows or applications that may have been accessed by unauthorized parties

Patch Information

The vulnerability has been addressed in FastGPT version 4.14.10.4. Organizations should update to this version or later to remediate the vulnerability. Detailed information about the fix is available in the GitHub FastGPT Release v4.14.10.4 and the GitHub Security Advisory GHSA-gc8m-w37w-24hw.

Workarounds

  • Implement network-level access controls to restrict API access to trusted sources while awaiting patch deployment
  • Deploy a Web Application Firewall (WAF) with rules to detect and block suspicious IDOR patterns
  • Consider temporarily disabling public API access to sensitive application endpoints until the patch is applied

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechFastgpt

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:L/VI:N/VA:L/SC:N/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
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-284
  • Technical References
  • GitHub FastGPT Release v4.14.10.4

  • GitHub Security Advisory GHSA-gc8m-w37w-24hw
  • Related CVEs
  • CVE-2026-42345: FastGPT Auth Bypass Vulnerability

  • CVE-2026-40351: FastGPT Auth Bypass Vulnerability

  • CVE-2026-40352: FastGPT Auth Bypass Vulnerability

  • CVE-2026-34162: FastGPT Auth Bypass 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 a DemoContact Us
  • Product Tours
  • Why SentinelOne
  • Pricing & Packages
  • FAQ
  • SentinelOne Status

Key Products & Solutions

  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Prompt Security
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Explore Solutions

Services

  • Wayfinder TDR
  • Managed Detection and Response
  • Threat Hunting
  • Incident Readiness
& Response
  • Technical Account Management
  • Guided Onboarding 
& Deployment
  • Support Services

Company

  • About Us
  • Our Customers
  • Careers
  • Partners
  • S1 Foundation
  • S1 Ventures
  • Legal Information
  • Security & Compliance
  • Investor Relations

Quick Links

  • Customer Portal
  • Partner Portal
  • Become a Partner
  • Resource Center
  • SentinelLABS Threat Research
  • Blog
  • Press Center
  • Cybersecurity 101
  • Events
  • Ransomware Anthology
©2026 SentinelOne, All Rights Reserved
Privacy NoticeTerms of Use
English
English