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

CVE-2026-5545: Haxx Curl Auth Bypass Vulnerability

CVE-2026-5545 is an authentication bypass flaw in Haxx Curl that causes libcurl to reuse connections with wrong credentials after Negotiate authentication. This post covers technical details, affected versions, and mitigations.

Published: May 17, 2026

CVE-2026-5545 Overview

CVE-2026-5545 is an insufficient session expiration vulnerability [CWE-613] in libcurl. The flaw causes libcurl to reuse the wrong connection from its connection pool after a Negotiate-authenticated HTTP(S) request. When an application performs a follow-up request to the same host with different credentials, libcurl may route it over the previously authenticated connection. The new request then executes under the prior user's authenticated session rather than the credentials supplied for the second operation.

Critical Impact

An application that switches authentication credentials against the same server may inadvertently transmit requests under the wrong identity, leading to unauthorized data access or integrity violations on the target service.

Affected Products

  • Haxx curl (libcurl) — versions distributed under cpe:2.3:a:haxx:curl
  • Applications linking against vulnerable libcurl builds that use Negotiate authentication
  • HTTP(S) clients that rely on libcurl's connection pool for credential-switching workflows

Discovery Timeline

  • 2026-05-13 - CVE-2026-5545 published to the National Vulnerability Database (NVD)
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-5545

Vulnerability Analysis

libcurl maintains a pool of recently used connections to avoid the overhead of repeated TCP and TLS handshakes. Subsequent requests evaluate a set of criteria to decide whether an existing connection can be reused. A logical error in the reuse-matching logic fails to fully account for the authentication identity bound to a connection that completed Negotiate authentication.

Negotiate (SPNEGO/Kerberos/NTLM) authenticates the entire connection rather than individual requests. After the handshake, the server treats every subsequent request on that socket as belonging to the original principal. libcurl's pool selection does not invalidate that binding when the next operation specifies a different user:password pair targeting the same host.

Root Cause

The defect is an insufficient session expiration condition in the connection-matching code path. The reuse predicate compares hostname, port, and protocol attributes but does not reject a pooled connection that completed Negotiate authentication under different credentials. The connection remains eligible for reuse while still bound to the prior authenticated principal.

Attack Vector

Exploitation requires a specific application flow rather than direct attacker interaction. An application must first issue a Negotiate-authenticated request with user1:password1, keep the connection alive in the pool, and then issue a second request to the same host with user2:password2 requesting any authentication method. The second request is silently delivered over the still-authenticated user1 connection. The server processes operations under user1's identity while the application believes it acted as user2, producing integrity loss and potential disclosure of user1-scoped data to the user2 workflow.

// No verified proof-of-concept code is published.
// See the cURL advisory for technical details:
// https://curl.se/docs/CVE-2026-5545.html

Detection Methods for CVE-2026-5545

Indicators of Compromise

  • Server-side audit logs showing actions attributed to a Kerberos or Negotiate principal that does not match the credentials the calling application intended to use.
  • Application logs indicating credential switches against the same host without an intervening connection close or CURLOPT_FRESH_CONNECT directive.
  • Mismatches between client-side request metadata and server-side authenticated-user fields for HTTP(S) traffic originating from libcurl-based tools.

Detection Strategies

  • Inventory binaries and packages linking libcurl and identify versions affected by CVE-2026-5545 using software composition analysis.
  • Correlate authentication events from Kerberos-protected services against the originating client process to surface identity drift on long-lived connections.
  • Inspect HTTP(S) proxies for repeated requests on a single keep-alive connection that span different application-layer user contexts.

Monitoring Recommendations

  • Alert on services that accept Negotiate authentication when a single TCP session services requests intended for multiple distinct principals.
  • Monitor outbound HTTPS connections from libcurl-based applications for unexpected reuse durations following authenticated transactions.
  • Track package update telemetry to confirm patched libcurl versions are deployed across endpoint and server fleets.

How to Mitigate CVE-2026-5545

Immediate Actions Required

  • Upgrade libcurl to the fixed release referenced in the cURL CVE-2026-5545 advisory.
  • Audit applications that use Negotiate authentication and switch credentials against the same host within a single libcurl handle's lifetime.
  • Rebuild or repackage downstream software that statically links libcurl against the fixed version.

Patch Information

The curl project published advisory details and patch references at the cURL CVE-2026-5545 Documentation and machine-readable metadata at the cURL CVE-2026-5545 JSON Details. The HackerOne disclosure is tracked in HackerOne Report #3642555. Apply the upstream fix or the corresponding distribution package update.

Workarounds

  • Set CURLOPT_FRESH_CONNECT to force a new connection when changing credentials against the same host.
  • Use a separate CURL easy handle per authenticated identity to prevent pool sharing across credential boundaries.
  • Disable connection reuse by setting CURLOPT_FORBID_REUSE for requests that follow a Negotiate-authenticated operation.
bash
# Configuration example — force fresh connection per credential context
curl --no-keepalive \
     --user "user2:password2" \
     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
  • TypeAuth Bypass

  • Vendor/TechHaxx Curl

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.05%

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

  • cURL CVE-2026-5545 JSON Details
  • Related CVEs
  • CVE-2026-7168: Haxx Curl Auth Bypass Vulnerability

  • CVE-2026-4873: 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