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

CVE-2025-32050: libsoup Buffer Overflow Vulnerability

CVE-2025-32050 is a buffer overflow vulnerability in libsoup's append_param_quoted() function that can cause a buffer under-read. This article covers the technical details, affected versions, security impact, and mitigation strategies.

Updated: January 22, 2026

CVE-2025-32050 Overview

A buffer under-read vulnerability has been discovered in libsoup, a widely-used HTTP client/server library for GNOME. The flaw exists in the append_param_quoted() function, which may contain an overflow bug resulting in a buffer under-read condition. This vulnerability could allow a remote attacker to cause a denial of service by triggering the memory access issue through specially crafted network requests.

Critical Impact

Remote attackers can potentially cause application crashes or denial of service by exploiting the buffer under-read in libsoup's parameter handling function, affecting applications that rely on this library for HTTP communications.

Affected Products

  • libsoup (GNOME HTTP library)
  • Red Hat Enterprise Linux systems using libsoup
  • Debian-based distributions with vulnerable libsoup versions

Discovery Timeline

  • April 3, 2025 - CVE-2025-32050 published to NVD
  • November 3, 2025 - Last updated in NVD database

Technical Details for CVE-2025-32050

Vulnerability Analysis

This vulnerability is classified under CWE-127 (Buffer Under-read), indicating that the append_param_quoted() function in libsoup can read memory before the start of the intended buffer. Buffer under-reads occur when code attempts to access memory at a negative offset or before the allocated buffer boundary. In the context of libsoup, this function is responsible for handling quoted parameter appending during HTTP header or content processing.

The vulnerability requires network access and has high attack complexity, meaning successful exploitation depends on specific conditions being met. While the vulnerability does not directly impact confidentiality or integrity, it can result in high availability impact through potential application crashes or denial of service conditions.

Root Cause

The root cause lies in improper boundary checking within the append_param_quoted() function. When processing input parameters, the function may calculate buffer offsets incorrectly, leading to memory reads that extend before the allocated buffer's starting address. This type of flaw typically occurs when string manipulation or parameter parsing routines fail to properly validate index calculations or pointer arithmetic.

Attack Vector

The attack vector is network-based, allowing remote exploitation without requiring authentication. An attacker could craft malicious HTTP requests containing specially formatted parameters that trigger the vulnerable code path in append_param_quoted(). When the libsoup library processes these malformed parameters, it may attempt to read memory from before the buffer boundary, potentially causing:

  • Application crashes due to invalid memory access
  • Denial of service affecting services relying on libsoup
  • Potential information disclosure if the under-read data is reflected in responses

The vulnerability mechanism involves incorrect buffer boundary calculations during parameter quoting operations. When the append_param_quoted() function processes certain input, it may compute a negative offset or otherwise access memory before the intended buffer start. For detailed technical analysis, refer to the Red Hat Bugzilla Report #2357067 and the Red Hat CVE Analysis.

Detection Methods for CVE-2025-32050

Indicators of Compromise

  • Unexpected crashes in applications using libsoup for HTTP processing
  • Segmentation faults or memory access violations in libsoup-dependent services
  • Abnormal HTTP requests with malformed or oversized quoted parameters
  • Core dumps showing append_param_quoted() in the call stack

Detection Strategies

  • Monitor system logs for segmentation faults in processes using libsoup
  • Implement network intrusion detection rules to identify malformed HTTP parameters
  • Use memory sanitizers (ASan, MSan) during development and testing to detect under-read conditions
  • Deploy application-level monitoring to detect abnormal terminations in HTTP handling code

Monitoring Recommendations

  • Enable core dump collection for services using libsoup to capture crash information
  • Configure centralized logging to aggregate crash reports from affected systems
  • Implement health checks for critical services dependent on libsoup
  • Monitor for unusual patterns in HTTP request parameters that could indicate exploitation attempts

How to Mitigate CVE-2025-32050

Immediate Actions Required

  • Update libsoup to the latest patched version available for your distribution
  • Review and apply relevant Red Hat Security Errata if running RHEL-based systems
  • Prioritize patching internet-facing services that utilize libsoup for HTTP processing
  • Consider implementing network-level filtering to restrict access to vulnerable services until patching is complete

Patch Information

Multiple vendors have released security updates to address this vulnerability:

  • Red Hat Security Errata RHSA-2025:4440
  • Red Hat Security Errata RHSA-2025:4508
  • Red Hat Security Errata RHSA-2025:4560
  • Red Hat Security Errata RHSA-2025:4568
  • Red Hat Security Errata RHSA-2025:7436
  • Red Hat Security Errata RHSA-2025:8292
  • Debian LTS Security Announcement

Consult your distribution's security advisory page for specific package versions and installation instructions.

Workarounds

  • Restrict network access to services using libsoup from untrusted networks
  • Implement a web application firewall (WAF) to filter potentially malicious HTTP parameters
  • Consider disabling or limiting functionality that processes quoted parameters if feasible
  • Use network segmentation to isolate vulnerable services until patches can be applied
bash
# Check installed libsoup version on Red Hat/CentOS
rpm -qa | grep libsoup

# Check installed libsoup version on Debian/Ubuntu
dpkg -l | grep libsoup

# Update libsoup on Red Hat/CentOS
sudo dnf update libsoup --refresh

# Update libsoup on Debian/Ubuntu
sudo apt update && sudo apt upgrade libsoup*

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

  • SeverityMEDIUM

  • CVSS Score5.9

  • EPSS Probability0.24%

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

  • Red Hat Security Errata RHSA-2025:4508

  • Red Hat Security Errata RHSA-2025:4560

  • Red Hat Security Errata RHSA-2025:4568

  • Red Hat Security Errata RHSA-2025:7436

  • Red Hat Security Errata RHSA-2025:8292

  • Red Hat CVE Analysis CVE-2025-32050

  • Red Hat Bugzilla Report #2357067

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

  • CVE-2026-0716: libsoup Buffer Overflow Vulnerability

  • CVE-2026-0719: libsoup Buffer Overflow Vulnerability

  • CVE-2025-32914: 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