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-32049

CVE-2025-32049: libsoup WebSocket DoS Vulnerability

CVE-2025-32049 is a denial of service flaw in libsoup's SoupWebsocketConnection that allows attackers to exhaust memory via large WebSocket messages. This article covers the technical details, impact, and mitigation.

Published: April 15, 2026

CVE-2025-32049 Overview

A denial of service vulnerability has been discovered in libsoup, the GNOME HTTP client/server library. The flaw exists in the SoupWebsocketConnection component, which may accept an excessively large WebSocket message without proper size validation. When processing such oversized messages, libsoup allocates memory without appropriate limits, leading to resource exhaustion and a denial of service condition.

Critical Impact

Remote attackers can exploit this vulnerability over the network without authentication to cause service disruption by exhausting system memory through malicious WebSocket messages.

Affected Products

  • libsoup (GNOME HTTP library)
  • Applications utilizing SoupWebsocketConnection for WebSocket functionality
  • Red Hat Enterprise Linux and derivative distributions using affected libsoup versions

Discovery Timeline

  • 2025-04-03 - CVE-2025-32049 published to NVD
  • 2025-11-18 - Last updated in NVD database

Technical Details for CVE-2025-32049

Vulnerability Analysis

This vulnerability is classified under CWE-770 (Allocation of Resources Without Limits or Throttling). The SoupWebsocketConnection implementation in libsoup fails to properly enforce maximum message size restrictions when handling incoming WebSocket data frames. An attacker can exploit this weakness by sending specially crafted WebSocket messages with large payloads.

When libsoup receives an oversized WebSocket message, it attempts to allocate sufficient memory to buffer the entire message content. Without proper size validation or memory allocation limits, this behavior can be exploited to force the library to consume excessive amounts of system memory. In scenarios where multiple malicious connections are established or repeated large messages are sent, the accumulated memory consumption can exhaust available system resources.

The network-based attack vector makes this vulnerability particularly concerning for services that expose WebSocket endpoints to untrusted clients. Since no authentication or user interaction is required, any network-accessible application using vulnerable libsoup versions is at risk.

Root Cause

The root cause of this vulnerability is the absence of proper message size validation and memory allocation throttling in the SoupWebsocketConnection component. The implementation accepts and attempts to buffer WebSocket messages without enforcing reasonable size constraints, allowing unbounded memory allocation based on attacker-controlled input.

Attack Vector

An attacker can exploit this vulnerability remotely over the network by establishing a WebSocket connection to a vulnerable libsoup-based application and sending large WebSocket frames or messages. The attack requires no authentication or special privileges, making it accessible to any network-connected adversary.

The exploitation mechanism involves:

  1. Establishing a WebSocket connection to the target application
  2. Sending one or more WebSocket messages with excessively large payloads
  3. The vulnerable SoupWebsocketConnection attempts to allocate memory for the entire message
  4. Repeated or sustained attacks exhaust available memory, causing denial of service

Technical details regarding specific exploitation methods can be found in the Red Hat Bug Report #2357066 and the Red Hat CVE Analysis.

Detection Methods for CVE-2025-32049

Indicators of Compromise

  • Abnormal memory consumption in processes using libsoup or SoupWebsocketConnection
  • Unusually large WebSocket messages observed in network traffic analysis
  • Application crashes or out-of-memory errors in libsoup-dependent services
  • High volume of WebSocket connections from suspicious IP addresses

Detection Strategies

  • Monitor system memory utilization for processes that implement WebSocket functionality using libsoup
  • Implement network-level inspection for WebSocket frames exceeding expected size thresholds
  • Configure application-level logging to track WebSocket message sizes and connection patterns
  • Use SentinelOne Singularity Platform to detect anomalous process behavior indicative of memory exhaustion attacks

Monitoring Recommendations

  • Establish baseline memory consumption for libsoup-dependent applications and alert on significant deviations
  • Deploy network monitoring to identify and flag unusually large WebSocket payloads
  • Configure rate limiting on WebSocket endpoints to prevent rapid connection establishment from single sources
  • Review application logs for patterns of WebSocket-related errors or memory allocation failures

How to Mitigate CVE-2025-32049

Immediate Actions Required

  • Apply security patches from your distribution vendor as soon as they become available
  • Review and update libsoup packages to patched versions referenced in Red Hat Security Advisories
  • Implement network-level controls to limit WebSocket message sizes at the load balancer or reverse proxy layer
  • Consider temporarily disabling WebSocket functionality in critical applications if patches cannot be immediately applied

Patch Information

Red Hat has released multiple security advisories addressing this vulnerability across various product versions. Organizations should consult the following advisories for patching guidance:

  • RHSA-2025:21657
  • RHSA-2025:8126
  • RHSA-2025:8128
  • RHSA-2025:8132
  • RHSA-2025:8139
  • RHSA-2025:8140
  • RHSA-2025:8252
  • RHSA-2025:8480
  • RHSA-2025:8481
  • RHSA-2025:8482
  • RHSA-2025:8663
  • RHSA-2025:9179

Workarounds

  • Configure reverse proxy or load balancer rules to enforce maximum WebSocket frame and message sizes
  • Implement application-level message size validation before passing data to libsoup components
  • Deploy network segmentation to restrict WebSocket endpoint exposure to trusted networks only
  • Use connection rate limiting to reduce the impact of sustained denial of service attempts
bash
# Example: Nginx configuration to limit WebSocket message size
# Add to nginx.conf or server block configuration
proxy_read_timeout 300s;
proxy_send_timeout 300s;
proxy_buffer_size 64k;
proxy_buffers 8 64k;
client_max_body_size 1m;

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 Probability1.56%

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

  • Red Hat Security Advisory RHSA-2025:8126

  • Red Hat Security Advisory RHSA-2025:8128

  • Red Hat Security Advisory RHSA-2025:8132

  • Red Hat Security Advisory RHSA-2025:8139

  • Red Hat Security Advisory RHSA-2025:8140

  • Red Hat Security Advisory RHSA-2025:8252

  • Red Hat Security Advisory RHSA-2025:8480

  • Red Hat Security Advisory RHSA-2025:8481

  • Red Hat Security Advisory RHSA-2025:8482

  • Red Hat Security Advisory RHSA-2025:8663

  • Red Hat Security Advisory RHSA-2025:9179

  • Red Hat CVE Analysis CVE-2025-32049

  • Red Hat Bug Report #2357066
  • 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-32906: libsoup HTTP Server 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