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

CVE-2026-44286: FastGPT SSRF Vulnerability Explained

CVE-2026-44286 is a Server-Side Request Forgery vulnerability in FastGPT AI Agent platform allowing attackers to send arbitrary HTTP requests to internal networks. This article covers technical details, affected versions, and mitigations.

Published: May 18, 2026

CVE-2026-44286 Overview

CVE-2026-44286 is a Server-Side Request Forgery (SSRF) vulnerability in FastGPT, an AI Agent building platform. Versions prior to 4.14.17 expose the fetchData function in the lafModule workflow node to attacker-controlled URLs. The function uses axios to fetch remote resources without validating destinations against the internal network blocklist guard isInternalAddress. Unauthenticated attackers, or authenticated users with App editing privileges, can issue arbitrary HTTP requests to internal and private network addresses. The maintainers patched the issue in version 4.14.17.

Critical Impact

Attackers can probe internal services, cloud metadata endpoints, and private network resources by bypassing the application's SSRF blocklist.

Affected Products

  • FastGPT versions prior to 4.14.17
  • FastGPT lafModule workflow node component
  • Deployments exposing the FastGPT workflow execution API

Discovery Timeline

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

Technical Details for CVE-2026-44286

Vulnerability Analysis

The vulnerability is classified as Server-Side Request Forgery [CWE-918]. FastGPT exposes a workflow node named lafModule that allows operators to integrate external HTTP endpoints into AI agent workflows. Inside this node, the fetchData function accepts a URL parameter and forwards it to the axios HTTP client.

FastGPT ships a centralized SSRF guard, isInternalAddress, that maintains a blocklist of internal and private IP ranges. Other request paths route through this guard before dispatching outbound traffic. The fetchData function does not call isInternalAddress, so requests skip the blocklist check entirely.

The EPSS score is 0.043% with a percentile of 13.293, reflecting low observed exploitation activity. The impact remains relevant for deployments that expose FastGPT to untrusted users or that run in cloud environments with instance metadata services reachable from the application host.

Root Cause

The root cause is missing input validation on the URL passed to axios inside fetchData. The function trusts user-supplied workflow configuration and does not enforce the application's documented SSRF policy. Centralized protections exist elsewhere in the codebase but were not applied to this code path.

Attack Vector

An attacker creates or edits a workflow that includes a lafModule node configured with a URL targeting an internal resource. Examples include http://127.0.0.1, http://169.254.169.254/latest/meta-data/ for cloud instance metadata, or RFC1918 addresses such as http://10.0.0.1. When the workflow executes, FastGPT issues the request from the server, returning response data to the attacker. The advisory indicates the issue is reachable by unauthenticated attackers in some configurations and by any authenticated user with App editing privileges.

No public proof-of-concept code has been published. Refer to the GitHub Security Advisory GHSA-xpx6-xcpf-76qg for vendor details.

Detection Methods for CVE-2026-44286

Indicators of Compromise

  • Outbound HTTP requests from the FastGPT process to RFC1918 addresses, 127.0.0.0/8, or 169.254.169.254
  • Workflow definitions containing lafModule nodes with URLs pointing to internal hostnames or private IP ranges
  • Unexpected access patterns to cloud instance metadata endpoints originating from FastGPT hosts

Detection Strategies

  • Inspect FastGPT workflow configurations for lafModule nodes referencing private IPs, loopback addresses, or cloud metadata URLs
  • Enable application-level logging for outbound axios requests and correlate with workflow execution IDs
  • Deploy egress filtering at the network edge and alert on FastGPT-originated traffic destined for internal subnets

Monitoring Recommendations

  • Forward FastGPT application and proxy logs to a centralized analytics platform and search for anomalous internal destinations
  • Monitor cloud audit logs for instance metadata access from application workloads that should not require it
  • Track workflow creation and edit events to identify accounts modifying lafModule configurations

How to Mitigate CVE-2026-44286

Immediate Actions Required

  • Upgrade FastGPT to version 4.14.17 or later using the FastGPT v4.14.17 release notes
  • Restrict App editing privileges to trusted users until the upgrade is complete
  • Block FastGPT egress traffic to internal address ranges and cloud metadata endpoints at the network layer

Patch Information

The maintainers released the fix in FastGPT 4.14.17. The patch applies the isInternalAddress blocklist guard to the fetchData function in the lafModule workflow node, rejecting URLs that resolve to private or loopback ranges before the request is dispatched.

Workarounds

  • Place FastGPT behind an egress proxy that denies traffic to RFC1918 ranges, loopback, and link-local addresses including 169.254.169.254
  • Run FastGPT in a network segment without routes to sensitive internal services or metadata APIs
  • Disable the lafModule workflow node in deployments that do not require external HTTP integrations
bash
# Example egress restriction using iptables to block cloud metadata access
iptables -A OUTPUT -m owner --uid-owner fastgpt -d 169.254.169.254 -j DROP
iptables -A OUTPUT -m owner --uid-owner fastgpt -d 10.0.0.0/8 -j DROP
iptables -A OUTPUT -m owner --uid-owner fastgpt -d 172.16.0.0/12 -j DROP
iptables -A OUTPUT -m owner --uid-owner fastgpt -d 192.168.0.0/16 -j DROP

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechFastgpt

  • SeverityLOW

  • CVSS Score2.3

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:L/UI:N/VC:N/VI:L/VA:N/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
  • AvailabilityNone
  • CWE References
  • CWE-918
  • Technical References
  • GitHub FastGPT Release v4.14.17

  • GitHub Security Advisory GHSA-xpx6-xcpf-76qg
  • Related CVEs
  • CVE-2026-44284: FastGPT MCP Tool SSRF Vulnerability

  • 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