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

CVE-2026-42926: NGINX Open Source RCE Vulnerability

CVE-2026-42926 is a remote code execution vulnerability in NGINX Open Source affecting HTTP/2 proxy configurations. Attackers can inject frame headers to upstream peers. This article covers technical details, impact, and mitigations.

Published: May 17, 2026

CVE-2026-42926 Overview

CVE-2026-42926 is an improper input handling vulnerability in NGINX Open Source [CWE-172]. The flaw appears when NGINX is configured to proxy HTTP/2 traffic by setting proxy_http_version to 2 and also uses the proxy_set_body directive. Under this configuration, an attacker can inject HTTP/2 frame headers and payload bytes into traffic forwarded to the upstream peer. The issue affects the integrity of upstream communications but does not directly compromise confidentiality or availability of the proxy itself. F5 published advisory K000161131 documenting the issue. Software versions that have reached End of Technical Support (EoTS) were not evaluated.

Critical Impact

Attackers can inject arbitrary HTTP/2 frame headers and payload bytes into upstream traffic, potentially manipulating backend request semantics.

Affected Products

  • NGINX Open Source configured with proxy_http_version 2 and proxy_set_body
  • NGINX Open Source deployments acting as HTTP/2 reverse proxies
  • Versions outside End of Technical Support scope (see vendor advisory)

Discovery Timeline

  • 2026-05-13 - CVE-2026-42926 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-42926

Vulnerability Analysis

The vulnerability resides in how NGINX constructs upstream HTTP/2 requests when the proxy_set_body directive overrides the request body. When proxy_http_version is set to 2, NGINX frames the substituted body as HTTP/2 DATA frames before sending it to the upstream peer. Attacker-influenced content within the request can include bytes that NGINX fails to validate or escape, allowing those bytes to be interpreted as additional frame headers and payloads by the upstream server.

The weakness is classified as [CWE-172] Encoding Error. The proxy does not adequately sanitize or boundary-check the data placed into the upstream HTTP/2 stream. As a result, the attacker controls bytes that the upstream parser treats as legitimate protocol structures.

Root Cause

The root cause is improper encoding of body data placed into HTTP/2 DATA frames when proxy_set_body is in use together with HTTP/2 upstream proxying. NGINX trusts the framed output without enforcing strict frame boundary integrity, allowing attacker-supplied bytes to escape the intended DATA frame context.

Attack Vector

An unauthenticated remote attacker sends a crafted HTTP request to the NGINX proxy. The request includes data that influences the body substituted by proxy_set_body. When NGINX forwards the request to the HTTP/2 upstream, the attacker-controlled bytes are emitted within or alongside DATA frames. The upstream server parses the injected frame headers and payloads as if they were legitimate, enabling request manipulation against the backend.

No verified public proof-of-concept code is available. Refer to the F5 Article K000161131 for vendor-published technical details.

Detection Methods for CVE-2026-42926

Indicators of Compromise

  • Unexpected HTTP/2 frames or stream IDs appearing in upstream server logs from NGINX proxy sources
  • Backend application logs showing requests with malformed or duplicated headers not originated by legitimate clients
  • Anomalous request body sizes or content patterns on upstream peers behind an NGINX HTTP/2 proxy

Detection Strategies

  • Audit NGINX configurations for the combination of proxy_http_version 2 and proxy_set_body directives, flagging any matches as in-scope assets
  • Inspect HTTP/2 frame sequences between NGINX and upstream peers using protocol-aware network monitoring
  • Correlate client request payloads with upstream-observed requests to identify mismatches indicating injection

Monitoring Recommendations

  • Enable verbose upstream logging on backend HTTP/2 servers to capture frame-level anomalies
  • Forward NGINX access and error logs to a centralized logging or SIEM platform for correlation
  • Alert on protocol violations reported by upstream HTTP/2 implementations such as PROTOCOL_ERROR or FRAME_SIZE_ERROR

How to Mitigate CVE-2026-42926

Immediate Actions Required

  • Inventory all NGINX Open Source deployments and identify configurations using proxy_http_version 2 with proxy_set_body
  • Apply the fixed NGINX Open Source release referenced in F5 Article K000161131 once available for your version
  • Restrict network exposure of affected NGINX instances until remediation is complete

Patch Information

F5 published advisory K000161131 covering this vulnerability. Administrators should consult the advisory for the list of fixed versions and upgrade guidance. Versions at End of Technical Support are not evaluated and should be replaced with a supported release.

Workarounds

  • Set proxy_http_version to 1.1 for upstream communication where proxy_set_body is required
  • Remove the proxy_set_body directive where it is not strictly necessary
  • Validate and sanitize any client-controlled data that flows into variables referenced by proxy_set_body
bash
# Configuration example: avoid the vulnerable combination
# Option 1: downgrade upstream protocol where proxy_set_body is needed
location /api/ {
    proxy_http_version 1.1;
    proxy_set_body     $request_body;
    proxy_pass         http://backend;
}

# Option 2: keep HTTP/2 upstream but remove proxy_set_body
location /api/ {
    proxy_http_version 2;
    proxy_pass         https://backend;
}

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechNginx

  • SeverityMEDIUM

  • CVSS Score6.3

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:N/SC:N/SI:L/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-172
  • Technical References
  • F5 Article K000161131
  • Related CVEs
  • CVE-2026-1580: ingress-nginx RCE Vulnerability

  • CVE-2024-23827: Nginxui Nginx UI RCE Vulnerability

  • CVE-2024-49368: Nginxui Nginx UI RCE Vulnerability

  • CVE-2026-44015: Nginxui Nginx UI 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