banner logoJoin us at RSAC™ 2026 Conference, March 23–March 26 | North Expo, Booth N-5863Join us at RSAC™ 2026, March 23–March 26Learn More
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI Security Portfolio
      Leading the Way in AI-Powered Security Solutions
    • 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
    • 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
      Digital Forensics, IRR & Breach Readiness
    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
    • 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-11563

CVE-2025-11563: Curl Wcurl Path Traversal Vulnerability

CVE-2025-11563 is a path traversal vulnerability in Curl Wcurl that allows attackers to save files outside the current directory using percent-encoded slashes. This article covers technical details, affected versions, and mitigations.

Published: February 27, 2026

CVE-2025-11563 Overview

CVE-2025-11563 is a path traversal vulnerability affecting the wcurl command line tool. URLs containing percent-encoded slashes (/ or \) can trick wcurl into saving output files outside of the current directory without explicit user consent. This vulnerability allows attackers to potentially overwrite arbitrary files on the system by manipulating URL paths with encoded directory traversal sequences.

Critical Impact

Attackers can exploit percent-encoded slashes in URLs to write files to arbitrary locations outside the intended working directory, potentially leading to file overwrite attacks or unauthorized file creation.

Affected Products

  • curl wcurl (all versions prior to patch)
  • haxx curl

Discovery Timeline

  • 2025-02-25 - CVE CVE-2025-11563 published to NVD
  • 2025-02-26 - Last updated in NVD database

Technical Details for CVE-2025-11563

Vulnerability Analysis

This vulnerability is classified as CWE-22 (Path Traversal), a weakness where the application fails to properly neutralize special elements in pathnames that could resolve to locations outside of a restricted directory. The wcurl command line tool processes URLs to determine output file paths, but does not adequately decode and validate percent-encoded characters before constructing the destination file path.

When a user provides a URL to wcurl, the tool extracts the filename component for saving the downloaded content. However, if the URL contains percent-encoded directory traversal sequences such as %2F (forward slash) or %5C (backslash), wcurl fails to recognize these as path separators. After decoding, these characters are interpreted by the filesystem, allowing the output file to be written outside the current working directory.

The attack requires network access and user interaction, as a victim must be tricked into running wcurl with a malicious URL. However, the low privilege requirements mean any user running wcurl could be affected.

Root Cause

The root cause of this vulnerability lies in insufficient input validation and improper handling of percent-encoded characters in URL parsing. The wcurl tool decodes URL-encoded characters after determining the output path rather than before, creating a mismatch between the perceived safe filename and the actual path used by the filesystem. This allows encoded path traversal sequences to bypass security checks while still being interpreted as directory separators when the file is written.

Attack Vector

An attacker can craft a malicious URL containing percent-encoded path traversal sequences such as ..%2F or %2E%2E%5C that appear benign to wcurl's initial validation but resolve to parent directories when decoded. When a user executes wcurl with this crafted URL, the output file is written to an attacker-controlled location outside the intended download directory.

The attack scenario involves convincing a user to download content using wcurl with an attacker-controlled URL. This could occur through phishing, malicious documentation, or compromised package instructions. The vulnerability enables writing files to sensitive locations such as configuration directories or user startup scripts.

Detection Methods for CVE-2025-11563

Indicators of Compromise

  • Unexpected files appearing in directories outside normal wcurl download locations
  • Files with unusual names containing decoded path separators in system directories
  • Audit logs showing wcurl processes writing to sensitive system paths
  • Configuration files or scripts modified with unexpected content after wcurl operations

Detection Strategies

  • Monitor file system activity for wcurl processes writing outside their working directory
  • Implement command-line argument logging to capture URLs containing percent-encoded sequences like %2F, %2E%2E, or %5C
  • Review security logs for signs of path traversal attempts in download tool operations
  • Deploy endpoint detection rules that flag wcurl executions followed by file writes to system directories

Monitoring Recommendations

  • Enable comprehensive process auditing on systems where wcurl is commonly used
  • Configure file integrity monitoring on sensitive directories to detect unauthorized writes
  • Implement network monitoring to identify connections to suspicious URLs containing encoded path sequences

How to Mitigate CVE-2025-11563

Immediate Actions Required

  • Update wcurl to the latest patched version as recommended by the curl project
  • Audit recent wcurl usage for any suspicious URLs containing percent-encoded characters
  • Review file system changes in sensitive directories following any wcurl operations
  • Consider temporarily restricting wcurl usage until patches are applied

Patch Information

The curl project has released security advisories and patches addressing this vulnerability. Administrators should consult the cURL CVE-2025-11563 Documentation for official patch information and upgrade instructions. Debian users should refer to the Debian Release Note for distribution-specific updates.

Workarounds

  • Manually inspect all URLs for percent-encoded characters before using with wcurl
  • Use the -o flag to explicitly specify output file paths rather than relying on URL-derived filenames
  • Implement wrapper scripts that validate and sanitize URLs before passing them to wcurl
  • Consider using alternative download tools with proper path traversal protections until wcurl is updated
bash
# Safe download practice: explicitly specify output path
wcurl -o ./safe_download_directory/filename.ext "https://example.com/file"

# Validate URLs before use - check for encoded traversal sequences
echo "$URL" | grep -qE '%2[Ff]|%2[Ee]|%5[Cc]' && echo "Warning: URL contains suspicious encoded characters"

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechCurl

  • SeverityMEDIUM

  • CVSS Score4.6

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-22
  • Technical References
  • Openwall OSS-Security Discussion
  • Vendor Resources
  • cURL CVE-2025-11563 Documentation

  • cURL CVE-2025-11563 JSON Output

  • Debian Release Note
  • Related CVEs
  • CVE-2022-42916: Haxx Curl HSTS Auth Bypass Vulnerability

  • CVE-2025-15224: curl SSH Auth Bypass Vulnerability

  • CVE-2025-13034: libcurl Information Disclosure Vulnerability

  • CVE-2025-14524: curl OAuth2 Token Disclosure Vulnerability
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
  • English
  • 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