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

CVE-2025-4948: libsoup HTTP Library DoS Vulnerability

CVE-2025-4948 is a denial-of-service flaw in libsoup HTTP library caused by integer underflow in multipart message processing. Applications using libsoup may crash unexpectedly, causing service disruption.

Updated: January 22, 2026

CVE-2025-4948 Overview

A critical integer underflow vulnerability has been identified in the soup_multipart_new_from_message() function of the libsoup HTTP library. Libsoup is widely used by GNOME and other applications to handle web communications, making this vulnerability particularly impactful across Linux desktop environments and server applications.

The flaw occurs when libsoup processes specially crafted multipart messages. Due to improper validation during internal calculations, an integer underflow condition can be triggered, causing the program to access invalid memory regions and crash. This vulnerability enables attackers to force any application or server using libsoup to exit unexpectedly, creating a significant denial-of-service (DoS) risk.

Critical Impact

Remote attackers can crash applications and services using libsoup by sending malicious multipart HTTP messages, causing widespread service disruption without authentication.

Affected Products

  • GNOME libsoup library
  • Red Hat Enterprise Linux (multiple versions)
  • Applications using libsoup for HTTP communications

Discovery Timeline

  • May 19, 2025 - CVE-2025-4948 published to NVD
  • November 18, 2025 - Last updated in NVD database

Technical Details for CVE-2025-4948

Vulnerability Analysis

This vulnerability is classified as CWE-191 (Integer Underflow). The flaw resides in the soup_multipart_new_from_message() function, which is responsible for parsing multipart HTTP messages. When processing boundary delimiters in multipart content, the function performs arithmetic operations on length values derived from user-controlled input.

The integer underflow occurs when the function attempts to calculate buffer boundaries or offset values. If a malicious multipart message is crafted with specific boundary parameters, the calculation can produce a negative value that wraps around to a very large positive integer due to unsigned integer representation. This causes subsequent memory operations to access invalid memory regions, leading to a crash.

The vulnerability is network-accessible and requires no authentication or user interaction, making it particularly dangerous for services exposed to the internet.

Root Cause

The root cause is insufficient validation of input parameters before performing arithmetic operations in the multipart message parsing logic. Specifically, the soup_multipart_new_from_message() function does not properly validate that calculated values remain within expected bounds before using them for memory operations. This oversight allows carefully crafted input to trigger an integer underflow condition.

Attack Vector

An attacker can exploit this vulnerability by sending a specially crafted HTTP multipart message to any application or service that uses libsoup for processing HTTP communications. The attack requires:

  1. Network access to a target application using libsoup
  2. The ability to send crafted multipart HTTP requests
  3. No authentication or special privileges

The vulnerability manifests in the multipart message boundary handling logic. When the library processes the malicious message, the integer underflow causes invalid memory access, resulting in application termination. For detailed technical analysis, refer to the GNOME Issue Tracker for libsoup #449 and the Red Hat CVE Analysis.

Detection Methods for CVE-2025-4948

Indicators of Compromise

  • Unexpected crashes or restarts of applications using libsoup (e.g., GNOME applications, web clients)
  • Segmentation fault errors in system logs related to libsoup or dependent applications
  • Abnormal HTTP traffic patterns with malformed multipart Content-Type headers
  • Core dump files indicating memory access violations in libsoup functions

Detection Strategies

  • Monitor application crash logs for segmentation faults originating from libsoup shared libraries
  • Implement network intrusion detection rules to identify malformed multipart HTTP requests with unusual boundary parameters
  • Configure application-level monitoring to detect repeated crashes of libsoup-dependent services
  • Use memory debugging tools (e.g., AddressSanitizer) during development to detect integer underflow conditions

Monitoring Recommendations

  • Enable crash reporting and centralized logging for all applications using libsoup
  • Monitor system stability metrics for GNOME desktop environments and web-facing services
  • Set up alerts for unusual patterns of service restarts or application failures
  • Review HTTP access logs for requests with suspicious multipart content characteristics

How to Mitigate CVE-2025-4948

Immediate Actions Required

  • Update libsoup to the latest patched version from your distribution's package repository
  • Apply Red Hat security advisories if running RHEL-based systems
  • Implement network-level filtering to block malformed multipart HTTP requests if possible
  • Consider temporarily restricting network access to affected services until patches are applied

Patch Information

Multiple security advisories have been released to address this vulnerability:

  • 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:21657

Additional details are available in Red Hat Bugzilla Entry #2367183.

Workarounds

  • Deploy a web application firewall (WAF) to inspect and filter malformed multipart HTTP requests before they reach vulnerable applications
  • Implement rate limiting on endpoints that process multipart content to reduce the impact of potential DoS attacks
  • If libsoup is not required for specific applications, consider using alternative HTTP libraries temporarily
  • Isolate affected services in network segments with restricted access until patching is complete
bash
# Update libsoup on RHEL/CentOS/Fedora systems
sudo dnf update libsoup --refresh

# Verify installed version after update
rpm -qa | grep libsoup

# Restart affected services after patching
sudo systemctl restart gdm
sudo systemctl restart gnome-shell

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

  • 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-191
  • 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-4948

  • Red Hat Bugzilla Entry #2367183

  • GNOME Issue Tracker for libsoup #449
  • Related CVEs
  • CVE-2026-2436: libsoup SoupServer DoS Vulnerability

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

  • CVE-2025-32906: libsoup HTTP Server 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