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-2025-32906

CVE-2025-32906: libsoup HTTP Server DoS Vulnerability

CVE-2025-32906 is a denial of service vulnerability in libsoup that allows attackers to crash HTTP servers using crafted requests. This article covers the technical details, affected versions, impact analysis, and mitigation.

Updated: January 22, 2026

CVE-2025-32906 Overview

A flaw was found in libsoup, where the soup_headers_parse_request() function may be vulnerable to an out-of-bound read. This flaw allows a malicious user to use a specially crafted HTTP request to crash the HTTP server. The vulnerability exists in the HTTP header parsing logic of libsoup, a widely-used GNOME HTTP client/server library that provides core networking functionality for many Linux applications.

Critical Impact

Remote attackers can crash HTTP servers using libsoup by sending specially crafted HTTP requests, causing denial of service conditions without requiring authentication.

Affected Products

  • libsoup (GNOME HTTP client/server library)
  • Red Hat Enterprise Linux distributions using libsoup
  • Debian and Debian-based distributions using libsoup

Discovery Timeline

  • April 14, 2025 - CVE-2025-32906 published to NVD
  • November 18, 2025 - Last updated in NVD database

Technical Details for CVE-2025-32906

Vulnerability Analysis

This vulnerability is classified as CWE-125: Out-of-bounds Read, which occurs when the software reads data past the end, or before the beginning, of the intended buffer. In the context of libsoup's soup_headers_parse_request() function, the out-of-bounds read condition can be triggered during the parsing of HTTP request headers.

The soup_headers_parse_request() function is responsible for parsing incoming HTTP request headers from network data. When processing specially crafted HTTP requests, the function fails to properly validate buffer boundaries before reading header data, allowing attackers to trigger memory access violations that result in server crashes.

Root Cause

The root cause of this vulnerability lies in insufficient boundary checking within the soup_headers_parse_request() function. When parsing HTTP headers, the function does not adequately validate that read operations stay within the bounds of the allocated buffer. This allows an attacker to craft malicious HTTP requests that cause the parser to read beyond the intended memory region, leading to application crashes.

The vulnerability is particularly concerning because it can be exploited remotely over the network without requiring any authentication or user interaction.

Attack Vector

The attack vector for CVE-2025-32906 is network-based, allowing remote attackers to exploit the vulnerability by sending specially crafted HTTP requests to any server utilizing the vulnerable libsoup library. The attack requires:

  1. Network access to a target server running an application that uses libsoup for HTTP parsing
  2. Crafting an HTTP request with malformed headers designed to trigger the out-of-bounds read condition
  3. Sending the malicious request to trigger the memory violation and cause a server crash

Since libsoup is commonly used in GNOME desktop applications and various web services on Linux systems, the attack surface includes web servers, GNOME applications with networking features, and any custom applications built using libsoup.

The vulnerability enables denial of service attacks where repeated exploitation can keep services offline, disrupting availability for legitimate users.

Detection Methods for CVE-2025-32906

Indicators of Compromise

  • Unexpected crashes or segmentation faults in applications using libsoup
  • HTTP server processes terminating unexpectedly with memory-related errors
  • Unusual HTTP requests with malformed or oversized header fields in access logs
  • Repeated service restarts indicating potential denial of service attacks

Detection Strategies

  • Monitor system logs for segmentation faults or memory access violations in libsoup-dependent applications
  • Implement network intrusion detection rules to identify malformed HTTP requests targeting header parsing
  • Use application crash monitoring to detect unusual termination patterns in HTTP services
  • Deploy web application firewalls (WAF) to filter potentially malicious HTTP header content

Monitoring Recommendations

  • Enable core dump analysis for applications using libsoup to capture crash details
  • Set up alerts for abnormal HTTP error rates that may indicate exploitation attempts
  • Monitor process availability and restart frequency for libsoup-based services
  • Review HTTP access logs for requests with unusual header characteristics

How to Mitigate CVE-2025-32906

Immediate Actions Required

  • Update libsoup to the latest patched version available for your distribution
  • Apply security updates from Red Hat (see RHSA-2025:4439 and related advisories)
  • Debian users should apply updates per the Debian LTS Announcement
  • Restart all services and applications that depend on libsoup after updating
  • Monitor systems for signs of exploitation until patches are fully deployed

Patch Information

Multiple Linux distributions have released security updates addressing CVE-2025-32906. Red Hat has issued numerous security advisories including RHSA-2025:4439, RHSA-2025:4440, RHSA-2025:4508, and RHSA-2025:4538 among others. Detailed CVE analysis is available from Red Hat's CVE page and Red Hat Bugzilla #2359341.

Organizations should prioritize applying these patches to systems running HTTP services or GNOME applications that utilize libsoup.

Workarounds

  • Implement network-level filtering to drop HTTP requests with abnormally large or malformed headers
  • Deploy a reverse proxy or WAF in front of vulnerable services to inspect and sanitize incoming HTTP traffic
  • Limit network exposure of libsoup-based services to trusted networks where possible
  • Consider running vulnerable services in containers or sandboxed environments to limit crash impact
bash
# Example: Update libsoup on Red Hat-based systems
sudo dnf update libsoup libsoup3 --refresh

# Example: Update libsoup on Debian-based systems
sudo apt update && sudo apt upgrade libsoup2.4-1 libsoup-3.0-0

# Verify installed libsoup version
rpm -qa | grep libsoup  # Red Hat/CentOS
dpkg -l | grep libsoup  # Debian/Ubuntu

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLibsoup

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.22%

  • 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-125
  • Technical References
  • Red Hat Security Advisory RHSA-2025:21657

  • Red Hat Security Advisory RHSA-2025:4439

  • Red Hat Security Advisory RHSA-2025:4440

  • Red Hat Security Advisory RHSA-2025:4508

  • Red Hat Security Advisory RHSA-2025:4538

  • Red Hat Security Advisory RHSA-2025:4560

  • Red Hat Security Advisory RHSA-2025:4568

  • Red Hat Security Advisory RHSA-2025:4609

  • Red Hat Security Advisory RHSA-2025:4624

  • Red Hat Security Advisory RHSA-2025:7436

  • Red Hat Security Advisory RHSA-2025:7505

  • Red Hat Security Advisory RHSA-2025:8292

  • Red Hat Security Advisory RHSA-2025:9179

  • Red Hat CVE Analysis CVE-2025-32906

  • Red Hat Bug Report #2359341

  • Debian LTS Announcement April 2025
  • Related CVEs
  • CVE-2026-2436: libsoup SoupServer DoS Vulnerability

  • CVE-2025-4948: libsoup HTTP Library DoS Vulnerability

  • CVE-2025-32913: libsoup NULL Pointer DOS Vulnerability

  • CVE-2025-32049: libsoup WebSocket 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