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-2026-2369

CVE-2026-2369: libsoup Information Disclosure Flaw

CVE-2026-2369 is an information disclosure vulnerability in libsoup caused by an integer underflow when processing zero-length resources. This post covers the technical details, affected versions, impact, and mitigation.

Published: March 20, 2026

CVE-2026-2369 Overview

A flaw was found in libsoup, the HTTP client/server library for GNOME. An integer underflow vulnerability occurs when processing content with a zero-length resource, leading to a buffer overread. This can allow an attacker to potentially access sensitive information or cause an application level denial of service.

Critical Impact

This vulnerability can be exploited remotely over a network without authentication to cause information disclosure or denial of service conditions in applications using libsoup for HTTP processing.

Affected Products

  • libsoup (GNOME HTTP library)
  • Applications built with libsoup for HTTP client/server functionality
  • GNOME-based systems utilizing libsoup

Discovery Timeline

  • 2026-03-19 - CVE-2026-2369 published to NVD
  • 2026-03-19 - Last updated in NVD database

Technical Details for CVE-2026-2369

Vulnerability Analysis

This vulnerability is classified as CWE-191 (Integer Underflow). The flaw exists in libsoup's content processing routines when handling HTTP responses or requests containing zero-length resources. When the library attempts to calculate buffer sizes for such content, an arithmetic underflow condition occurs, causing the computed size to wrap around to an unexpectedly large value.

The resulting buffer overread allows an attacker to read memory contents beyond the intended buffer boundaries. This can lead to information disclosure if sensitive data resides in adjacent memory regions, or trigger a crash resulting in denial of service if the overread accesses unmapped memory.

Root Cause

The root cause is insufficient validation of resource content length before performing arithmetic operations. When a zero-length resource is encountered, the code performs a subtraction operation without checking if the result would underflow. This causes the calculated buffer size to become a large positive integer instead of zero or a negative value, leading to subsequent memory access violations.

Attack Vector

The vulnerability is exploitable over the network by an attacker who can send specially crafted HTTP responses to applications using libsoup, or by triggering requests to malicious servers that return zero-length content. The attack does not require authentication or user interaction, making it particularly concerning for server-side applications and automated HTTP clients.

An attacker could craft an HTTP response with content headers indicating a specific content length, but provide zero actual content bytes. When libsoup processes this malformed response, the integer underflow triggers a buffer overread condition that may expose sensitive memory contents in the response to the attacker or crash the application.

Detection Methods for CVE-2026-2369

Indicators of Compromise

  • Unexpected application crashes in processes using libsoup for HTTP operations
  • Memory access violation errors in system logs associated with HTTP parsing
  • Anomalous HTTP traffic patterns with zero-length content bodies paired with non-zero content-length headers
  • Core dumps showing buffer overread conditions in libsoup library functions

Detection Strategies

  • Monitor for abnormal HTTP responses containing mismatched content-length headers and body sizes
  • Implement network-based detection rules for HTTP traffic with zero-length content anomalies
  • Enable memory protection features (ASLR, stack canaries) to detect exploitation attempts
  • Use application-level logging to track libsoup parsing operations and errors

Monitoring Recommendations

  • Deploy intrusion detection signatures for malformed HTTP content targeting libsoup
  • Monitor system logs for segmentation faults or memory violations in libsoup-dependent applications
  • Implement anomaly detection for HTTP responses with unusual content-length patterns
  • Enable crash reporting and analysis for applications utilizing libsoup

How to Mitigate CVE-2026-2369

Immediate Actions Required

  • Update libsoup to the latest patched version as soon as vendor updates are available
  • Monitor the Red Hat CVE Advisory for patch availability
  • Review the GNOME Issue Tracker Entry for upstream fix status
  • Implement network-level filtering to detect and block malformed HTTP responses

Patch Information

Patch information is being tracked through the official channels. Consult the Red Hat Bug Report for distribution-specific patch availability. The upstream fix is being coordinated through the GNOME project's issue tracker.

Organizations should prioritize patching based on the medium severity rating and the network-accessible attack vector. Systems running internet-facing applications that utilize libsoup should be prioritized for updates.

Workarounds

  • Implement input validation at the application layer to reject zero-length content before passing to libsoup
  • Deploy a web application firewall (WAF) to filter malformed HTTP responses before they reach vulnerable applications
  • Consider running libsoup-dependent applications in sandboxed environments to limit the impact of potential exploitation
  • Enable memory protection mechanisms such as Address Space Layout Randomization (ASLR) to reduce exploitation success rates
bash
# Configuration example
# Enable memory protection features on Linux systems
# Verify ASLR is enabled
cat /proc/sys/kernel/randomize_va_space
# Should return 2 for full randomization

# Check libsoup version on Fedora/RHEL systems
rpm -q libsoup

# Check libsoup version on Debian/Ubuntu systems
dpkg -l libsoup*

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechLibsoup

  • SeverityMEDIUM

  • CVSS Score6.5

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-191
  • Technical References
  • Red Hat CVE Advisory

  • Red Hat Bug Report

  • GNOME Issue Tracker Entry
  • Related CVEs
  • CVE-2026-5119: Gnome Libsoup Information Disclosure Flaw

  • CVE-2025-11021: libsoup Information Disclosure Vulnerability

  • CVE-2026-2443: libsoup Information Disclosure Vulnerability

  • CVE-2026-1801: libsoup HTTP Request Smuggling Flaw
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