A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-34162

CVE-2026-34162: FastGPT Auth Bypass Vulnerability

CVE-2026-34162 is an authentication bypass flaw in FastGPT that exposes an HTTP proxy endpoint without authentication, allowing unauthorized server-side requests. This article covers technical details, affected versions, and patches.

Updated: May 15, 2026

CVE-2026-34162 Overview

CVE-2026-34162 is a missing authentication vulnerability [CWE-306] in FastGPT, an AI Agent building platform developed by labring. Versions prior to 4.14.9.5 expose the HTTP tools testing endpoint /api/core/app/httpTools/runTool without any authentication. The endpoint functions as a full server-side HTTP proxy that accepts an attacker-supplied baseUrl, toolPath, HTTP method, custom headers, and request body. It then performs the request from the FastGPT server and returns the complete response. The maintainers patched the issue in version 4.14.9.5.

Critical Impact

Unauthenticated attackers can use the FastGPT server as an arbitrary HTTP proxy, enabling server-side request forgery (SSRF) against internal services, cloud metadata endpoints, and other reachable systems.

Affected Products

  • FastGPT (labring/FastGPT) versions prior to 4.14.9.5
  • Self-hosted FastGPT deployments exposing the HTTP tools API
  • Containerized FastGPT instances reachable from untrusted networks

Discovery Timeline

  • 2026-03-31 - CVE-2026-34162 published to NVD
  • 2026-04-01 - Last updated in NVD database

Technical Details for CVE-2026-34162

Vulnerability Analysis

FastGPT exposes the route /api/core/app/httpTools/runTool to allow operators to test outbound HTTP tool integrations. The handler reads request parameters that include a destination baseUrl, a toolPath, an HTTP method, arbitrary headers, and a request body. The server then issues the corresponding HTTP request and returns the upstream response to the caller verbatim.

The route does not enforce session, token, or role checks before performing the outbound request. Any remote client able to reach the FastGPT API can invoke the proxy. Because the destination is fully attacker-controlled, the endpoint behaves as an open server-side request forgery primitive rather than a constrained tool tester.

Root Cause

The root cause is missing authentication on a privileged administrative endpoint [CWE-306]. The handler was designed for authenticated tool-builder workflows but was registered on the public API surface without an auth middleware. The patch in version 4.14.9.5, introduced in commit bc7eae2ed61481a5e322208829be291faec58c00 and pull request #6640, adds an authentication requirement to the route.

Attack Vector

An unauthenticated remote attacker sends a POST request to /api/core/app/httpTools/runTool with a JSON body specifying baseUrl, toolPath, method, headers, and body. The FastGPT server performs the request from its own network position and returns the response. Attackers can target internal services such as Kubernetes APIs, Redis, Elasticsearch, internal admin panels, or cloud instance metadata services (for example http://169.254.169.254/) to retrieve credentials and IAM tokens. Attackers can also relay arbitrary HTTP traffic through the host to obscure their origin.

No verified public exploit code is currently published. See the GitHub Security Advisory GHSA-w36r-f268-pwrj and the patch commit for technical details.

Detection Methods for CVE-2026-34162

Indicators of Compromise

  • Unauthenticated POST requests to /api/core/app/httpTools/runTool in FastGPT access logs.
  • Outbound HTTP requests from the FastGPT server to 169.254.169.254, 127.0.0.1, localhost, or RFC1918 ranges that do not match normal tool configurations.
  • Request bodies containing attacker-controlled baseUrl values pointing at internal infrastructure or cloud metadata services.
  • Large or anomalous response sizes returned from the runTool endpoint to external clients.

Detection Strategies

  • Alert on any access to /api/core/app/httpTools/runTool originating from clients without a valid authenticated session.
  • Correlate inbound API requests with subsequent outbound HTTP egress from the FastGPT host to identify proxying behavior.
  • Inspect web application firewall logs for baseUrl parameters containing private IP ranges, link-local addresses, or cloud metadata hostnames.

Monitoring Recommendations

  • Forward FastGPT application and reverse-proxy logs to a centralized log platform for retention and search.
  • Monitor egress traffic from FastGPT hosts and baseline expected destinations so deviations trigger alerts.
  • Track FastGPT version inventory and flag any host running a release earlier than 4.14.9.5.

How to Mitigate CVE-2026-34162

Immediate Actions Required

  • Upgrade FastGPT to version 4.14.9.5 or later, available at the v4.14.9.5 release page.
  • Restrict network access to the FastGPT API so it is not reachable from untrusted networks until patching is complete.
  • Rotate any cloud IAM credentials, API tokens, or service account secrets accessible from the FastGPT host if exploitation is suspected.
  • Review FastGPT access and egress logs for prior abuse of the /api/core/app/httpTools/runTool endpoint.

Patch Information

The vulnerability is fixed in FastGPT version 4.14.9.5. The fix is implemented in commit bc7eae2ed61481a5e322208829be291faec58c00 and merged via pull request #6640. Refer to the GHSA-w36r-f268-pwrj advisory for vendor guidance.

Workarounds

  • Block external access to /api/core/app/httpTools/runTool at a reverse proxy or web application firewall until the upgrade is applied.
  • Place FastGPT behind an authenticating gateway that requires a valid session cookie or API key for all /api/core/* routes.
  • Apply egress filtering on the FastGPT host to deny outbound traffic to cloud metadata addresses such as 169.254.169.254 and to internal management networks.
bash
# Example NGINX configuration to block the vulnerable endpoint until patched
location = /api/core/app/httpTools/runTool {
    return 403;
}

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

  • SeverityCRITICAL

  • CVSS Score10.0

  • EPSS Probability0.22%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-306
  • Technical References
  • GitHub Release v4.14.9.5
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Pull Request #6640

  • GitHub Security Advisory GHSA-w36r-f268-pwrj
  • 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-40252: 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 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