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

CVE-2026-26365: Akamai CDN HTTP Request Smuggling Flaw

CVE-2026-26365 is an HTTP request smuggling vulnerability in Akamai CDN edge servers caused by mishandling of hop-by-hop headers. Attackers can exploit invalid message framing to manipulate origin server requests.

Published: February 27, 2026

CVE-2026-26365 Overview

CVE-2026-26365 is an HTTP Request Smuggling vulnerability affecting Akamai Ghost on Akamai CDN edge servers. The vulnerability arises from improper handling of custom hop-by-hop HTTP headers, specifically when processing requests containing the header Connection: Transfer-Encoding. This mishandling can result in forwarded requests with invalid message framing, which may cause origin servers to parse request bodies incorrectly—a classic HTTP request smuggling scenario.

Critical Impact

Attackers can exploit this vulnerability to bypass security controls, poison web caches, and potentially access unauthorized data or resources by smuggling malicious requests through Akamai CDN edge servers to origin servers.

Affected Products

  • Akamai Ghost on Akamai CDN edge servers before 2026-02-06

Discovery Timeline

  • 2026-02-23 - CVE-2026-26365 published to NVD
  • 2026-02-23 - Last updated in NVD database

Technical Details for CVE-2026-26365

Vulnerability Analysis

This vulnerability falls under CWE-444 (Inconsistent Interpretation of HTTP Requests), commonly known as HTTP Request Smuggling or HTTP Desync attacks. The root issue occurs when the Akamai Ghost CDN edge server incorrectly processes the Connection header containing Transfer-Encoding as a hop-by-hop header directive.

In compliant HTTP/1.1 implementations, the Connection header can specify other headers that should be treated as hop-by-hop (connection-specific) and removed before forwarding. However, when Transfer-Encoding is listed in the Connection header, Akamai Ghost's processing path creates an inconsistency in how the request is interpreted between the CDN and the origin server.

The consequence is that the edge server may strip or modify the Transfer-Encoding header while forwarding the request, but the request body remains formatted for chunked encoding. This creates a desynchronization where the origin server interprets the message boundaries differently than the CDN expected.

Root Cause

The root cause lies in the improper handling of the Connection header field when it contains Transfer-Encoding as a value. According to HTTP specifications, Transfer-Encoding is a hop-by-hop header by default, but the way Akamai Ghost processes this directive in certain processing paths results in malformed message framing being forwarded to origin servers.

This creates an ambiguous situation where:

  1. The CDN may interpret the request using chunked transfer encoding
  2. The origin server receives a request without proper Transfer-Encoding indication
  3. The message body boundaries become misaligned between frontend and backend

Attack Vector

The attack is network-based and requires no user interaction or special privileges. An attacker sends a specially crafted HTTP request to an Akamai CDN endpoint with the header Connection: Transfer-Encoding. Depending on the Akamai processing path, this triggers the vulnerability.

Once the message framing becomes inconsistent, an attacker can:

  • Prepend malicious content to subsequent users' requests
  • Bypass frontend security controls implemented at the CDN level
  • Poison cached responses affecting multiple users
  • Access sensitive endpoints that should be restricted

The attack complexity is high as exploitation depends on specific Akamai processing paths and origin server configurations. However, successful exploitation can affect other users due to the scope-changing nature of request smuggling attacks.

Detection Methods for CVE-2026-26365

Indicators of Compromise

  • Unusual HTTP requests containing Connection: Transfer-Encoding header combinations in CDN access logs
  • Backend server logs showing requests with mismatched content lengths or unexpected request body parsing
  • Evidence of cache poisoning with responses that don't match legitimate request patterns
  • Security alert triggers for HTTP desynchronization or smuggling detection rules

Detection Strategies

  • Implement HTTP request smuggling detection rules that flag requests with suspicious Connection header values containing Transfer-Encoding
  • Monitor for discrepancies between frontend CDN logs and backend origin server logs that indicate message framing inconsistencies
  • Deploy web application firewall rules specifically designed to detect HTTP desync attack patterns
  • Review CDN access logs for requests with unusual hop-by-hop header configurations

Monitoring Recommendations

  • Enable verbose logging on origin servers to capture full request headers and body parsing events
  • Configure alerting for anomalous request patterns that match known HTTP smuggling techniques
  • Implement correlation between CDN and origin server logs to detect message framing discrepancies
  • Monitor cache behavior for unexpected entries that may indicate successful cache poisoning

How to Mitigate CVE-2026-26365

Immediate Actions Required

  • Verify that Akamai CDN configurations have been updated with patches released after 2026-02-06
  • Review Akamai account settings and ensure automatic security updates are enabled
  • Audit origin server configurations to ensure strict HTTP parsing modes are enabled where available
  • Implement additional request validation at the origin server level as defense in depth

Patch Information

Akamai has addressed this vulnerability in CDN edge server updates deployed on 2026-02-06. As Akamai Ghost is a managed CDN service, patches are applied by Akamai to their infrastructure. Customers should verify with Akamai support that their CDN configuration is utilizing the patched version. For detailed technical information about this vulnerability and Akamai's remediation, refer to Akamai's security research blog post.

Workarounds

  • Configure origin servers to reject requests containing Connection: Transfer-Encoding header combinations
  • Implement strict HTTP parsing on origin servers that normalizes or rejects ambiguous requests
  • Deploy a web application firewall at the origin level with rules to detect and block HTTP smuggling attempts
  • Consider implementing HTTP/2 end-to-end where possible, as it eliminates many HTTP/1.1 smuggling attack vectors

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechAkamai

  • SeverityMEDIUM

  • CVSS Score4.0

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-444
  • Technical References
  • Akamai Blog on CVE-2026-26365
  • Latest CVEs
  • CVE-2026-35467: Browser API Key Information Disclosure

  • CVE-2026-35466: cveInterface.js XSS Vulnerability

  • CVE-2026-30252: ZenShare Suite XSS Vulnerability

  • CVE-2026-30251: ZenShare Suite v17.0 XSS Vulnerability
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