A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-2024-52530

CVE-2024-52530: GNOME Libsoup HTTP Smuggling Vulnerability

CVE-2024-52530 is an HTTP request smuggling flaw in GNOME libsoup where null characters at the end of header names are ignored, enabling attackers to bypass security controls. This article covers affected versions, impact, and mitigation.

Published: May 26, 2026

CVE-2024-52530 Overview

CVE-2024-52530 is an HTTP request smuggling vulnerability in GNOME libsoup versions before 3.6.0. The library ignores null (\0) characters at the end of HTTP header names, causing a Transfer-Encoding\0: chunked header to be treated identically to a standard Transfer-Encoding: chunked header. Attackers can exploit this inconsistency when libsoup sits behind or in front of a different HTTP implementation to desynchronize request parsing. The flaw maps to CWE-444 (Inconsistent Interpretation of HTTP Requests).

Critical Impact

Attackers can smuggle malicious HTTP requests past front-end proxies, leading to cache poisoning, request hijacking, security control bypass, and credential theft against applications using libsoup.

Affected Products

  • GNOME libsoup versions prior to 3.6.0
  • Linux distributions packaging vulnerable libsoup builds, including Debian LTS
  • Applications and services that route HTTP traffic through libsoup (GNOME desktop components, third-party clients and servers)

Discovery Timeline

  • 2024-11-11 - CVE-2024-52530 published to the National Vulnerability Database (NVD)
  • 2025-11-03 - Last updated in NVD database

Technical Details for CVE-2024-52530

Vulnerability Analysis

The vulnerability stems from how libsoup parses HTTP header field names. RFC 7230 defines header field names as token characters, and embedded null bytes are not valid. libsoup strips or ignores trailing \0 bytes in header names instead of rejecting the request. A header sent as Transfer-Encoding\0: chunked is therefore normalized to Transfer-Encoding: chunked inside libsoup, while strict upstream or downstream HTTP parsers see a different, unrelated header name. This parser disagreement is the foundation of HTTP request smuggling.

When libsoup is paired with another HTTP implementation, such as a reverse proxy, content delivery network, or load balancer, the two systems can disagree on where one request ends and the next begins. An attacker who controls the body of a smuggled request can prepend arbitrary HTTP requests onto another user's connection, poison shared caches, capture authenticated requests, or bypass front-end access controls.

Root Cause

The root cause is improper input validation of HTTP header field names. libsoup accepts header names that contain or terminate with the null byte (\0) and treats them as equivalent to the cleaned name. Compliant HTTP parsers either reject these headers outright or treat them as distinct names. This inconsistent interpretation between cooperating HTTP intermediaries enables the smuggling primitive described in CWE-444.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker sends a crafted HTTP request containing a header name terminated with a null byte, such as Transfer-Encoding\0: chunked, to a deployment in which libsoup and a second HTTP implementation parse the same stream. The parsers disagree on framing, allowing the attacker to inject a hidden request that targets subsequent users, internal endpoints, or cached resources.

For concrete reproduction details and protocol-level examples, see GNOME libsoup Issue #377 and GNOME libsoup Merge Request #402.

Detection Methods for CVE-2024-52530

Indicators of Compromise

  • HTTP requests or proxy logs containing header names with embedded or trailing null (\0, %00) bytes, particularly on framing headers such as Transfer-Encoding, Content-Length, and Host.
  • Mismatches between front-end proxy and back-end application logs for the same connection, including unexpected request counts, paths, or methods.
  • Cache entries or responses delivered to users that do not correspond to any request they issued.

Detection Strategies

  • Inspect raw HTTP traffic at TLS termination points for non-token bytes in header field names and alert on any null byte appearing before the : separator.
  • Compare access logs across the proxy chain to identify desynchronization, such as a single client connection producing more back-end requests than front-end requests.
  • Inventory installed libsoup packages across Linux fleets and flag any version earlier than 3.6.0 for remediation.

Monitoring Recommendations

  • Enable verbose HTTP parser logging on reverse proxies and web application firewalls and forward those events to a centralized analytics platform.
  • Monitor for sudden changes in cache hit ratios, anomalous Set-Cookie responses on cached paths, and unexpected authenticated activity from shared egress IPs.
  • Track Debian, GNOME, and downstream distribution security feeds, including the Debian LTS Announcement 2024-12, for additional advisories tied to libsoup.

How to Mitigate CVE-2024-52530

Immediate Actions Required

  • Upgrade libsoup to version 3.6.0 or later on every host that ships or consumes the library.
  • Apply distribution-provided security updates, including the patched packages described in the Debian LTS Announcement 2024-12.
  • Restart all services that link against libsoup so that the patched library is loaded into running processes.

Patch Information

The upstream fix is tracked in GNOME libsoup Merge Request #402 and shipped in libsoup 3.6.0. The patch rejects HTTP header names that contain null bytes rather than silently normalizing them, restoring consistent parsing with RFC-compliant implementations. Additional vendor guidance is available on the GNOME Releng Security Wiki.

Workarounds

  • Place a strict HTTP parser, such as a hardened reverse proxy or web application firewall, in front of libsoup-based services and configure it to reject any header name containing a null byte.
  • Disable HTTP keep-alive on affected back-end services where feasible to reduce the window for connection-level smuggling.
  • Restrict network exposure of services backed by vulnerable libsoup builds until patching is complete.
bash
# Example: verify the installed libsoup version on Debian-based systems
dpkg -l | grep -E 'libsoup-?[23]'

# Upgrade to the patched package set
sudo apt update
sudo apt install --only-upgrade libsoup2.4-1 libsoup-3.0-0

# Restart services that link against libsoup
sudo systemctl restart <service-name>

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLibsoup

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.37%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-444
  • Technical References
  • GNOME libsoup Issue #377

  • GNOME libsoup Merge Request #402

  • Debian LTS Announcement 2024-12
  • Vendor Resources
  • GNOME Releng Security Wiki
  • Related CVEs
  • CVE-2026-1536: Gnome Libsoup HTTP Header Injection Flaw

  • CVE-2026-1467: libsoup CRLF Injection Vulnerability

  • CVE-2025-32910: libsoup DOS Vulnerability

  • CVE-2025-14523: libsoup HTTP SSRF 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