CVE-2024-32760

6.5 MEDIUM

📋 TL;DR

This vulnerability in NGINX Plus and NGINX OSS allows attackers to cause denial of service by sending specially crafted HTTP/3 requests when the QUIC module is enabled. The worker processes may terminate unexpectedly, potentially disrupting web services. Only systems with HTTP/3 QUIC module configured are affected.

💻 Affected Systems

Products:
  • NGINX Plus
  • NGINX OSS
Versions: Versions with HTTP/3 QUIC module enabled
Operating Systems: All supported platforms
Default Config Vulnerable: ✅ No
Notes: Only vulnerable when HTTP/3 QUIC module is explicitly configured and enabled in nginx.conf

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete service disruption through repeated worker process crashes, leading to sustained denial of service and potential resource exhaustion.

🟠

Likely Case

Intermittent service interruptions as worker processes restart after crashes, causing degraded performance and availability.

🟢

If Mitigated

Minimal impact with proper monitoring and automatic process recovery, though service quality may still be affected during attacks.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Attack requires sending HTTP/3 requests to vulnerable endpoints; no authentication needed

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Check vendor advisories for specific patched versions

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

Restart Required: Yes

Instructions:

1. Check current NGINX version
2. Apply vendor-provided patches
3. Restart NGINX service
4. Verify HTTP/3 functionality

🔧 Temporary Workarounds

Disable HTTP/3 QUIC module

all

Temporarily disable HTTP/3 support until patches can be applied

# Edit nginx.conf and remove or comment out 'listen 443 quic;' directives
# Reload configuration: nginx -s reload

🧯 If You Can't Patch

  • Implement network filtering to block or rate-limit HTTP/3 traffic
  • Deploy WAF with HTTP/3 request inspection capabilities

🔍 How to Verify

Check if Vulnerable:

Check if HTTP/3 is enabled in nginx.conf with 'listen ... quic;' directives and verify NGINX version against vulnerable ranges

Check Version:

nginx -v

Verify Fix Applied:

Verify NGINX version is updated to patched release and test HTTP/3 functionality remains operational

📡 Detection & Monitoring

Log Indicators:

  • Worker process termination messages in error logs
  • Unexpected process restarts
  • HTTP/3 connection errors

Network Indicators:

  • Unusual HTTP/3 traffic patterns
  • Repeated HTTP/3 requests to same endpoints

SIEM Query:

source="nginx" AND ("worker process" AND exit) OR ("HTTP/3" AND error)

🔗 References

📤 Share & Export