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
    • 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-32914

CVE-2025-32914: libsoup Buffer Overflow Vulnerability

CVE-2025-32914 is a buffer overflow flaw in libsoup's soup_multipart_new_from_message() function that enables malicious HTTP clients to trigger out-of-bounds reads. This article covers technical details, affected versions, impact, and mitigation strategies.

Updated: January 22, 2026

CVE-2025-32914 Overview

A critical out-of-bounds read vulnerability has been discovered in libsoup, a popular HTTP client/server library used extensively in GNOME-based applications and other Linux software. The flaw exists in the soup_multipart_new_from_message() function, which improperly handles multipart message parsing. A malicious HTTP client can exploit this vulnerability to induce the libsoup server to read memory beyond allocated buffer boundaries.

Critical Impact

This vulnerability allows remote attackers to potentially read sensitive information from server memory or cause denial of service through application crashes, affecting any application using libsoup for HTTP multipart message processing.

Affected Products

  • libsoup (GNOME HTTP library)
  • Applications using libsoup for multipart message handling
  • Red Hat Enterprise Linux and derivatives

Discovery Timeline

  • 2025-04-14 - CVE-2025-32914 published to NVD
  • 2025-11-18 - Last updated in NVD database

Technical Details for CVE-2025-32914

Vulnerability Analysis

This vulnerability is classified as CWE-125 (Out-of-bounds Read), representing a memory safety issue in the libsoup library. The soup_multipart_new_from_message() function is responsible for parsing HTTP multipart messages, commonly used for file uploads and form submissions. The function fails to properly validate boundary conditions when processing incoming multipart data, allowing read operations to access memory outside the intended buffer.

The vulnerability can be triggered remotely over the network, though exploitation requires specific conditions to be met. Successful exploitation could result in unauthorized disclosure of sensitive information stored in adjacent memory regions or cause the application to crash, leading to denial of service. The attack does not require any authentication or user interaction, making it a significant concern for publicly exposed services utilizing libsoup.

Root Cause

The root cause of this vulnerability lies in insufficient bounds checking within the soup_multipart_new_from_message() function. When parsing multipart message boundaries, the function does not adequately verify that read operations remain within the allocated buffer space. This allows crafted HTTP requests with malformed multipart content to trigger reads beyond the intended memory region.

The out-of-bounds read occurs during the boundary string parsing phase, where the function iterates through the message content searching for boundary delimiters. Without proper length validation, a malicious client can craft a request that causes the function to read past the end of the allocated buffer.

Attack Vector

The attack is network-based and can be executed by any HTTP client capable of sending crafted multipart requests to a vulnerable libsoup server. The attacker would construct an HTTP request with specially crafted multipart content designed to trigger the out-of-bounds read condition.

The exploitation scenario involves:

  1. An attacker identifies a target server using libsoup for HTTP handling
  2. The attacker sends a malicious HTTP request with crafted multipart boundaries
  3. The soup_multipart_new_from_message() function processes the request
  4. The malformed boundaries cause the function to read beyond buffer limits
  5. This results in information disclosure or application crash

No verified proof-of-concept code is publicly available for this vulnerability. For technical implementation details, refer to the Red Hat Bug Report #2359358 and the associated security advisories.

Detection Methods for CVE-2025-32914

Indicators of Compromise

  • Unexpected crashes in applications utilizing libsoup with multipart processing
  • Memory access violations or segmentation faults in libsoup-dependent services
  • Unusual HTTP multipart requests with malformed or excessive boundary strings
  • Application logs showing parsing errors in multipart message handling

Detection Strategies

  • Monitor for anomalous HTTP multipart requests targeting libsoup-based services
  • Implement application-level logging to detect unusual multipart boundary patterns
  • Deploy memory safety monitoring tools to identify out-of-bounds read attempts
  • Use network intrusion detection systems to identify malformed HTTP multipart traffic

Monitoring Recommendations

  • Enable verbose logging for libsoup-based applications to capture parsing errors
  • Monitor system logs for segmentation faults or memory access violations in affected applications
  • Implement rate limiting on multipart endpoints to mitigate potential exploitation attempts
  • Review HTTP traffic patterns for unusual multipart message characteristics

How to Mitigate CVE-2025-32914

Immediate Actions Required

  • Update libsoup to the latest patched version available from your distribution
  • Review all applications using libsoup and ensure they are linked against patched versions
  • Consider temporarily disabling multipart message processing if not required
  • Implement network-level filtering to restrict access to vulnerable endpoints

Patch Information

Multiple Linux distributions have released security patches addressing this vulnerability. Administrators should apply the appropriate updates based on their distribution:

  • Red Hat Enterprise Linux: Multiple security advisories have been published including RHSA-2025:7505, RHSA-2025:8126, RHSA-2025:8132, and others. Refer to the Red Hat CVE Analysis for complete patch availability.
  • Debian: Security updates have been announced via the Debian LTS Announcement.

Workarounds

  • Restrict network access to services using libsoup multipart functionality
  • Implement a web application firewall (WAF) with rules to filter malformed multipart requests
  • Use reverse proxies to validate and sanitize HTTP multipart content before reaching libsoup
  • Consider containerization or sandboxing of vulnerable applications to limit impact
bash
# Example: Update libsoup on Red Hat-based systems
sudo dnf update libsoup --security

# Example: Update libsoup on Debian-based systems
sudo apt-get update && sudo apt-get install --only-upgrade libsoup2.4-1

# Verify installed libsoup version
rpm -qa | grep libsoup  # RHEL/CentOS/Fedora
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
  • TypeBuffer Overflow

  • Vendor/TechLibsoup

  • SeverityHIGH

  • CVSS Score7.4

  • EPSS Probability0.13%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-125
  • Technical References
  • Red Hat Security Advisory RHSA-2025:21657

  • Red Hat Security Advisory RHSA-2025:7505

  • Red Hat Security Advisory RHSA-2025:8126

  • 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-32914

  • Red Hat Bug Report #2359358

  • Debian LTS Announcement April 2025
  • Related CVEs
  • CVE-2026-1761: libsoup Buffer Overflow Vulnerability

  • CVE-2026-0716: libsoup Buffer Overflow Vulnerability

  • CVE-2026-0719: libsoup Buffer Overflow Vulnerability

  • CVE-2024-52531: GNOME Libsoup Buffer Overflow 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