CVE-2025-13878

7.5 HIGH

📋 TL;DR

A denial-of-service vulnerability in BIND DNS servers where malformed BRID/HHIT records cause the named process to crash. This affects BIND 9 installations running vulnerable versions, primarily impacting DNS server availability.

💻 Affected Systems

Products:
  • ISC BIND 9
Versions: 9.18.40-9.18.43, 9.20.13-9.20.17, 9.21.12-9.21.16, 9.18.40-S1-9.18.43-S1, 9.20.13-S1-9.20.17-S1
Operating Systems: All operating systems running affected BIND versions
Default Config Vulnerable: ⚠️ Yes
Notes: All BIND installations running affected versions are vulnerable regardless of configuration.

⚠️ Manual Verification Required

This CVE does not have specific version information in our database, so automatic vulnerability detection cannot determine if your system is affected.

Why? The CVE database entry doesn't specify which versions are vulnerable (no version ranges provided by the vendor/NVD).

🔒 Custom verification scripts are available for registered users. Sign up free to download automated test scripts.

Recommended Actions:
  1. Review the CVE details at NVD
  2. Check vendor security advisories for your specific version
  3. Test if the vulnerability is exploitable in your environment
  4. Consider updating to the latest version as a precaution

⚠️ Risk & Real-World Impact

🔴

Worst Case

DNS service outage leading to complete loss of DNS resolution for dependent systems and applications.

🟠

Likely Case

Intermittent DNS service disruptions requiring manual restart of BIND processes.

🟢

If Mitigated

Minimal impact with proper network segmentation and monitoring to detect and restart crashed services.

🌐 Internet-Facing: HIGH - Internet-facing DNS servers are directly exposed to crafted malicious queries.
🏢 Internal Only: MEDIUM - Internal DNS servers could be targeted by compromised internal systems.

🎯 Exploit Status

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

Exploitation requires sending malformed DNS records to vulnerable servers, which is straightforward for attackers with network access.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 9.18.44, 9.20.18, 9.21.17

Vendor Advisory: https://kb.isc.org/docs/cve-2025-13878

Restart Required: Yes

Instructions:

1. Download patched version from ISC downloads page. 2. Stop BIND service. 3. Install updated BIND package. 4. Restart BIND service. 5. Verify service is running and responding to queries.

🔧 Temporary Workarounds

Rate Limiting

linux

Implement DNS query rate limiting to reduce impact of malicious queries

Add 'rate-limit { responses-per-second 10; };' to named.conf options

Response Policy Zones

linux

Use RPZ to block queries containing BRID/HHIT records

Configure RPZ zone with policy to drop BRID/HHIT queries

🧯 If You Can't Patch

  • Implement strict network ACLs to limit DNS queries to trusted sources only
  • Deploy monitoring with automatic restart scripts for BIND service crashes

🔍 How to Verify

Check if Vulnerable:

Check BIND version with 'named -v' or 'rpm -q bind' and compare against affected versions

Check Version:

named -v

Verify Fix Applied:

Verify installed version is 9.18.44, 9.20.18, or 9.21.17 or higher

📡 Detection & Monitoring

Log Indicators:

  • named process crash logs
  • unexpected termination messages in system logs
  • DNS query timeouts in application logs

Network Indicators:

  • Unusual volume of BRID/HHIT record queries
  • DNS service unresponsiveness

SIEM Query:

source="bind" AND (event="crash" OR event="terminated")

🔗 References

📤 Share & Export