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

CVE-2026-6276: Haxx Curl Information Disclosure Flaw

CVE-2026-6276 is an information disclosure vulnerability in Haxx Curl libcurl that causes cookie leakage between hosts when custom Host headers are reused. This article covers technical details, affected versions, and mitigation.

Published: May 17, 2026

CVE-2026-6276 Overview

CVE-2026-6276 is a high-severity information disclosure vulnerability in libcurl, the widely deployed client-side URL transfer library maintained by the curl project. The flaw involves cookie leakage across HTTP requests that reuse the same easy handle. When an application sets a custom Host: header for an initial request and then issues a subsequent request on the same easy handle without that custom header, libcurl reuses stale host context. The second request transmits cookies scoped to the original host to an unintended destination. This breaks the cookie origin boundary and can expose authentication tokens, session identifiers, and other sensitive cookie values. The issue is tracked under [CWE-319] Cleartext Transmission of Sensitive Information.

Critical Impact

Applications reusing libcurl easy handles across hosts can leak session cookies, enabling account takeover and unauthorized access to authenticated APIs.

Affected Products

  • Haxx curl (libcurl)
  • Applications and language bindings that link against vulnerable libcurl versions
  • Automation tools, package managers, and SDKs embedding libcurl for HTTP transport

Discovery Timeline

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

Technical Details for CVE-2026-6276

Vulnerability Analysis

The vulnerability stems from improper state handling in libcurl's easy handle reuse logic. An easy handle is a reusable transfer context that carries options, headers, and cookie state across multiple HTTP operations. When an application calls curl_easy_setopt with CURLOPT_HTTPHEADER to set a custom Host: header, libcurl uses that value to determine the target host for cookie matching and request routing.

On the next transfer with the same handle, if the application clears or omits the custom Host: header, libcurl fails to fully reset the associated host context. The library carries forward stale host information from the prior request. As a result, cookies stored for the first host are attached to a request destined for a different host. The library then transmits those cookies in cleartext within the HTTP request, exposing them to the second host's operator and any on-path observer.

The vulnerability impacts confidentiality and integrity of session data without requiring authentication or user interaction. The attack surface is reachable over the network whenever an attacker controls or observes the second host in a multi-request workflow.

Root Cause

The root cause is incomplete cleanup of host-derived state between successive transfers on a shared easy handle. libcurl treats the absence of a custom Host: header on the second call as "no change required" rather than triggering a fresh derivation of host context from the new URL.

Attack Vector

An attacker exploits the flaw by controlling the destination of the second request, or by inducing an application to issue a follow-up request to an attacker-influenced URL after a prior request used a custom Host: header. Cookies belonging to the first origin are sent to the second origin in the request headers. The attacker collects them server-side and replays them against the legitimate first host.

No verified public proof-of-concept code is available. Refer to the curl.se advisory for CVE-2026-6276 and the HackerOne Report #3671818 for technical details from the maintainers.

Detection Methods for CVE-2026-6276

Indicators of Compromise

  • Outbound HTTP requests carrying Cookie: headers whose domain attributes do not match the request URL host
  • Repeated cross-host cookie reuse patterns originating from a single client process or service identifier
  • Unexpected authenticated sessions on the first host originating from IP addresses associated with the second host operator

Detection Strategies

  • Inspect outbound HTTP traffic at egress proxies for mismatches between the destination host and the cookie scope in transmitted Cookie: headers
  • Audit applications that link libcurl for code paths that call curl_easy_setopt with custom Host: headers followed by transfers to a different URL on the same handle
  • Correlate web server access logs across services to identify session tokens appearing on hosts they were not issued for

Monitoring Recommendations

  • Enable verbose logging on libcurl-based clients during testing using CURLOPT_VERBOSE to confirm header and cookie behavior between transfers
  • Monitor package inventory for installed libcurl versions and flag systems running releases listed in the vendor advisory
  • Alert on anomalous cookie reuse patterns in web application firewall and reverse proxy logs

How to Mitigate CVE-2026-6276

Immediate Actions Required

  • Upgrade libcurl to the fixed release identified in the curl.se security advisory
  • Audit application code that reuses easy handles across hosts and add explicit handle resets between unrelated transfers
  • Rotate session cookies and authentication tokens that may have transited cross-host through vulnerable clients

Patch Information

The curl project published the official fix and affected version ranges in the curl.se CVE-2026-6276 advisory. Rebuild and redistribute applications that statically link libcurl. Update OS packages providing the shared libcurl library and restart dependent services to load the patched binary.

Workarounds

  • Call curl_easy_reset on the easy handle between transfers that target different hosts to clear residual state
  • Allocate a new easy handle per target host rather than reusing a single handle across origins
  • Avoid mixing custom Host: header usage with subsequent transfers on the same handle until patched libcurl is deployed
bash
# Verify installed libcurl version on Linux hosts
curl --version
ldconfig -p | grep libcurl
dpkg -l | grep -E 'libcurl|curl'   # Debian/Ubuntu
rpm -qa | grep -E 'libcurl|curl'   # RHEL/Fedora

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

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-319
  • Technical References
  • curl.se CVE-2026-6276 JSON Data

  • HackerOne Report #3671818

  • OpenWall OSS-Security Mailing List
  • Vendor Resources
  • curl.se CVE-2026-6276 Documentation
  • Related CVEs
  • CVE-2026-6429: Haxx Curl Information Disclosure Flaw

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

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