Red Hat Security Advisory: Red Hat Hardened Images RPMs bug fix and enhancement update
🔗 CVE IDs covered (3)
📋 Description
CVE-2026-9256 — nginx: ngx_http_rewrite_module: code execution and denial of service CVE-2026-40460 — nginx: NGINX: Authorization bypass via IP spoofing in HTTP/3 QUIC module CVE-2026-42530 — nginx: ngx_http_v3_module: use-after-free issue leads to denial of service
🎯 Affected products5
- Red Hat Hardened Images
- nginx-main@aarch64 as a component of Red Hat Hardened Images
- nginx-main@noarch as a component of Red Hat Hardened Images
- nginx-main@src as a component of Red Hat Hardened Images
- nginx-main@x86_64 as a component of Red Hat Hardened Images
✅ Remediation
For details on how to apply this update, which includes the changes described in this advisory, refer to: https://images.redhat.com/ Workaround: To mitigate this vulnerability, use named captures instead of unnamed captures in rewrite definitions. For example, the following rewrite directive uses unnamed PCRE capture groups, $1 and $2: ~~~ rewrite ^/users/([0-9]+)/profile/(.*)$ /profile.php?id=$1&tab=$2 last; ~~~ To mitigate this vulnerability for this example, replace $1 and $2 with the appropriate named captures, $user_id and $section: ~~~ rewrite ^/users/(?<user_id>[0-9]+)/profile/(?<section>.*)$ /profile.php?id=$user_id&tab=$section last; ~~~ Workaround: To mitigate this issue, if the HTTP/3 QUIC module is not required, disable it in your NGINX configuration. This typically involves removing or commenting out the `quic` parameter from `listen` directives in your `nginx.conf` file. After modifying the configuration, a graceful reload or restart of the NGINX service is required for the changes to take effect. For example, use `sudo systemctl reload nginx` or `sudo systemctl restart nginx`. Workaround: To mitigate this vulnerability, disable HTTP/3 by removing quic from all listen directives.
🔗 References (8)
- selfhttps://access.redhat.com/errata/RHSA-2026:20351
- externalhttps://images.redhat.com/
- externalhttps://access.redhat.com/security/cve/CVE-2026-40460
- externalhttps://access.redhat.com/security/updates/classification/
- externalhttps://access.redhat.com/security/cve/CVE-2026-42926
- externalhttps://access.redhat.com/security/cve/CVE-2026-9256
- externalhttps://access.redhat.com/security/cve/CVE-2026-42530
- selfhttps://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_20351.json