Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-33555

CVE-2026-33555: HAProxy HTTP/3 Request Smuggling Flaw

CVE-2026-33555 is a request smuggling flaw in HAProxy's HTTP/3 parser that fails to validate body length against content-length headers. This article covers technical details, affected versions, and mitigation steps.

Published: April 17, 2026

CVE-2026-33555 Overview

An HTTP Request Smuggling vulnerability was discovered in HAProxy before version 3.3.6. The HTTP/3 parser fails to validate that the received body length matches a previously announced Content-Length header when the stream is closed via a frame with an empty payload. This validation gap can cause desynchronization issues with backend servers and could be exploited for request smuggling attacks. The earliest affected version is 2.6.

Critical Impact

Attackers can exploit this HTTP/3 parser flaw to bypass security controls, poison web caches, or hijack user sessions through request smuggling techniques.

Affected Products

  • HAProxy versions 2.6 through 3.3.5
  • HAProxy Aloha (see vendor changelog for specific versions)
  • Any deployment using HTTP/3 (QUIC) with Content-Length headers

Discovery Timeline

  • 2026-04-13 - CVE-2026-33555 published to NVD
  • 2026-04-13 - Last updated in NVD database

Technical Details for CVE-2026-33555

Vulnerability Analysis

This vulnerability stems from improper length checking (CWE-130) in the HTTP/3 protocol implementation within HAProxy. The HTTP/3 parser processes incoming QUIC streams and handles Content-Length headers to validate message body sizes. However, when a stream terminates with an empty FIN frame, the parser fails to verify that the total received body length matches the declared Content-Length value.

This oversight creates a desynchronization condition between the HAProxy frontend and backend servers. When HAProxy forwards a request with an incorrect body length interpretation, the backend server may parse subsequent data as a new request, enabling classic HTTP Request Smuggling attacks.

Root Cause

The root cause lies in the h3.c source file where the HTTP/3 stream handling logic processes FIN frames. When an empty FIN frame is received on a bidirectional QUIC stream, the code path that checks body size conformance against Content-Length headers was not being invoked. This allowed streams to complete successfully even when the actual body data received did not match the advertised length.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can craft malicious HTTP/3 requests with mismatched Content-Length headers and body data, then close the stream with an empty FIN frame. This can be used to:

  1. Smuggle additional HTTP requests to backend servers
  2. Poison shared caches with malicious content
  3. Bypass frontend security filters and WAF rules
  4. Hijack responses intended for other users
c
// Security patch from HAProxy commit
// Source: https://github.com/haproxy/haproxy/commit/05a295441c621089ffa4318daf0dbca2dd756a84

 
 	if (!b_data(b) && fin && quic_stream_is_bidi(qcs->id)) {
 		TRACE_PROTO("received FIN without data", H3_EV_RX_FRAME, qcs->qcc->conn, qcs);
+
+		/* FIN received, ensure body length is conform to any content-length header. */
+		if ((h3s->flags & H3_SF_HAVE_CLEN) && h3_check_body_size(qcs, 1)) {
+			qcc_abort_stream_read(qcs);
+			qcc_reset_stream(qcs, h3s->err);
+			goto done;
+		}
+
 		if (qcs_http_handle_standalone_fin(qcs)) {
 			TRACE_ERROR("cannot set EOM", H3_EV_RX_FRAME, qcs->qcc->conn, qcs);
 			qcc_set_error(qcs->qcc, H3_ERR_INTERNAL_ERROR, 1);

Source: GitHub HAProxy Commit

Detection Methods for CVE-2026-33555

Indicators of Compromise

  • HTTP/3 streams terminating with empty FIN frames where body length doesn't match Content-Length header
  • Anomalous backend request patterns or unexpected request sequences
  • Web cache entries with suspicious or unexpected content
  • Log entries showing request body size mismatches on HTTP/3 connections

Detection Strategies

  • Monitor HAProxy logs for HTTP/3 protocol errors, particularly H3_ERR_INTERNAL_ERROR events
  • Implement backend request logging to identify smuggled or desynchronized requests
  • Deploy network monitoring to analyze QUIC/HTTP/3 traffic for malformed frame sequences
  • Use SentinelOne Singularity to detect anomalous process behavior on HAProxy servers

Monitoring Recommendations

  • Enable detailed HTTP/3 tracing in HAProxy configuration for forensic analysis
  • Configure alerts for sudden increases in HTTP/3 protocol errors or stream resets
  • Monitor backend servers for unexpected request patterns that may indicate smuggled requests
  • Review cache hit/miss ratios for anomalies that could indicate cache poisoning attempts

How to Mitigate CVE-2026-33555

Immediate Actions Required

  • Upgrade HAProxy to version 3.3.6 or later immediately
  • If upgrade is not possible, consider temporarily disabling HTTP/3 support
  • Review HAProxy configurations to ensure proper logging is enabled for HTTP/3 connections
  • Audit backend servers for any signs of exploitation or smuggled requests

Patch Information

The vulnerability has been patched in HAProxy version 3.3.6. The fix adds proper body length validation when processing FIN frames on HTTP/3 streams. The patch introduces a check for the H3_SF_HAVE_CLEN flag and calls h3_check_body_size() to validate conformance before allowing the stream to complete successfully.

For detailed patch information, refer to the GitHub HAProxy Commit and the HAProxy Aloha Changelog.

Workarounds

  • Disable HTTP/3 support temporarily by removing h3 from bind line options
  • Configure backend servers to strictly validate Content-Length headers against actual body sizes
  • Implement additional WAF rules to detect and block potential request smuggling patterns
  • Use HTTP/2 or HTTP/1.1 as fallback protocols until patching is complete
bash
# Configuration example - Disable HTTP/3 temporarily
# In haproxy.cfg, remove 'h3' option from frontend bind lines

# Before (vulnerable if HTTP/3 is enabled):
# bind :443 ssl crt /etc/ssl/cert.pem alpn h3,h2,http/1.1

# After (HTTP/3 disabled as workaround):
bind :443 ssl crt /etc/ssl/cert.pem alpn h2,http/1.1

# Restart HAProxy to apply changes
systemctl restart haproxy

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechHaproxy

  • SeverityMEDIUM

  • CVSS Score4.0

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-130
  • Technical References
  • GitHub HAProxy Commit

  • HAProxy Aloha Changelog

  • HAProxy Official Website

  • HAProxy Mailing List Message
  • Related CVEs
  • CVE-2025-11230: HAProxy Aloha Appliance DoS Vulnerability

  • CVE-2023-25725: HAProxy Auth Bypass Vulnerability

  • CVE-2024-45506: HAProxy HTTP/2 DoS Vulnerability

  • CVE-2023-0056: HAProxy DOS 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