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
    • 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-3784

CVE-2026-3784: Haxx Curl Auth Bypass Vulnerability

CVE-2026-3784 is an authentication bypass flaw in Haxx Curl where HTTP proxy connections are wrongly reused with different credentials. This article covers the technical details, affected versions, and mitigation.

Published: March 13, 2026

CVE-2026-3784 Overview

CVE-2026-3784 is an authentication bypass vulnerability in curl where the application incorrectly reuses an existing HTTP proxy connection performing a CONNECT operation to a server, even when a new request specifies different credentials for the HTTP proxy. This improper connection reuse behavior violates the expected security model where separate credentials should establish separate connections.

Critical Impact

Attackers may be able to leverage improperly reused proxy connections to access resources using another user's authenticated session, potentially leading to unauthorized data access or credential exposure.

Affected Products

  • haxx curl (all affected versions)

Discovery Timeline

  • 2026-03-11 - CVE CVE-2026-3784 published to NVD
  • 2026-03-12 - Last updated in NVD database

Technical Details for CVE-2026-3784

Vulnerability Analysis

This vulnerability relates to CWE-305 (Authentication Bypass by Primary Weakness), manifesting in curl's HTTP proxy connection handling logic. When curl establishes a connection to a server through an HTTP proxy using the CONNECT method, it creates a tunnel through which subsequent requests are sent. The vulnerability occurs because curl fails to properly validate whether the credentials associated with a new request match those of an existing proxy connection before reusing that connection.

The improper connection reuse means that if a user or application makes multiple requests through the same proxy using different sets of credentials, curl may incorrectly route requests through a connection authenticated with different credentials than those specified. This breaks the security isolation that should exist between requests using different authentication contexts.

Root Cause

The root cause lies in curl's connection pooling and reuse logic for HTTP proxy connections. When determining whether to reuse an existing CONNECT tunnel, curl does not adequately verify that the proxy credentials match between the new request and the established connection. The proper behavior requires curl to either create a new connection or select only connections that match all relevant authentication parameters.

Attack Vector

The attack vector is network-based and requires no user interaction. An attacker who can influence the sequence of proxy-authenticated requests (for example, in a multi-user environment or shared application) could potentially exploit this behavior to have their requests sent over a connection authenticated with another user's credentials, or vice versa.

The vulnerability manifests in the HTTP proxy connection handling logic where CONNECT tunnels are reused without proper credential verification. When a client application using curl sends requests through an HTTP proxy with varying credentials, the connection pooling mechanism may select an inappropriate existing connection rather than establishing a new authenticated session. For detailed technical analysis, refer to the HackerOne Report #3584903 and the official cURL security advisory.

Detection Methods for CVE-2026-3784

Indicators of Compromise

  • Unexpected proxy authentication events in proxy server logs where credentials appear inconsistent with the requesting user or application
  • Multiple requests from a single source appearing to use different credential sets through the same persistent connection
  • Anomalous access patterns where users access resources they should not have authorization for

Detection Strategies

  • Monitor HTTP proxy logs for connection reuse patterns that span multiple authentication contexts
  • Implement network traffic analysis to identify CONNECT tunnels being used with mismatched credential sessions
  • Deploy application-level logging to track curl library usage and proxy connection behavior

Monitoring Recommendations

  • Enable verbose logging in applications using curl for proxy connections to capture credential handling
  • Configure proxy servers to log connection establishment and authentication events with sufficient detail
  • Implement alerting for unusual proxy authentication patterns or credential usage anomalies

How to Mitigate CVE-2026-3784

Immediate Actions Required

  • Update curl to the latest patched version as soon as available from the vendor
  • Review applications using curl with HTTP proxy CONNECT functionality for potential exposure
  • Consider disabling proxy connection reuse temporarily using --no-keepalive or equivalent programmatic options
  • Audit systems where multiple credential contexts may share curl instances

Patch Information

Haxx has released security information regarding this vulnerability. Organizations should consult the official cURL CVE-2026-3784 advisory for patch details and affected version information. The OpenWall security discussion provides additional community analysis and mitigation guidance.

Workarounds

  • Disable HTTP proxy connection pooling by configuring curl to use fresh connections for each request with different credentials
  • Implement application-level credential isolation ensuring separate curl handles for different authentication contexts
  • Use the CURLOPT_FRESH_CONNECT option to force new connections when proxy credentials change
bash
# Configuration example - Force fresh connections in curl CLI
curl --no-keepalive --proxy-user user:pass --proxy http://proxy:8080 https://target.example.com

# In code, set CURLOPT_FRESH_CONNECT to prevent connection reuse
# curl_easy_setopt(curl, CURLOPT_FRESH_CONNECT, 1L);

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.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-305
  • Technical References
  • HackerOne Report #3584903

  • OpenWall OSS Security Discussion
  • Vendor Resources
  • cURL CVE-2026-3784 Documentation

  • cURL CVE-2026-3784 JSON Data
  • Related CVEs
  • CVE-2026-1965: Haxx Curl Auth Bypass Vulnerability

  • CVE-2024-0853: Haxx Curl Auth Bypass Vulnerability

  • CVE-2022-43551: Haxx Curl Auth Bypass Vulnerability

  • CVE-2021-22946: Haxx Curl Auth Bypass Vulnerability
Default Legacy - Prefooter | 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
  • 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