Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
Tools/GitHubGitHub/chpratik/nginx_2026_cve_bundle_cti_report
Vulnerability AnalysisWeb SecurityCloud SecurityThreat IntelligenceIntrusion DetectionPapers & ResearchMisconfigurationLearning & EducationCurated Resources
GitHubchpratik/nginx_2026_cve_bundle_cti_report

NGINX_2026_CVE_Bundle_CTI_Report

Covered CVEs: CVE-2026-28755, CVE-2026-42926, CVE-2026-9256, CVE-2026-42055, CVE-2026-42533

View Repository
31 month agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

🛡️ NGINX 2026 Multi-CVE CTI Investigation

CVE-2026-28755 • CVE-2026-42926 • CVE-2026-9256 • CVE-2026-42055 • CVE-2026-42533

Vendor Product Highest Severity KEV Focus

Created by Pratik Chhetri
Report Date: 2026-07-28


📌 Executive Snapshot

CVEComponentPrimary IssueFixed Open Source VersionsPriority
CVE-2026-28755ngx_stream_ssl_moduleOCSP result bypass in stream mTLS1.29.7+, 1.28.3+P3 / P2
CVE-2026-42926ngx_http_proxy_v2_moduleHTTP/2 upstream request injection1.31.0+, 1.30.1+P2
CVE-2026-9256ngx_http_rewrite_moduleHeap overflow via overlapping PCRE captures1.31.1+, 1.30.2+P1
CVE-2026-42055ngx_http_proxy_v2_module, ngx_http_grpc_moduleHeap overflow with HTTP/2/gRPC large headers1.31.2+, 1.30.3+P1
CVE-2026-42533map directive with regex matchingHeap overflow via regex map capture clobbering1.31.3+, 1.30.4+P0/P1

🚨 Key Message

These five vulnerabilities are configuration-dependent NGINX data-plane risks.

Risk is highest for:

  • Internet-facing reverse proxies
  • API gateways
  • NGINX Ingress Controller deployments
  • gRPC gateways
  • HTTP/2 upstream proxying
  • Regex-heavy rewrite and map configurations
  • Stream mTLS deployments using OCSP validation

Patch first, then audit configuration exposure.


🧭 Attack Path Overview

root@kitploit:~
flowchart TD
    A[Remote requester] --> B[Internet-facing NGINX data plane]
    B --> C{Vulnerable configuration present?}
    C -->|stream mTLS + OCSP| D1[CVE-2026-28755]
    C -->|proxy_http_version 2 + proxy_set_body| D2[CVE-2026-42926]
    C -->|rewrite overlapping captures| D3[CVE-2026-9256]
    C -->|gRPC / HTTP2 + large headers| D4[CVE-2026-42055]
    C -->|regex map capture ordering| D5[CVE-2026-42533]
    D1 --> E1[Revoked cert may be accepted]
    D2 --> E2[Upstream HTTP/2 frame injection]
    D3 --> E3[Worker crash or possible code execution]
    D4 --> E3
    D5 --> E3

🔥 Threat Intelligence Summary

ItemResult
CISA KEVNot Found for all five CVEs
Active exploitationNot Found in reviewed public sources
Ransomware usageNot Found
APT attributionNot Found
Exploit-DBNot Found
MetasploitNot Found
Public GitHub activityFound for CVE-2026-42926, CVE-2026-9256, CVE-2026-42055, CVE-2026-42533
Public scannerFound for CVE-2026-42533
Highest EPSSCVE-2026-9256 at 0.098840

🕒 Disclosure and Patch Timeline

root@kitploit:~
timeline
    title NGINX 2026 CVE Timeline
    2026-03-24 : CVE-2026-28755 fixed in nginx 1.28.3 / 1.29.7
    2026-05-13 : CVE-2026-42926 fixed in nginx 1.30.1 / 1.31.0
    2026-05-22 : CVE-2026-9256 fixed in nginx 1.30.2 / 1.31.1
    2026-06-17 : CVE-2026-42055 fixed in nginx 1.30.3 / 1.31.2
    2026-07-15 : CVE-2026-42533 fixed in nginx 1.30.4 / 1.31.3
    2026-07-28 : CTI package finalized

🛠️ Configuration Exposure Checklist

Search NGINX configuration for these directives and patterns:

