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

CVE-2026-1760: SoupServer HTTP Request Smuggling DoS Flaw

CVE-2026-1760 is an HTTP request smuggling flaw in SoupServer that enables denial-of-service attacks. Attackers exploit improper handling of chunked transfer encoding to smuggle requests. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: February 6, 2026

CVE-2026-1760 Overview

A flaw was found in SoupServer that enables HTTP request smuggling attacks. This vulnerability occurs because SoupServer improperly handles requests that combine Transfer-Encoding: chunked and Connection: keep-alive headers. A remote, unauthenticated client can exploit this by sending specially crafted requests, causing SoupServer to fail to close the connection as required by RFC 9112. This allows the attacker to smuggle additional requests over the persistent connection, leading to unintended request processing and potential denial-of-service (DoS) conditions.

Critical Impact

Remote attackers can exploit this HTTP request smuggling vulnerability to smuggle malicious requests over persistent connections, potentially causing service disruption or enabling further attacks on backend systems.

Affected Products

  • SoupServer (libsoup HTTP server component)
  • Applications and services utilizing SoupServer for HTTP request handling
  • GNOME-based applications leveraging libsoup networking libraries

Discovery Timeline

  • February 2, 2026 - CVE-2026-1760 published to NVD
  • February 3, 2026 - Last updated in NVD database

Technical Details for CVE-2026-1760

Vulnerability Analysis

This vulnerability is classified as CWE-444 (Inconsistent Interpretation of HTTP Requests, also known as HTTP Request Smuggling). The flaw exists in how SoupServer processes incoming HTTP requests that utilize chunked transfer encoding alongside persistent connections.

When a client sends a request with both Transfer-Encoding: chunked and Connection: keep-alive headers, SoupServer fails to properly terminate the connection under conditions mandated by RFC 9112. This RFC specifies strict requirements for handling chunked encoding in HTTP/1.1, particularly regarding when connections must be closed to prevent request boundary confusion.

The improper connection handling creates an opportunity for attackers to inject additional HTTP requests into the persistent connection stream. These smuggled requests may be processed with unintended context, potentially bypassing security controls or causing the server to enter an inconsistent state.

Root Cause

The root cause stems from SoupServer's non-compliant implementation of RFC 9112 connection management. Specifically, the server does not properly enforce connection closure requirements when processing chunked transfer-encoded requests. This implementation gap allows the connection to remain open when it should be terminated, enabling request desynchronization between the client and server's interpretation of request boundaries.

Attack Vector

The attack can be executed remotely over the network by an unauthenticated attacker. The exploitation process involves:

  1. The attacker establishes a persistent connection to the vulnerable SoupServer instance
  2. A specially crafted HTTP request is sent combining Transfer-Encoding: chunked with Connection: keep-alive headers
  3. Due to improper connection handling, SoupServer fails to close the connection as required
  4. The attacker appends additional malicious requests that get smuggled through the persistent connection
  5. These smuggled requests are processed out of context, potentially causing denial of service or enabling secondary attacks

The vulnerability mechanism exploits the discrepancy between how the server interprets chunked request boundaries versus how the connection lifecycle should be managed according to HTTP specifications. Attackers craft requests where the apparent end of one request, as interpreted by chunked encoding parsing, differs from where the server believes the request stream should terminate.

Detection Methods for CVE-2026-1760

Indicators of Compromise

  • Unusual patterns of persistent HTTP connections with malformed or ambiguous chunked encoding
  • Unexpected HTTP requests appearing in server logs without corresponding client-initiated sessions
  • Evidence of duplicate or out-of-sequence request processing in application logs
  • Connection anomalies where keep-alive connections persist longer than expected

Detection Strategies

  • Deploy network traffic analysis to identify HTTP requests with suspicious combinations of Transfer-Encoding and Connection headers
  • Implement deep packet inspection rules to detect potential request smuggling patterns in HTTP traffic
  • Monitor SoupServer logs for signs of request desynchronization or unexpected request sequences
  • Configure web application firewalls (WAF) to flag requests with ambiguous transfer encoding specifications

Monitoring Recommendations

  • Enable verbose logging on SoupServer instances to capture detailed request header information
  • Set up alerting for anomalous connection behavior patterns on services using libsoup
  • Monitor system resources for signs of DoS conditions resulting from request smuggling exploitation
  • Review application logs regularly for evidence of unintended request processing

How to Mitigate CVE-2026-1760

Immediate Actions Required

  • Review deployed applications for SoupServer/libsoup usage and assess exposure
  • Implement network-level filtering to restrict access to affected services where possible
  • Deploy web application firewall rules to detect and block potential request smuggling attempts
  • Monitor affected systems closely for signs of exploitation while awaiting patches

Patch Information

Consult the Red Hat CVE Advisory for the latest patch information and affected package versions. Additional technical details are available in Red Hat Bug Report #2435951. Apply vendor-provided security updates as soon as they become available for your distribution.

Workarounds

  • Consider disabling persistent connections (keep-alive) on affected SoupServer instances if operationally feasible
  • Deploy a reverse proxy in front of SoupServer that properly normalizes HTTP requests before forwarding
  • Implement strict request validation at the application layer to reject ambiguous header combinations
  • Restrict network access to affected services to trusted clients only until patches are applied
bash
# Example: Configure reverse proxy to normalize requests (nginx example)
# Add to server block configuration to disable chunked transfer encoding passthrough
proxy_http_version 1.1;
proxy_set_header Connection "";
chunked_transfer_encoding off;

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechSoupserver

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.01%

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

  • Red Hat Bug Report #2435951
  • Latest CVEs
  • CVE-2025-9185: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9184: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9180: Mozilla Firefox Auth Bypass Vulnerability

  • CVE-2025-8030: Mozilla Firefox RCE 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