Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-32871

CVE-2026-32871: FastMCP OpenAPIProvider SSRF Vulnerability

CVE-2026-32871 is an authenticated SSRF flaw in FastMCP's OpenAPIProvider that allows path traversal attacks to access arbitrary backend endpoints. This post explains its impact, affected versions, and mitigation steps.

Published: April 2, 2026

CVE-2026-32871 Overview

CVE-2026-32871 is a critical Server-Side Request Forgery (SSRF) vulnerability in FastMCP, a Python library for building MCP (Model Context Protocol) servers and clients. The vulnerability exists in the _build_url() method within the RequestDirector class of the OpenAPIProvider component. When processing OpenAPI specifications that define path parameters, the system fails to properly URL-encode parameter values before constructing HTTP requests, allowing attackers to inject directory traversal sequences and escape intended API prefixes.

Critical Impact

Attackers can exploit this path traversal flaw to perform authenticated SSRF attacks, accessing arbitrary backend endpoints with the authorization headers configured in the MCP provider, potentially leading to unauthorized data access or further exploitation of internal services.

Affected Products

  • FastMCP versions prior to 3.2.0
  • Applications using OpenAPIProvider with user-controllable path parameters
  • MCP servers exposing internal APIs through FastMCP's OpenAPI integration

Discovery Timeline

  • 2026-04-02 - CVE CVE-2026-32871 published to NVD
  • 2026-04-02 - Last updated in NVD database

Technical Details for CVE-2026-32871

Vulnerability Analysis

The vulnerability resides in FastMCP's OpenAPIProvider component, specifically within the RequestDirector class that handles HTTP request construction for backend API calls. When an OpenAPI specification defines operations with path parameters (e.g., /api/v1/users/{user_id}), the _build_url() method directly substitutes user-supplied parameter values into the URL template string without performing URL-encoding.

The core issue arises from the subsequent use of urllib.parse.urljoin() to resolve the final URL. Python's urljoin() function interprets ../ sequences as directory traversal instructions, treating them as legitimate path navigation rather than literal string values. This behavior, combined with the lack of input sanitization, creates an exploitable path traversal condition.

An attacker who controls a path parameter value can inject sequences like ../../../internal-api/admin to escape the intended API prefix (e.g., /api/v1/users/) and construct requests to arbitrary endpoints on the backend server. Since these requests are sent with the authorization headers configured in the MCP provider, this constitutes an authenticated SSRF vulnerability with significant impact potential.

Root Cause

The root cause is improper input validation and insufficient URL encoding in the _build_url() method. The method fails to sanitize or encode path parameter values before string interpolation, and Python's urllib.parse.urljoin() function inherently processes ../ sequences as path traversal. This combination allows user-controlled input to manipulate the final request destination, violating the principle that user input should never directly influence request routing without proper validation and encoding.

Attack Vector

This vulnerability is exploitable over the network by any attacker who can supply values for path parameters in API operations exposed through FastMCP's OpenAPIProvider. The attack requires no authentication to the FastMCP layer itself, though the SSRF requests will carry whatever authentication credentials are configured in the provider. An attacker would craft malicious parameter values containing ../ sequences to traverse out of the expected API path and target internal endpoints, potentially accessing sensitive resources, administrative interfaces, or cloud metadata services that would otherwise be unreachable.

Detection Methods for CVE-2026-32871

Indicators of Compromise

  • HTTP request logs showing path parameters containing ../ sequences or URL-encoded equivalents (%2e%2e%2f)
  • Backend access logs revealing requests to unexpected endpoints originating from the MCP server
  • Unusual patterns of internal API access from the FastMCP service account
  • Authentication token usage on endpoints outside the expected API scope

Detection Strategies

  • Implement web application firewall rules to detect and block path traversal patterns in API parameters
  • Monitor application logs for RequestDirector activity with suspicious path parameter values
  • Deploy network-level monitoring to detect unexpected internal service communications from MCP components
  • Use runtime application self-protection (RASP) solutions to identify path manipulation attempts

Monitoring Recommendations

  • Enable verbose logging for the OpenAPIProvider component to capture all URL construction activity
  • Set up alerts for any 4xx or 5xx responses from endpoints outside the configured API prefix
  • Monitor outbound network connections from FastMCP services for connections to internal IP ranges or cloud metadata endpoints
  • Implement audit logging for all requests processed by the RequestDirector class

How to Mitigate CVE-2026-32871

Immediate Actions Required

  • Upgrade FastMCP to version 3.2.0 or later immediately
  • Audit existing OpenAPI specifications for operations with path parameters that accept user input
  • Review backend access logs for evidence of exploitation attempts
  • Consider implementing additional input validation at the application layer as defense-in-depth

Patch Information

The vulnerability has been addressed in FastMCP version 3.2.0. The fix, implemented in commit 40bdfb6b1de0ce30609ee9ba5bb95ecd04a9fb71, properly URL-encodes path parameter values before URL construction, preventing path traversal sequences from being interpreted by urljoin(). Users should upgrade via pip: pip install fastmcp>=3.2.0. For more details, see the GitHub Security Advisory GHSA-vv7q-7jx5-f767 and the v3.2.0 release notes.

Workarounds

  • Implement input validation at the application layer to reject path parameters containing ../, ..\\, or URL-encoded traversal sequences
  • Deploy a reverse proxy or web application firewall in front of the MCP server to filter malicious requests
  • Restrict network egress from the FastMCP service to only explicitly required backend endpoints
  • If possible, avoid exposing OpenAPI operations with user-controllable path parameters until the upgrade is complete

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechFastmcp

  • SeverityCRITICAL

  • CVSS Score10.0

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:H/SI:H/SA:H/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
  • AvailabilityHigh
  • CWE References
  • CWE-918
  • Technical References
  • GitHub Commit Update

  • GitHub Pull Request #3507

  • GitHub Release v3.2.0

  • GitHub Security Advisory GHSA-vv7q-7jx5-f767
  • Related CVEs
  • CVE-2025-64340: FastMCP Command Injection Vulnerability

  • CVE-2026-27124: FastMCP OAuth Authentication Bypass Flaw
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now 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