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

CVE-2026-1536: libsoup HTTP Header Injection Vulnerability

CVE-2026-1536 is an HTTP header injection flaw in libsoup that allows attackers to inject CRLF sequences via Content-Disposition headers. This post covers technical details, affected versions, impact, and mitigation.

Published: January 30, 2026

CVE-2026-1536 Overview

A flaw was found in libsoup that allows HTTP header injection through improper handling of the Content-Disposition header. An attacker who can control the input for the Content-Disposition header can inject CRLF (Carriage Return Line Feed) sequences into the header value. These sequences are then interpreted verbatim when the HTTP request or response is constructed, allowing arbitrary HTTP headers to be injected. This vulnerability can lead to HTTP header injection or HTTP response splitting without requiring authentication or user interaction.

Critical Impact

Unauthenticated attackers can inject arbitrary HTTP headers through CRLF sequences in the Content-Disposition header, potentially enabling cache poisoning, session hijacking, or cross-site scripting attacks via HTTP response splitting.

Affected Products

  • libsoup (all versions where Content-Disposition header parsing is vulnerable)

Discovery Timeline

  • 2026-01-28 - CVE CVE-2026-1536 published to NVD
  • 2026-01-29 - Last updated in NVD database

Technical Details for CVE-2026-1536

Vulnerability Analysis

This vulnerability exists in the libsoup HTTP library's handling of the Content-Disposition header. The core issue is that libsoup fails to properly sanitize CRLF sequences (\r\n) within user-controlled header values before incorporating them into HTTP messages. When an attacker supplies a malicious Content-Disposition value containing CRLF characters, these are passed through verbatim to the constructed HTTP request or response.

The vulnerability is classified under CWE-93 (Improper Neutralization of CRLF Sequences). This weakness allows attackers to manipulate HTTP message structures by injecting additional headers or even complete HTTP responses, fundamentally breaking the trust boundary between headers and body content.

Root Cause

The root cause is insufficient input validation and sanitization of the Content-Disposition header value in libsoup. The library does not strip or encode CRLF sequences (\r\n or %0D%0A) before using the header value in HTTP message construction. This allows the attacker-controlled content to break out of the intended header context and inject arbitrary headers or response content.

Attack Vector

This vulnerability is exploitable over the network without authentication or user interaction. An attacker who can influence the Content-Disposition header value—either directly through API calls or indirectly through application logic that processes attacker-controlled data—can inject CRLF sequences followed by malicious header content.

The attack flow involves crafting a Content-Disposition value such as attachment; filename="malicious\r\nX-Injected: evil" where the CRLF sequence terminates the original header and injects a new X-Injected header. In HTTP response splitting scenarios, attackers can inject complete HTTP responses, potentially serving malicious content to users or poisoning web caches.

For detailed technical information about this vulnerability, refer to the Red Hat CVE-2026-1536 Advisory and Red Hat Bug Report #2433834.

Detection Methods for CVE-2026-1536

Indicators of Compromise

  • HTTP traffic containing URL-encoded or raw CRLF sequences (%0D%0A, \r\n) within Content-Disposition header values
  • Unexpected or duplicate HTTP headers appearing in web server logs
  • Cache entries containing inconsistent or malicious content indicating potential cache poisoning
  • Application logs showing malformed Content-Disposition values with embedded newline characters

Detection Strategies

  • Implement deep packet inspection rules to detect CRLF sequences within HTTP header values, particularly in Content-Disposition headers
  • Monitor web application firewalls (WAF) for injection patterns containing %0D%0A, %0d%0a, \r\n, or their Unicode equivalents
  • Review libsoup version inventory across systems to identify potentially vulnerable installations
  • Deploy SentinelOne Singularity to detect anomalous HTTP traffic patterns associated with header injection attacks

Monitoring Recommendations

  • Enable detailed HTTP header logging on web servers and reverse proxies to capture full header content
  • Configure alerting for HTTP responses containing unexpected header duplications or anomalous header ordering
  • Monitor for cache poisoning indicators such as users receiving different content for the same URL
  • Implement runtime application self-protection (RASP) to detect header injection attempts at the application layer

How to Mitigate CVE-2026-1536

Immediate Actions Required

  • Inventory all systems and applications using libsoup and assess exposure to this vulnerability
  • Implement input validation at the application layer to reject or sanitize CRLF sequences in user-controlled data that may reach Content-Disposition headers
  • Deploy web application firewall rules to block requests containing CRLF injection patterns
  • Review application code that constructs Content-Disposition headers to ensure proper encoding of user input

Patch Information

Monitor the Red Hat CVE-2026-1536 Advisory for official patch information and updates. Apply vendor-supplied patches as soon as they become available. For systems using libsoup through Linux distribution packages, check your distribution's security advisories for updated packages.

Workarounds

  • Implement strict input validation to strip or reject any CRLF sequences from data used in HTTP headers
  • Use allowlist-based validation for Content-Disposition filename values, permitting only alphanumeric characters and safe symbols
  • Deploy a reverse proxy or WAF configured to normalize and sanitize HTTP headers before they reach the application
  • Consider disabling or restricting functionality that allows user-controlled Content-Disposition values until patches are applied
bash
# Example: WAF rule to block CRLF injection attempts (ModSecurity format)
SecRule ARGS|ARGS_NAMES|REQUEST_HEADERS "@rx (\%0d|\%0a|\\r|\\n)" \
    "id:100001,phase:2,deny,status:403,msg:'CRLF Injection Attempt Blocked'"

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLibsoup

  • SeverityMEDIUM

  • CVSS Score5.8

  • EPSS Probability0.05%

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

  • Red Hat Bug Report #2433834
  • Related CVEs
  • CVE-2026-1467: libsoup CRLF Injection Vulnerability

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

  • CVE-2026-2436: libsoup SoupServer DoS Vulnerability

  • CVE-2026-3632: Gnome Libsoup SSRF 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