root@kitploit:~
ssl_verify_client on
ssl_ocsp on
proxy_http_version 2
proxy_set_body
grpc_pass
ignore_invalid_headers off
large_client_header_buffers
rewrite
map
regex captures: $1 $2 $3 ...

High-risk combinations:

CVEHigh-risk configuration
CVE-2026-28755ssl_verify_client on + ssl_ocsp on in stream TLS client-auth deployments
CVE-2026-42926proxy_http_version 2 + proxy_set_body
CVE-2026-9256rewrite regex with distinct overlapping PCRE captures and replacement referencing multiple captures
CVE-2026-42055grpc_pass or proxy_http_version 2 + ignore_invalid_headers off + large_client_header_buffers above 2 MB
CVE-2026-42533regex map and string expressions referencing regex capture variables in vulnerable order

🔎 Detection Ideas

Runtime Signals

root@kitploit:~
nginx worker process exited
exited on signal
segfault
core dumped
CrashLoopBackOff
unexpected 5xx spike

Suspicious Process Behavior

root@kitploit:~
nginx worker process -> sh / bash / curl / wget / nc / ncat / powershell

Network and HTTP Signals

root@kitploit:~
Large HTTP/2 headers
Unexpected gRPC upstream failures
Upstream request desynchronization
TLS client certificate accepted despite OCSP revoked status

📊 Risk Matrix

EnvironmentRiskPriorityAction
Internet-facing NGINX with regex map exposureCriticalP0/P1Upgrade to 1.30.4 / 1.31.3 or fixed Plus release
Internet-facing NGINX with HTTP/2/gRPC large-header exposureHighP1Patch and remove unsafe header config
NGINX rewrite rules with overlapping capturesHighP1Patch and rewrite vulnerable regex patterns
HTTP/2 upstream proxying with proxy_set_bodyMediumP2Patch or change HTTP upstream version
Stream mTLS with OCSP revocation checksMediumP2/P3Patch and validate revoked cert behavior
NGINX not internet-facing and no vulnerable directivesLow-MediumP3Patch in normal cycle and monitor

✅ Verified Indicator Status

Indicator TypeStatus
Attacker IPsNot Found
Attacker domainsNot Found
Malicious URLsNot Found
Malware hashesNot Found
Registry keysNot Found
MutexesNot Found
Verified scanner filenamenginx_capture_clobber_scan.py for CVE-2026-42533
Key processnginx, nginx: worker process
Key config filesnginx.conf, files under conf.d/, stream/http server blocks

📚 Full Report

The complete enterprise CTI report is available here:

➡️ NGINX_2026_CVE_CTI_Report.md

It includes:

  • Official CVE identification
  • CVSS, EPSS, KEV status
  • Technical analysis
  • CPE and affected product validation
  • Exploit maturity assessment
  • Threat actor likelihood analysis
  • IOC table
  • MITRE ATT&CK mapping
  • ATT&CK data sources
  • Detection coverage matrix
  • Sigma ideas with validation status
  • Wazuh guidance
  • Splunk SPL
  • Microsoft Sentinel KQL
  • Snort/Suricata concepts
  • ATT&CK Navigator layer snippet
  • STIX 2.1 export snippet
  • MISP event export snippet
  • Evidence provenance table
  • Intelligence gaps
  • Assumptions and limitations

🔗 Primary References

  • nginx security advisories: https://nginx.org/en/security_advisories.html
  • nginx 2026 news: https://nginx.org/2026.html
  • F5 CVE-2026-42926 advisory: https://my.f5.com/manage/s/article/K000161131
  • F5 CVE-2026-42055 advisory: https://my.f5.com/manage/s/article/K000161584
  • F5 CVE-2026-42533 advisory: https://my.f5.com/manage/s/article/K000162097
  • CVE Services API: https://cveawg.mitre.org/api/cve/
  • FIRST EPSS API: https://api.first.org/data/v1/epss
  • CISA KEV Catalog: https://www.cisa.gov/known-exploited-vulnerabilities-catalog
  • CVE-2026-42533 static scanner: https://github.com/0xCyberstan/CVE-2026-42533-Config-Scanner

Patch NGINX. Audit directives. Watch worker crashes. Treat edge proxies as critical infrastructure.

Download Tool