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

CVE-2026-7168: Haxx Curl Auth Bypass Vulnerability

CVE-2026-7168 is an authentication bypass flaw in Haxx Curl that causes libcurl to wrongly send Digest authentication credentials to unintended proxy servers. This article covers technical details, affected versions, and mitigation.

Published: May 17, 2026

CVE-2026-7168 Overview

CVE-2026-7168 is a credential leakage vulnerability in libcurl affecting HTTP proxy Digest authentication. When an application reuses a curl handle to perform a second transfer through a different proxy, libcurl incorrectly forwards the Proxy-Authorization: header generated for the original proxy (proxyA) to the new proxy host (proxyB). This exposes proxy credentials to an unintended endpoint, classified under [CWE-294] Authentication Bypass by Capture-replay.

The issue is network-exploitable and requires no privileges or user interaction, though impact is limited to confidentiality of the proxy credential material.

Critical Impact

Proxy Digest credentials intended for one HTTP proxy can be leaked to a second proxy host when a curl handle is reused, enabling capture and potential replay by the unintended proxy.

Affected Products

  • Haxx curl (libcurl library)
  • Applications linking against vulnerable libcurl versions that reuse handles across proxies
  • Tools and SDKs embedding libcurl for HTTP proxy transfers with Digest authentication

Discovery Timeline

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

Technical Details for CVE-2026-7168

Vulnerability Analysis

The defect resides in libcurl's handle state management for HTTP proxy authentication. After a successful Digest authentication negotiation with proxyA, libcurl retains the computed Proxy-Authorization: header on the easy handle. When the application changes CURLOPT_PROXY to proxyB and reuses that handle for a subsequent transfer, libcurl emits the cached header value to the new proxy without validating that the proxy host has changed.

The header contains a Digest response hash derived from the user's proxy credentials, the realm advertised by proxyA, and a nonce. Although Digest is not a cleartext credential, the leaked header gives proxyB material useful for offline analysis, replay attacks against proxyA, or correlation of user activity across infrastructure.

Root Cause

The root cause is improper invalidation of cached authentication state when the proxy target changes between transfers on a reused handle. libcurl treats the previously computed Proxy-Authorization data as still valid rather than recomputing or clearing it when the proxy host differs from the one that issued the original challenge.

Attack Vector

An attacker who controls or observes proxyB, or who can influence an application to redirect proxy traffic to an attacker-controlled host, can capture the leaked Proxy-Authorization: header. The vulnerability is reachable over the network with low attack complexity, requires no authentication to the target, and needs no user interaction.

Exploitation requires the victim application to legitimately authenticate to a first proxy with Digest, then reuse the same curl handle for a transfer to a second proxy. See the cURL CVE-2026-7168 Documentation for the upstream technical writeup.

Detection Methods for CVE-2026-7168

Indicators of Compromise

  • Unexpected Proxy-Authorization: headers arriving at proxies that never issued a 407 Digest challenge to the client.
  • Proxy access logs showing Digest authentication attempts from clients whose credentials belong to a different upstream proxy realm.
  • Curl-based applications configured with handle reuse across multiple CURLOPT_PROXY values in a single session.

Detection Strategies

  • Inspect HTTP proxy logs for Proxy-Authorization Digest values referencing a realm that does not match the receiving proxy.
  • Audit applications and scripts for code paths that mutate proxy settings on a reused curl easy handle without calling curl_easy_reset or clearing authentication options.
  • Use network telemetry to correlate outbound proxy connections from the same client to multiple distinct proxy hosts within short time windows.

Monitoring Recommendations

  • Capture and review proxy authentication failures and realm mismatches in SIEM pipelines.
  • Track libcurl versions deployed across the estate via software inventory and flag versions prior to the upstream fix referenced in the cURL advisory.
  • Alert on egress traffic from internal applications to proxy endpoints not present in approved proxy allowlists.

How to Mitigate CVE-2026-7168

Immediate Actions Required

  • Upgrade libcurl to the fixed version published by the curl project as referenced in the vendor advisory.
  • Rotate any proxy Digest credentials that may have been transmitted to untrusted secondary proxies.
  • Audit applications that switch proxy targets on reused curl handles and refactor to use fresh handles per proxy.

Patch Information

The curl project has released a patched version addressing the improper retention of Proxy-Authorization: across proxy changes. Refer to the cURL CVE-2026-7168 Documentation and JSON metadata for affected version ranges and the corresponding fixed release. Distribution-level backports are tracked via the Openwall OSS Security discussion.

Workarounds

  • Allocate a new curl easy handle for each proxy rather than reusing a single handle across different proxy hosts.
  • Call curl_easy_reset on the handle before changing CURLOPT_PROXY, and clear CURLOPT_PROXYUSERPWD and related authentication options.
  • Avoid mixing Digest-authenticated proxy transfers with subsequent transfers through proxies that are not fully trusted.
bash
# Configuration example: verify installed libcurl version against the fixed release
curl --version
# Inspect application code for reused handles
grep -RnE 'curl_easy_setopt\(.*CURLOPT_PROXY' ./src

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechHaxx Curl

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.07%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-294
  • Technical References
  • HackerOne Report #3697719
  • Vendor Resources
  • cURL CVE-2026-7168 Documentation

  • cURL CVE-2026-7168 JSON Data

  • Openwall OSS Security Discussion
  • Related CVEs
  • CVE-2026-4873: Haxx Curl Auth Bypass Vulnerability

  • CVE-2026-5545: Haxx Curl Auth Bypass Vulnerability

  • CVE-2026-1965: Haxx Curl Auth Bypass Vulnerability

  • CVE-2026-3784: Haxx Curl Auth Bypass 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