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

CVE-2025-12105: libsoup Use-After-Free Vulnerability

CVE-2025-12105 is a use-after-free flaw in the libsoup library affecting GNOME and WebKit applications. Attackers can exploit HTTP/2 message handling to cause denial-of-service. This article covers technical details, impact, and mitigation.

Published: April 29, 2026

CVE-2025-12105 Overview

A use-after-free vulnerability has been identified in the libsoup library, a critical HTTP client/server library widely used by GNOME desktop applications and WebKit-based browsers. The flaw exists in the asynchronous message queue handling mechanism for HTTP/2 communications. When network operations are aborted at specific timing intervals, an internal message queue item may be freed twice due to missing state synchronization, leading to memory corruption and potential application crashes.

Critical Impact

Remote attackers can exploit this vulnerability to cause denial-of-service conditions by triggering specific HTTP/2 read and cancel sequences, crashing affected applications without requiring authentication or user interaction.

Affected Products

  • libsoup (HTTP client/server library)
  • GNOME applications using libsoup
  • WebKit-based applications and browsers

Discovery Timeline

  • October 23, 2025 - CVE-2025-12105 published to NVD
  • April 15, 2026 - Last updated in NVD database

Technical Details for CVE-2025-12105

Vulnerability Analysis

This vulnerability (CWE-416: Use After Free) occurs within the asynchronous message queue handling code of libsoup during HTTP/2 communications. The library fails to properly synchronize state when network operations are aborted, creating a race condition where an internal message queue item can be freed multiple times.

The flaw is particularly dangerous because it can be triggered remotely over the network without any privileges or user interaction. An attacker positioned on the network can craft malicious HTTP/2 traffic to exploit the timing window between read operations and cancellation events. When the double-free condition is triggered, it corrupts memory structures, causing the affected application to crash.

The impact is limited to availability—the vulnerability does not allow attackers to read sensitive data or execute arbitrary code. However, for applications that rely on libsoup for critical functionality (such as web browsers or update mechanisms), a denial-of-service condition can significantly impact users.

Root Cause

The root cause is missing state synchronization in the asynchronous message queue handler. When an HTTP/2 network operation is cancelled while a read operation is in progress, the code path that handles the cancellation and the code path that handles the read completion can both attempt to free the same message queue item. This occurs because there is no mutex or atomic flag to track whether the item has already been freed, resulting in a classic double-free vulnerability.

Attack Vector

The attack vector is network-based and does not require authentication or user interaction. An attacker can exploit this vulnerability by:

  1. Establishing an HTTP/2 connection with a vulnerable application
  2. Initiating multiple concurrent requests to create message queue pressure
  3. Timing the abort of specific requests during the read phase
  4. Triggering the race condition where state synchronization is missing

The attacker needs to precisely time the cancellation to hit the vulnerable window between the read operation starting and the message queue item being properly marked as processed.

The fix implemented in GNOME Merge Request #481 addresses this by adding proper state synchronization to prevent the double-free condition. Technical details of the vulnerability and the remediation approach can be found in the Red Hat Bug Report #2405992.

Detection Methods for CVE-2025-12105

Indicators of Compromise

  • Unexpected crashes of applications using libsoup during HTTP/2 communications
  • Core dumps showing memory corruption in libsoup message queue functions
  • Repeated application restarts logged in system journals following network activity
  • Unusual patterns of HTTP/2 connection resets and cancellations in network logs

Detection Strategies

  • Monitor for segmentation faults and crashes in applications linked against libsoup
  • Implement application-level crash monitoring for GNOME applications and WebKit-based browsers
  • Analyze core dumps for stack traces indicating double-free conditions in soup_* functions
  • Deploy network intrusion detection rules to identify anomalous HTTP/2 cancel sequences

Monitoring Recommendations

  • Enable crash reporting and telemetry for libsoup-dependent applications
  • Configure system logging to capture application crashes with full backtrace information
  • Monitor for abnormal HTTP/2 RST_STREAM frame patterns in network traffic
  • Track libsoup library versions across your environment to identify unpatched systems

How to Mitigate CVE-2025-12105

Immediate Actions Required

  • Update libsoup to the latest patched version available for your distribution
  • Apply Red Hat security updates RHSA-2025:23139 or RHSA-2025:23437 if using RHEL-based systems
  • Restart all applications using libsoup after updating the library
  • Prioritize patching systems running internet-facing applications that use HTTP/2

Patch Information

Red Hat has released security advisories addressing this vulnerability:

  • Red Hat Security Advisory RHSA-2025:23139
  • Red Hat Security Advisory RHSA-2025:23437

The upstream fix is available in GNOME Merge Request #481. For detailed CVE information from Red Hat, see Red Hat CVE Details CVE-2025-12105.

Workarounds

  • Disable HTTP/2 in affected applications where configuration options are available
  • Implement network-level filtering to block suspicious HTTP/2 traffic patterns
  • Use a reverse proxy that handles HTTP/2 termination before passing requests to vulnerable applications
  • Consider temporarily downgrading to HTTP/1.1 for critical applications until patching is complete
bash
# Example: Check installed libsoup version on RHEL/Fedora systems
rpm -qa | grep libsoup

# Example: Update libsoup on RHEL/CentOS systems
sudo dnf update libsoup

# Example: Update libsoup on Debian/Ubuntu systems
sudo apt update && sudo apt upgrade libsoup2.4-1 libsoup-3.0-0

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechLibsoup

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.07%

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

  • Red Hat Security Advisory RHSA-2025:23437

  • Red Hat CVE Details CVE-2025-12105

  • Red Hat Bug Report #2405992

  • GNOME Merge Request #481
  • Related CVEs
  • CVE-2026-4271: Gnome Libsoup Use-After-Free Vulnerability

  • CVE-2025-32911: libsoup Use-After-Free Vulnerability

  • CVE-2026-5119: Gnome Libsoup Information Disclosure Flaw

  • CVE-2026-2436: libsoup SoupServer 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