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

CVE-2025-32908: libsoup HTTP/2 DoS Vulnerability

CVE-2025-32908 is a denial of service flaw in libsoup's HTTP/2 server caused by improper validation of pseudo-headers. Attackers can exploit this to trigger DoS conditions. This article covers technical details, impact, and mitigation.

Updated: May 19, 2026

CVE-2025-32908 Overview

CVE-2025-32908 is a denial of service vulnerability in libsoup, the GNOME HTTP client/server library used across Linux desktop and server software. The HTTP/2 server implementation in libsoup fails to fully validate the values of the :scheme, :authority, and :path pseudo-headers. A remote, unauthenticated attacker can send a malformed HTTP/2 request that causes the server process to terminate or become unresponsive. The flaw is tracked under CWE-115: Misinterpretation of Input and affects any application that embeds libsoup as an HTTP/2 server.

Critical Impact

Remote attackers can trigger a denial of service against any HTTP/2 server built on libsoup without authentication or user interaction.

Affected Products

  • libsoup HTTP/2 server implementations
  • Red Hat Enterprise Linux distributions consuming libsoup (see RHSA-2025:7505)
  • GNOME applications and services that expose HTTP/2 endpoints via libsoup

Discovery Timeline

  • 2025-04-14 - CVE-2025-32908 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2025-32908

Vulnerability Analysis

The vulnerability resides in the HTTP/2 request parsing logic of libsoup. HTTP/2 defines a set of pseudo-headers (prefixed with a colon) that carry routing information equivalent to the HTTP/1.1 request line. The three affected pseudo-headers, :scheme, :authority, and :path, identify the target resource for each stream.

libsoup accepts these pseudo-headers without strict validation against the grammar defined in RFC 9113. When the server later attempts to interpret malformed values during request dispatch, the code path reaches an unexpected state and aborts the worker process. The flaw maps to CWE-115, where input is interpreted under assumptions the parser does not enforce.

Root Cause

The HTTP/2 server code in libsoup treats pseudo-header values as well-formed strings instead of validating them against the protocol grammar. Empty values, invalid characters, or unexpected token sequences propagate downstream into request handling, where they trigger assertion failures or unrecoverable error states that crash the server.

Attack Vector

Exploitation requires only network reachability to an HTTP/2 endpoint backed by libsoup. The attacker opens an HTTP/2 connection, performs the standard preface and SETTINGS exchange, and submits a HEADERS frame containing crafted :scheme, :authority, or :path values. No authentication, privileges, or user interaction are required. Successful requests stop the service from handling further connections until it is restarted. No verified public proof-of-concept code is available at this time; review the Red Hat CVE-2025-32908 advisory and Bugzilla #2359343 for upstream details.

Detection Methods for CVE-2025-32908

Indicators of Compromise

  • Unexpected crashes or restarts of services that link against libsoup and expose HTTP/2
  • HTTP/2 GOAWAY frames with error codes followed by abrupt connection terminations from the server side
  • Application logs showing parsing errors referencing :scheme, :authority, or :path pseudo-headers
  • Repeated short-lived HTTP/2 connections from a single source preceding a service outage

Detection Strategies

  • Inspect HTTP/2 traffic at the proxy or WAF layer for requests containing empty or non-conforming pseudo-header values
  • Correlate process crash events for libsoup-backed daemons with inbound HTTP/2 connection bursts
  • Enable verbose logging in front-end reverse proxies to capture rejected HTTP/2 frames for forensic review

Monitoring Recommendations

  • Alert on abnormal restart counts for services such as GNOME Online Accounts, Evolution, or custom daemons embedding libsoup
  • Track HTTP/2 protocol error rates per source IP to identify probing or DoS attempts
  • Monitor availability metrics for HTTP/2 endpoints and trigger alerts when error budgets degrade rapidly

How to Mitigate CVE-2025-32908

Immediate Actions Required

  • Apply the vendor-supplied libsoup updates from RHSA-2025:7505 and equivalent distribution advisories
  • Restart all services that link against libsoup after patching to ensure the updated library is loaded
  • Audit the environment for applications that expose HTTP/2 endpoints via libsoup and prioritize externally reachable services

Patch Information

Red Hat released fixed packages in RHSA-2025:7505. Refer to the Red Hat CVE-2025-32908 page for affected component versions and to Bugzilla #2359343 for upstream tracking. Other Linux distributions have published corresponding libsoup updates; apply the version distributed by your vendor.

Workarounds

  • Place a hardened reverse proxy in front of libsoup HTTP/2 endpoints to validate pseudo-headers before they reach the backend
  • Disable HTTP/2 on affected services where feasible and fall back to HTTP/1.1 until patches are applied
  • Restrict network exposure of libsoup-backed services to trusted clients using firewall rules or mutual TLS
bash
# Example: update libsoup on Red Hat Enterprise Linux
sudo dnf update libsoup libsoup3
sudo systemctl restart <service-using-libsoup>

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

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

  • Red Hat CVE-2025-32908 Details

  • Red Hat Bug Report #2359343
  • Related CVEs
  • CVE-2025-32910: libsoup DOS Vulnerability

  • CVE-2026-2436: libsoup SoupServer DoS Vulnerability

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

  • CVE-2025-32913: libsoup NULL Pointer DOS 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