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

CVE-2026-44284: FastGPT MCP Tool SSRF Vulnerability

CVE-2026-44284 is an SSRF flaw in FastGPT that allows authenticated users to store internal URLs in MCP tools, bypassing validation. This post explains its impact, affected versions, and mitigation steps.

Published: May 18, 2026

CVE-2026-44284 Overview

FastGPT is an AI Agent building platform affected by a Server-Side Request Forgery (SSRF) vulnerability [CWE-918] in its Model Context Protocol (MCP) tool URL handling. Prior to version 4.14.17, the application enforced SSRF protections on direct MCP preview and run endpoints but failed to validate URLs supplied to the MCP tool create and update endpoints. An authenticated user with permission to manage MCP toolsets could persist an internal endpoint such as http://localhost:3000/mcp. The stored URL was later consumed by the workflow runner without revalidation, causing the FastGPT backend to issue requests to internal destinations.

Critical Impact

Authenticated users can pivot the FastGPT backend into internal network services through stored MCP tool URLs, bypassing perimeter SSRF controls.

Affected Products

  • FastGPT versions prior to 4.14.17
  • FastGPT MCP toolset create and update endpoints
  • FastGPT workflow runner consuming stored MCP URLs

Discovery Timeline

  • 2026-05-08 - CVE-2026-44284 published to NVD
  • 2026-05-12 - Last updated in NVD database

Technical Details for CVE-2026-44284

Vulnerability Analysis

The vulnerability is an inconsistent SSRF protection gap in FastGPT's MCP integration. The direct MCP preview and run endpoints already rejected internal and private network URLs at request time. However, the create and update endpoints for MCP toolsets did not apply the same validation, allowing internal URLs to be persisted to storage. When workflow execution later loaded the stored tool definition, no revalidation was performed before connecting to the destination. This time-of-check / time-of-use gap converts the validation oversight into a stored SSRF primitive usable across workflow runs.

Root Cause

The root cause is missing centralized URL validation in the MCP tool persistence path. The function responsible for asserting that an MCP URL was not internal was only invoked on preview and run flows, not on create, update, or downstream workflow dispatch. The fix introduces a shared assertMCPUrlNotInternal helper in packages/service/core/app/mcp.ts and invokes it from the workflow tool dispatcher.

Attack Vector

An authenticated user with permission to create or manage MCP toolsets submits a tool definition pointing to an internal address such as http://localhost:3000/mcp or a private RFC1918 host. The URL is accepted and stored. When the toolset is referenced by an agent workflow, the FastGPT backend connects to the internal endpoint on the user's behalf, returning response data into the workflow context.

typescript
// Patch: packages/service/core/app/mcp.ts
 import { UserError } from '@fastgpt/global/common/error/utils';
 import $RefParser from '@apidevtools/json-schema-ref-parser';
 import { getLogger, LogCategories } from '../../common/logger';
+import { isInternalAddress, PRIVATE_URL_TEXT } from '../../common/system/utils';

 const logger = getLogger(LogCategories.MODULE.APP.MCP_TOOLS);

+export const assertMCPUrlNotInternal = async (url: string) => {
+  if (await isInternalAddress(url)) {
+    return Promise.reject(PRIVATE_URL_TEXT);
+  }
+};

 export class MCPClient {
   private client: Client;
   private url: string;

Source: GitHub Commit c1c6b95

The workflow dispatcher was updated to import and call the new assertion before dispatching the tool, closing the revalidation gap in packages/service/core/workflow/dispatch/ai/agent/sub/tool/index.ts.

Detection Methods for CVE-2026-44284

Indicators of Compromise

  • Stored MCP tool definitions referencing localhost, 127.0.0.1, ::1, 169.254.169.254, or RFC1918 ranges (10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16).
  • FastGPT backend outbound connections to internal hosts originating from the workflow runner process.
  • MCP toolset create or update API calls submitted by non-administrator accounts containing internal hostnames.

Detection Strategies

  • Audit the MCP toolset collection in FastGPT's database and flag any url field resolving to a private, loopback, or link-local address.
  • Review application logs for MCP tool create and update events occurring before the upgrade to 4.14.17.
  • Inspect egress firewall logs for FastGPT backend connections targeting internal infrastructure that are not part of expected integrations.

Monitoring Recommendations

  • Enable egress traffic monitoring on the FastGPT backend host and restrict outbound destinations to an allow list.
  • Forward FastGPT application and API access logs to a centralized log platform for retention and rule-based alerting on MCP endpoint activity.
  • Alert on workflow executions that resolve MCP URLs to internal IP space.

How to Mitigate CVE-2026-44284

Immediate Actions Required

  • Upgrade FastGPT to version 4.14.17 or later, which introduces the assertMCPUrlNotInternal validation across persistence and dispatch paths.
  • Audit existing MCP toolsets and remove or update any tool URL pointing to internal, loopback, or metadata service addresses.
  • Restrict the role or permission that allows creating and managing MCP toolsets to trusted administrators.

Patch Information

The fix is delivered in FastGPT v4.14.17 via Pull Request #6826 and commit c1c6b95. Full advisory details are available in GHSA-cxxj-99f7-f5wq.

Workarounds

  • Place the FastGPT backend behind an egress proxy that denies connections to loopback, link-local, and RFC1918 destinations.
  • Temporarily disable the MCP tool create and update endpoints for non-administrative users until the upgrade is applied.
  • Manually purge any stored MCP tool entries whose URL resolves to an internal address before re-enabling workflows.
bash
# Upgrade FastGPT to the patched release
docker pull ghcr.io/labring/fastgpt:v4.14.17
docker compose down
docker compose up -d

# Verify version
curl -s http://<fastgpt-host>/api/common/system/getInitData | grep -i version

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechFastgpt

  • SeverityMEDIUM

  • CVSS Score6.3

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-918
  • Technical References
  • GitHub Commit Update

  • GitHub Pull Request

  • GitHub Release v4.14.17

  • GitHub Security Advisory GHSA-cxxj-99f7-f5wq
  • Related CVEs
  • CVE-2026-44286: FastGPT SSRF Vulnerability Explained

  • CVE-2026-40100: FastGPT SSRF Vulnerability

  • CVE-2026-34163: Fastgpt Fastgpt SSRF Vulnerability

  • CVE-2026-42302: FastGPT Agent-Sandbox 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