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-2025-0454

CVE-2025-0454: Agpt Autogpt Platform SSRF Vulnerability

CVE-2025-0454 is a Server-Side Request Forgery flaw in Agpt Autogpt Platform affecting versions prior to v0.4.0. Attackers can bypass SSRF protections using crafted URLs. This post covers technical details, affected versions, impact, and mitigation.

Updated: May 11, 2026

CVE-2025-0454 Overview

CVE-2025-0454 is a Server-Side Request Forgery (SSRF) vulnerability in the Requests utility of significant-gravitas/autogpt versions prior to v0.4.0. The flaw stems from a hostname parsing inconsistency between Python's urlparse function in urllib.parse and the requests HTTP library. An attacker can submit a crafted URL such as http://localhost:\@google.com/../ to bypass the SSRF filter while still directing the underlying request to an internal host. The issue is tracked under [CWE-918] and affects the AutoGPT platform component used to fetch remote resources.

Critical Impact

Remote attackers can bypass URL allow-list checks to reach internal services, cloud metadata endpoints, and other resources reachable from the AutoGPT host.

Affected Products

  • significant-gravitas AutoGPT Platform versions prior to v0.4.0
  • AutoGPT backend Requests utility (autogpt_platform/backend)
  • Deployments exposing the AutoGPT request feature to untrusted input

Discovery Timeline

  • 2025-03-20 - CVE-2025-0454 published to the National Vulnerability Database
  • 2025-08-05 - Last updated in NVD database

Technical Details for CVE-2025-0454

Vulnerability Analysis

The Requests utility in AutoGPT performs an SSRF safety check by parsing the user-supplied URL with urllib.parse.urlparse and validating the extracted hostname against a deny list. The actual HTTP request is then issued via the requests library. These two parsers do not interpret authority components identically. A URL of the form http://localhost:\@google.com/../ causes urlparse to extract google.com as the hostname, passing the safety check. The requests library, however, resolves the authority differently and dispatches the connection to localhost. This parser differential allows attackers to reach loopback interfaces, link-local addresses, and internal-only services from the AutoGPT host.

Root Cause

The root cause is reliance on a non-canonical URL parser for security decisions while a different parser drives the actual network operation. RFC 3986 authority handling around userinfo, backslashes, and path traversal markers is implemented inconsistently across Python libraries, and the SSRF check did not normalize or re-validate the URL using the same library that performs the request.

Attack Vector

Exploitation requires only the ability to submit a URL to an AutoGPT workflow or agent action that invokes the vulnerable Requests utility. No authentication or user interaction is required on the target service. A malicious payload like http://localhost:\@169.254.169.254/latest/meta-data/ can target cloud instance metadata, internal admin panels, or unauthenticated services bound to loopback.

The upstream fix is applied in commit ff065cd24c2289878c0abdb9adbf91c305f0d70a, which hardens the SSRF check logic in the backend Requests utility. Source: significant-gravitas/autogpt commit ff065cd.

Detection Methods for CVE-2025-0454

Indicators of Compromise

  • Outbound HTTP requests from AutoGPT processes targeting 127.0.0.1, ::1, 169.254.169.254, or RFC1918 ranges
  • Application logs containing URLs with unusual authority constructs such as \@, %40, or embedded userinfo followed by external hostnames
  • Unexpected access to cloud metadata endpoints or internal admin services originating from the AutoGPT host

Detection Strategies

  • Inspect AutoGPT request logs for URLs whose urlparse hostname differs from the host actually contacted in egress telemetry
  • Alert on AutoGPT agents issuing requests to private IP ranges, loopback, or metadata IPs
  • Apply regex matching for suspicious URL patterns such as ://[^/]*[\\@] in user-submitted inputs

Monitoring Recommendations

  • Forward AutoGPT backend logs and host network flows to a centralized analytics pipeline for correlation
  • Baseline normal external destinations for AutoGPT agents and alert on deviations
  • Track process-to-destination mappings for the AutoGPT runtime to detect SSRF-driven internal pivots

How to Mitigate CVE-2025-0454

Immediate Actions Required

  • Upgrade significant-gravitas/autogpt to v0.4.0 or later, which includes commit ff065cd24c2289878c0abdb9adbf91c305f0d70a
  • Audit AutoGPT workflows that accept user-supplied URLs and restrict their use until patched
  • Rotate any cloud credentials reachable via instance metadata from hosts that ran vulnerable versions

Patch Information

The maintainers fixed the SSRF bypass in the AutoGPT backend. Apply the upstream patch from the GitHub commit ff065cd and update to a release that includes it. Additional context is available in the Huntr bounty listing.

Workarounds

  • Place AutoGPT behind an egress proxy that blocks loopback, link-local, and RFC1918 destinations
  • Run AutoGPT in a network namespace with no route to internal services or 169.254.169.254
  • Enforce strict URL allow-lists at the network layer rather than within the application
bash
# Example egress restriction using iptables to block metadata and internal ranges
iptables -A OUTPUT -m owner --uid-owner autogpt -d 169.254.169.254 -j REJECT
iptables -A OUTPUT -m owner --uid-owner autogpt -d 127.0.0.0/8 -j REJECT
iptables -A OUTPUT -m owner --uid-owner autogpt -d 10.0.0.0/8 -j REJECT
iptables -A OUTPUT -m owner --uid-owner autogpt -d 172.16.0.0/12 -j REJECT
iptables -A OUTPUT -m owner --uid-owner autogpt -d 192.168.0.0/16 -j REJECT

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechAgpt Autogpt Platform

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.10%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-918
  • Technical References
  • Huntr Bounty Listing
  • Vendor Resources
  • GitHub Commit Changes
  • Related CVEs
  • CVE-2025-22603: Agpt Autogpt Platform SSRF Vulnerability

  • CVE-2025-31491: AutoGPT Information Disclosure 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