Cyber Resilience

CVE-2026-42945

Memory Safety in F5 Nginx Ingress Controller 3.5.0 – 3.7.2

Public PoCHigh EPSSMemory Safety
Published
13 May 2026
Modified
11 August 2026
Patch / advisory
CVSS Score v4 9.2
Click a component to see what it means
Raw vectorCVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/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
EPSS Score 0.66 99.2th percentile
Risk Priority 70 floored blend · peak EPSS

Summary

CVE-2026-42945 is a critical-severity Heap-based Buffer Overflow (CWE-122) vulnerability in F5 Nginx Ingress Controller. Its CVSS base score is 9.2 (Critical).

Operationally, exploitation aligns with the MITRE ATT&CK technique Exploitation for Privilege Escalation (T1068); ranked in the top 0.8% of CVEs by exploit likelihood; it is not currently listed in the CISA KEV catalog; a public proof-of-concept is referenced.

The strongest mitigations our analysis identified map to SA-11 (Developer Testing and Evaluation) and SI-10 (Information Input Validation) — see the control section below for these in your framework.

Deeper analysis AI-assisted summary

Synthesised by an AI model from the NVD description and linked references — a reading aid, not an authoritative source.

NGINX Plus and NGINX Open Source contain a vulnerability in the ngx_http_rewrite_module module that triggers when a rewrite directive is followed by another rewrite, if, or set directive using an unnamed PCRE capture such as $1 or $2 in a replacement string containing a question mark. The flaw is tracked as CVE-2026-42945, carries a CVSS 4.0 score of 9.2, and is classified under CWE-122 for heap-based buffer overflow.

An unauthenticated attacker can trigger the issue by sending specially crafted HTTP requests, provided configuration conditions beyond the attacker's direct control are also met. Successful exploitation produces a heap buffer overflow in the NGINX worker process that can cause a restart; under additional constraints such as disabled ASLR or successful ASLR bypass, the same flaw permits remote code execution.

Public advisories and technical disclosures at https://my.f5.com/manage/s/article/K000161019, https://depthfirst.com/nginx-rift, and https://github.com/DepthFirstDisclosures/Nginx-Rift address mitigation steps for supported versions.

The associated EPSS probability rose from a starting value of 0.0029 to a peak of 0.0104, indicating that exploitation interest increased after disclosure.

EU & UK References

Vulnerability Data

NGINX Plus and NGINX Open Source have a vulnerability in the ngx_http_rewrite_module module. This vulnerability exists when the rewrite directive is followed by a rewrite, if, or set directive and an unnamed Perl-Compatible Regular Expression (PCRE) capture (for example, $1,…

more

$2) with a replacement string that includes a question mark (?). An unauthenticated attacker along with conditions beyond its control can exploit this vulnerability by sending crafted HTTP requests. This may cause a heap buffer overflow in the NGINX worker process leading to a restart. Additionally, attackers can execute code on systems with Address Space Layout Randomization (ASLR) disabled or when the attacker can bypass ASLR. Note: Software versions which have reached End of Technical Support (EoTS) are not evaluated.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise Techniques

T1068 Exploitation for Privilege Escalation Privilege Escalation
Adversaries may exploit software vulnerabilities in an attempt to elevate privileges.
T1190 Exploit Public-Facing Application Initial Access
Adversaries may attempt to exploit a weakness in an Internet-facing host or system to initially access a network.
T1203 Exploitation for Client Execution Execution
Adversaries may exploit software vulnerabilities in client applications to execute code.
T1210 Exploitation of Remote Services Lateral Movement
Adversaries may exploit remote services to gain unauthorized access to internal systems once inside of a network.
T1212 Exploitation for Credential Access Credential Access
Adversaries may exploit software vulnerabilities in an attempt to collect credentials.
Derived from this CVE’s CWE(s) via the direct CWE→ATT&CK cross-walk.

CVEs Like This One

CVE-2026-40701Same product: F5 Dos
CVE-2026-42934Same product: F5 Dos
CVE-2026-48142Same product: F5 Dos
CVE-2026-42946Same product: F5 Dos
CVE-2026-42533Same product: F5 Nginx Gateway Fabric
CVE-2026-42530Same product: F5 Nginx Gateway Fabric
CVE-2026-56434Same product: F5 Nginx Gateway Fabric
CVE-2026-40460Same product: F5 Dos
CVE-2026-60065Same product: F5 Nginx Gateway Fabric
CVE-2026-27654Same product: F5 Nginx Open Source

Affected Assets

f5
dos
4.8.0 · 4.3.0 — 4.7.0
f5
nginx gateway fabric
1.3.0 — 1.6.2 · 2.0.0 — 2.5.1
f5
nginx ingress controller
3.5.0 — 3.7.2 · 4.0.0 — 4.0.1 · 5.0.0 — 5.4.1
f5
nginx instance manager
2.16.0 — 2.21.1
f5
nginx open source
0.6.27 — 1.30.0
f5
nginx plus
r32 — r36
f5
waf
4.9.0 — 4.16.0 · 5.1.0 — 5.8.0 · 5.9.0 — 5.12.1

Mitigating Controls

Control response

Prevent
Stop it (NIST 800-53)

Detect
Catch it (NIST detect / respond)

Harden
Shrink the surface (DISA STIG)

Validate
Prove the fix (OWASP ASVS)
  • V1.4.1

Mitigating Controls (NIST 800-53 r5) AI

Developer testing and evaluation (including fuzzing and memory-error detectors) can discover heap overflows after they have been coded.

Input validation enforces bounds checking on data written to heap buffers, directly stopping the overflow condition from being introduced.

Security engineering principles require use of memory-safe constructs and bounds-checked allocation routines that avoid introducing heap overflows.

Memory-protection mechanisms limit the ability of a heap overflow to execute attacker-controlled code or corrupt adjacent structures.

Flaw-remediation processes that include vulnerability scanning or static analysis will surface buffer-size errors.

Mitigating Controls (NIST CSF 2.0) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→CSF cross-walk (authority under review) — links open the control.

PR.PS-06 full match
prevents

Secure-development practices directly require bounds checking and safe memory handling that prevent heap overflows.

ID.RA-01 partial match
prevents

Vulnerability scanning and recording can discover heap-overflow flaws but does not prevent their introduction in code.

PR.PS-02 partial match
prevents

Timely patching removes known heap-overflow instances after they exist.

Mitigating Controls (ISO/IEC 27001:2022 Annex A) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→ISO cross-walk (authority under review) — links open the control.

degrades

Secure coding standards directly require correct buffer-size calculations.

finds

Security testing in development and acceptance can detect heap overflows before release.

prevents

Secure development lifecycle mandates practices that reduce the likelihood of introducing heap overflows.

prevents

Application security requirements can specify bounds-checking and safe memory APIs that mitigate heap overflows.

prevents

Secure architecture and engineering principles include memory-safety and input-validation controls that address heap overflows.

none

Change management ensures controlled deployment of fixes for discovered heap-overflow vulnerabilities.

References