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-2024-11168

CVE-2024-11168: urllib.parse SSRF Vulnerability

CVE-2024-11168 is an SSRF flaw in urllib.parse's urlsplit() and urlparse() functions that improperly validate bracketed hosts, potentially enabling server-side request forgery attacks when URLs are processed by multiple parsers.

Updated: January 22, 2026

CVE-2024-11168 Overview

CVE-2024-11168 is a Server-Side Request Forgery (SSRF) vulnerability in Python's urllib.parse module. The urlsplit() and urlparse() functions improperly validated bracketed hosts ([]), allowing hosts that weren't IPv6 or IPvFuture addresses. This behavior was not conformant to RFC 3986 and potentially enabled SSRF attacks when a URL is processed by more than one URL parser.

Critical Impact

Applications using Python's urllib.parse functions to validate or parse URLs may be vulnerable to SSRF attacks, allowing attackers to bypass security controls and access internal resources or services that should not be directly accessible.

Affected Products

  • Python Standard Library (urllib.parse module)
  • Applications using urllib.parse.urlsplit() or urllib.parse.urlparse() for URL validation
  • Systems relying on Python URL parsing for security-critical decisions

Discovery Timeline

  • 2024-11-12 - CVE-2024-11168 published to NVD
  • 2025-11-03 - Last updated in NVD database

Technical Details for CVE-2024-11168

Vulnerability Analysis

This vulnerability exists in Python's urllib.parse module, specifically in the urlsplit() and urlparse() functions. According to RFC 3986, bracketed notation ([]) in the host component of a URL should only be used for IPv6 addresses or IPvFuture literals. However, the affected Python functions failed to properly enforce this requirement, accepting arbitrary content within brackets as valid host components.

The improper validation creates a dangerous scenario in multi-parser environments. When a URL passes through Python's urllib.parse for validation and then gets processed by another URL parser with different parsing behavior, an attacker can craft malicious URLs that bypass security checks. The first parser may accept the URL as pointing to an allowed destination, while the second parser interprets it differently, redirecting requests to internal or malicious endpoints.

This type of parser differential vulnerability is particularly dangerous in web applications that implement URL whitelisting or blocklisting, proxy services, and any system that validates URLs before making outbound requests.

Root Cause

The root cause is insufficient input validation in the host parsing logic of urllib.parse.urlsplit() and urllib.parse.urlparse(). The functions accepted bracketed hosts containing arbitrary content rather than strictly validating that bracketed content conforms to IPv6 address or IPvFuture literal formats as specified in RFC 3986 Section 3.2.2.

Attack Vector

The attack vector is network-based and exploits the parsing inconsistency between Python's urllib.parse and other URL parsers. An attacker can craft a URL with a malformed bracketed host component that:

  1. Passes validation by Python's urllib.parse as an ostensibly safe URL
  2. Gets reinterpreted by a downstream URL parser or HTTP client to target a different destination
  3. Results in requests being sent to internal services, metadata endpoints, or other restricted resources

The vulnerability enables SSRF attacks where applications that use urllib.parse to validate URLs before making requests can be tricked into accessing unintended destinations. This is particularly impactful in cloud environments where internal metadata services (such as 169.254.169.254) may be accessible.

Detection Methods for CVE-2024-11168

Indicators of Compromise

  • Unusual outbound requests to internal IP ranges or metadata endpoints from application servers
  • Web application logs showing URLs with unusual bracketed host components (e.g., http://[malicious]@target/)
  • Network traffic to internal services originating from components that should only make external requests
  • Evidence of data exfiltration from cloud metadata services or internal APIs

Detection Strategies

  • Audit Python applications for usage of urllib.parse.urlsplit() or urllib.parse.urlparse() in URL validation workflows
  • Implement network monitoring to detect outbound requests to internal IP ranges from web-facing applications
  • Review application logs for URLs containing unusual bracketed host patterns
  • Deploy web application firewall (WAF) rules to detect and block SSRF attack patterns

Monitoring Recommendations

  • Monitor outbound connections from application servers for requests to RFC 1918 private address ranges and cloud metadata endpoints
  • Implement logging for all URL parsing operations in security-sensitive contexts
  • Set up alerts for Python applications making requests to destinations that differ from initially validated URLs
  • Track egress traffic patterns for anomalies indicating potential SSRF exploitation

How to Mitigate CVE-2024-11168

Immediate Actions Required

  • Update Python to a patched version that includes the security fix for CVE-2024-11168
  • Audit applications for URL parsing workflows that may be vulnerable to SSRF attacks
  • Implement additional URL validation beyond urllib.parse to verify host components conform to expected formats
  • Configure network-level controls to restrict outbound access from application servers to internal resources

Patch Information

The Python security team has released patches to address this vulnerability. Multiple commits have been applied to the CPython repository to fix the improper URL parsing behavior:

  • CPython Commit 29f348e
  • CPython Commit 634ded4
  • CPython Commit b2171a2
  • CPython Commit ddca295

For detailed information, refer to GitHub Issue #103848, GitHub PR #103849, and the Python Security Mailing List Thread. Debian users should consult the Debian LTS Announcement, and NetApp customers can review the NetApp Security Advisory.

Workarounds

  • Implement strict RFC 3986 compliant URL validation before passing URLs to urllib.parse functions
  • Add application-level checks to verify that parsed hostnames match expected patterns and do not contain arbitrary bracketed content
  • Deploy network segmentation to prevent application servers from accessing internal services directly
  • Use allowlists for permitted destination hosts rather than relying solely on URL parsing for security
bash
# Example: Restrict outbound access using iptables
# Block access to internal networks from application servers
iptables -A OUTPUT -d 10.0.0.0/8 -j DROP
iptables -A OUTPUT -d 172.16.0.0/12 -j DROP
iptables -A OUTPUT -d 192.168.0.0/16 -j DROP
iptables -A OUTPUT -d 169.254.169.254 -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/TechN/A

  • SeverityMEDIUM

  • CVSS Score6.3

  • EPSS Probability0.47%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:H/AT:P/PR:N/UI:N/VC:N/VI:L/VA:N/SC:N/SI:L/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:N/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-918
  • Technical References
  • GitHub CPython Commit Update

  • GitHub CPython Commit Update

  • GitHub CPython Commit Update

  • GitHub CPython Commit Update

  • GitHub Issue #103848

  • GitHub PR #103849

  • Python Security Mailing List Thread

  • Debian LTS Announcement

  • NetApp Security Advisory NTAP-20250411-0004
  • Latest CVEs
  • CVE-2025-11419: Keycloak TLS DoS Vulnerability

  • CVE-2025-13947: WebKitGTK Information Disclosure Flaw

  • CVE-2026-40322: SiYuan Knowledge Management RCE Vulnerability

  • CVE-2026-40318: SiYuan Path Traversal 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