CVE-2024-35200

5.3 MEDIUM

📋 TL;DR

This vulnerability allows attackers to cause denial of service by sending specially crafted HTTP/3 requests to NGINX servers configured with the QUIC module. When exploited, NGINX worker processes terminate, disrupting web services. This affects NGINX Plus and NGINX OSS deployments using HTTP/3 QUIC.

💻 Affected Systems

Products:
  • NGINX Plus
  • NGINX OSS
Versions: Versions configured with HTTP/3 QUIC module (specific version ranges not detailed in provided references)
Operating Systems: All operating systems running affected NGINX versions
Default Config Vulnerable: ✅ No
Notes: Only vulnerable when HTTP/3 QUIC module is explicitly enabled in configuration. Default NGINX configurations are not affected.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete service disruption with NGINX worker processes repeatedly crashing, leading to extended downtime until manual intervention.

🟠

Likely Case

Intermittent service disruptions as worker processes crash and restart, causing degraded performance and potential request failures.

🟢

If Mitigated

Minimal impact if HTTP/3 QUIC module is disabled or if proper rate limiting and monitoring are in place.

🌐 Internet-Facing: HIGH - Internet-facing NGINX servers with HTTP/3 enabled are directly exposed to potential DoS attacks.
🏢 Internal Only: MEDIUM - Internal servers are less exposed but still vulnerable to internal threats or compromised internal systems.

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: LIKELY
Unauthenticated Exploit: ⚠️ Yes
Complexity: LOW

Exploitation requires sending crafted HTTP/3 requests, which is straightforward for attackers with network access to vulnerable servers.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Check vendor advisories for specific patched versions

Vendor Advisory: https://my.f5.com/manage/s/article/K000139612

Restart Required: Yes

Instructions:

1. Review F5 advisory for patched versions. 2. Update NGINX to patched version. 3. Restart NGINX service to apply changes.

🔧 Temporary Workarounds

Disable HTTP/3 QUIC module

all

Remove or comment out HTTP/3 QUIC configuration directives to disable vulnerable functionality

# Edit nginx.conf and remove 'listen 443 quic;' and 'listen [::]:443 quic;' directives
# Reload configuration: nginx -s reload

🧯 If You Can't Patch

  • Implement network-level filtering to block or rate limit HTTP/3 traffic to vulnerable servers
  • Deploy WAF rules to detect and block malicious HTTP/3 request patterns

🔍 How to Verify

Check if Vulnerable:

Check if NGINX configuration contains 'listen ... quic;' directives and verify NGINX version against patched versions in vendor advisory

Check Version:

nginx -v

Verify Fix Applied:

Confirm NGINX version is updated to patched version and HTTP/3 functionality remains stable under normal traffic

📡 Detection & Monitoring

Log Indicators:

  • NGINX worker process termination messages in error logs
  • Increased frequency of worker process restarts

Network Indicators:

  • Unusual HTTP/3 traffic patterns or spikes
  • Repeated connection attempts on HTTP/3 ports

SIEM Query:

source="nginx_error.log" AND "worker process" AND (terminated OR exited)

🔗 References

📤 Share & Export