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

CVE-2026-6253: Haxx Curl Information Disclosure Flaw

CVE-2026-6253 is an information disclosure vulnerability in Haxx Curl where credentials for one proxy may be erroneously passed to another. This article covers technical details, affected versions, and mitigation.

Published: May 17, 2026

CVE-2026-6253 Overview

CVE-2026-6253 is a credential leakage vulnerability in curl, the widely deployed command-line tool and libcurl library used for network transfers. The flaw causes curl to forward credentials configured for one proxy to a second, unrelated proxy under specific redirect conditions. The issue is tracked under CWE-522: Insufficiently Protected Credentials and disclosed through the cURL CVE-2026-6253 Documentation.

Critical Impact

Authenticated proxy credentials can leak to a different proxy server during cross-scheme HTTP redirects, exposing sensitive authentication material to unintended network endpoints.

Affected Products

  • Haxx curl (command-line tool)
  • libcurl (library binding for applications)
  • Applications and scripts using curl with scheme-specific proxy configurations

Discovery Timeline

  • 2026-05-13 - CVE-2026-6253 published to NVD
  • 2026-05-14 - Last updated in NVD database

Technical Details for CVE-2026-6253

Vulnerability Analysis

The vulnerability arises when curl is configured to use distinct proxies for different URL schemes. If the initial request routes through a proxy that requires credentials, and the server responds with a redirect to a URL using a different scheme, curl selects the second proxy associated with that scheme. Curl then incorrectly attaches the credentials intended for the first proxy to requests sent through the second proxy.

The second proxy may belong to a different administrative domain or operate without authentication entirely. Once forwarded, the credentials are exposed in Proxy-Authorization headers transmitted to an unintended endpoint. An operator of the second proxy, or any party able to observe traffic to it, can capture the credentials.

The issue is classified under CWE-522, reflecting insufficient protection of authentication material across trust boundaries.

Root Cause

The defect lies in curl's proxy selection and credential propagation logic during redirect handling. The code does not reset or scope the cached proxy credentials when the redirect target triggers selection of a different proxy. Credentials remain attached to the transfer handle and are reused without verifying that the destination proxy is the same one for which they were originally supplied.

Attack Vector

Exploitation requires four conditions to align simultaneously: scheme-specific proxy configuration, credentials on the first proxy, no credentials on the second proxy, and a redirect across schemes. An attacker controlling a target web server can issue a crafted redirect from http:// to https:// (or vice versa) to force curl to switch proxies. If the attacker also controls or observes the second proxy, captured Proxy-Authorization headers yield the first proxy's credentials.

The vulnerability requires no user interaction and is exploitable over the network, though the high attack complexity reflects the narrow set of preconditions. Refer to the HackerOne Report #3669637 for additional technical detail.

Detection Methods for CVE-2026-6253

Indicators of Compromise

  • Unexpected Proxy-Authorization headers observed in traffic destined for proxies that do not require authentication.
  • curl client logs showing scheme transitions during redirect chains while multiple proxy environment variables are set (HTTP_PROXY, HTTPS_PROXY).
  • Authentication attempts logged on proxies for accounts that should not transit through them.

Detection Strategies

  • Inspect outbound proxy traffic for Proxy-Authorization headers sent to proxies configured without authentication requirements.
  • Audit curl and libcurl usage across automation, CI/CD pipelines, and scripts for combinations of --proxy, --proxy-user, and scheme-specific proxy variables.
  • Review proxy access logs for credentialed requests originating immediately after cross-scheme redirects.

Monitoring Recommendations

  • Enable verbose curl logging (-v or CURLOPT_VERBOSE) in test environments to validate proxy behavior across redirects.
  • Forward proxy server access logs to a centralized analytics platform and alert on anomalous authentication events.
  • Track installed curl and libcurl versions across the fleet to identify hosts running vulnerable releases.

How to Mitigate CVE-2026-6253

Immediate Actions Required

  • Upgrade curl and libcurl to the fixed version identified in the cURL CVE-2026-6253 Documentation.
  • Rotate any proxy credentials that may have been exposed through cross-scheme redirects.
  • Audit applications that rely on scheme-specific proxy configurations and disable redirect following where it is not strictly required.

Patch Information

The curl maintainers published the official advisory and remediation details at the cURL CVE-2026-6253 Documentation and structured data at the cURL CVE-2026-6253 JSON Data. Additional context is available on the Openwall OSS-Security Discussion. Apply the upstream patch or upgrade to a distribution package that incorporates the fix.

Workarounds

  • Disable redirect following by removing -L / --location or setting CURLOPT_FOLLOWLOCATION to 0 until patches are applied.
  • Use a single proxy for all schemes when authentication is required, eliminating the scheme-switch condition.
  • Limit CURLOPT_REDIR_PROTOCOLS to restrict cross-scheme redirects.
bash
# Configuration example: disable redirects and constrain protocols
curl --proxy http://user:pass@proxy1.example.com:3128 \
     --no-location \
     --proto-redir =http,https \
     https://target.example.com/resource

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechHaxx Curl

  • SeverityMEDIUM

  • CVSS Score5.9

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-522
  • Technical References
  • HackerOne Report #3669637
  • Vendor Resources
  • cURL CVE-2026-6253 Documentation

  • cURL CVE-2026-6253 JSON Data

  • Openwall OSS-Security Discussion
  • Related CVEs
  • CVE-2026-6276: Haxx Curl Information Disclosure Flaw

  • CVE-2026-6429: Haxx Curl Information Disclosure Flaw

  • CVE-2026-7009: Haxx Curl Information Disclosure Flaw

  • CVE-2026-3783: Haxx Curl Information Disclosure Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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