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

CVE-2026-2975: FastAPI Admin Information Disclosure Flaw

CVE-2026-2975 is an information disclosure vulnerability in FastAPI Admin affecting versions up to 2.2.0. Attackers can exploit the reset_api_docs function remotely. This article covers technical details, impact, and mitigation.

Published: February 27, 2026

CVE-2026-2975 Overview

A security flaw has been discovered in FastAPI-Admin up to version 2.2.0. This vulnerability affects the function reset_api_docs within the file /backend/app/plugin/init_app.py of the Custom Documentation Endpoint component. The manipulation of this function results in information disclosure, allowing attackers to potentially access sensitive application data. The attack can be performed remotely without authentication, and exploit code has been publicly released.

Critical Impact

Remote attackers can exploit this information disclosure vulnerability to access sensitive documentation and internal application details through the Custom Documentation Endpoint without authentication.

Affected Products

  • FastAPI-Admin version 2.0
  • FastAPI-Admin version 2.1
  • FastAPI-Admin version 2.2.0

Discovery Timeline

  • February 23, 2026 - CVE-2026-2975 published to NVD
  • February 24, 2026 - Last updated in NVD database

Technical Details for CVE-2026-2975

Vulnerability Analysis

This vulnerability is classified as an Information Disclosure issue (CWE-200: Exposure of Sensitive Information to an Unauthorized Actor). The flaw resides in the reset_api_docs function within the Custom Documentation Endpoint component of FastAPI-Admin.

The vulnerability allows remote attackers to access sensitive information through the documentation endpoint without proper authorization checks. Since FastAPI-Admin is commonly used as an administrative backend for FastAPI applications, exposure of API documentation could reveal sensitive endpoint structures, authentication mechanisms, and internal application logic to unauthorized parties.

The attack requires no authentication or special privileges, and can be executed remotely over the network. While the vulnerability does not allow data modification or denial of service, the information exposed could be leveraged for further attacks against the application.

Root Cause

The root cause of this vulnerability lies in improper access control implementation within the reset_api_docs function located in /backend/app/plugin/init_app.py. The Custom Documentation Endpoint fails to properly validate user authorization before exposing API documentation content, allowing unauthenticated access to potentially sensitive internal documentation.

Attack Vector

The attack vector for CVE-2026-2975 is network-based, requiring no prior authentication or user interaction. An attacker can remotely access the vulnerable documentation endpoint to retrieve sensitive information about the application's API structure and configuration.

The exploitation process involves sending requests to the Custom Documentation Endpoint where the reset_api_docs function processes the request without adequate authorization validation, subsequently disclosing internal API documentation to the attacker.

For detailed technical information regarding the exploitation methodology, refer to the GitHub Vulnerability PoC published by the security researcher.

Detection Methods for CVE-2026-2975

Indicators of Compromise

  • Unexpected or unauthorized access attempts to API documentation endpoints
  • Unusual HTTP request patterns targeting /backend/app/plugin/ paths
  • Anomalous traffic from external IP addresses accessing documentation endpoints
  • Log entries showing unauthenticated access to custom documentation routes

Detection Strategies

  • Monitor web server access logs for requests to the Custom Documentation Endpoint from unauthorized sources
  • Implement alerting for repeated access attempts to documentation paths from unknown IP addresses
  • Deploy web application firewall (WAF) rules to detect and block suspicious documentation endpoint access patterns
  • Review authentication logs for anomalies around the reset_api_docs functionality

Monitoring Recommendations

  • Enable detailed logging for all API documentation endpoint access
  • Configure SIEM rules to alert on unauthorized documentation retrieval attempts
  • Implement network monitoring for outbound data that may indicate successful information exfiltration
  • Regularly audit access logs for the /backend/app/plugin/init_app.py functionality

How to Mitigate CVE-2026-2975

Immediate Actions Required

  • Restrict access to the Custom Documentation Endpoint through network controls or web server configuration
  • Implement authentication requirements for all documentation endpoints
  • Disable or remove the custom documentation functionality if not required in production environments
  • Review and audit current access logs for signs of prior exploitation

Patch Information

At the time of this advisory, no official patch has been released by the vendor. Organizations using FastAPI-Admin versions 2.0, 2.1, or 2.2.0 should implement the workarounds described below and monitor for vendor security updates. Additional vulnerability details are available at VulDB #347359.

Workarounds

  • Implement authentication middleware to protect the Custom Documentation Endpoint
  • Configure network-level access controls to restrict documentation endpoint access to trusted IP addresses only
  • Disable the reset_api_docs functionality in production deployments
  • Deploy a reverse proxy with authentication in front of the FastAPI-Admin application
bash
# Example: Restrict documentation endpoint access via nginx
location /docs {
    allow 10.0.0.0/8;     # Allow internal network
    allow 192.168.0.0/16; # Allow private network
    deny all;              # Deny all other access
    
    # Require basic authentication
    auth_basic "Restricted Documentation";
    auth_basic_user_file /etc/nginx/.htpasswd;
}

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechFastapi

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/SI:N/SA:N/E:P/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-200

  • NVD-CWE-noinfo
  • Technical References
  • GitHub Vulnerability PoC

  • VulDB CTI ID #347359

  • VulDB #347359

  • VulDB Submission #756067
  • Related CVEs
  • CVE-2026-23996: FastAPI Api Key Timing Attack Vulnerability

  • CVE-2021-32677: Tiangolo FastAPI CSRF Vulnerability
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