GHSA-v7pc-74h8-xq2h

Suggest an improvement
Source
https://github.com/advisories/GHSA-v7pc-74h8-xq2h
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2025/02/GHSA-v7pc-74h8-xq2h/GHSA-v7pc-74h8-xq2h.json
JSON Data
https://api.osv.dev/v1/vulns/GHSA-v7pc-74h8-xq2h
Related
Published
2025-02-10T21:52:28Z
Modified
2025-02-10T21:52:29Z
Summary
Hickory DNS failure to verify self-signed RRSIG for DNSKEYs
Details

Summary

The DNSSEC validation routines treat entire RRsets of DNSKEY records as trusted once they have established trust in only one of the DNSKEYs. As a result, if a zone includes a DNSKEY with a public key that matches a configured trust anchor, all keys in that zone will be trusted to authenticate other records in the zone. There is a second variant of this vulnerability involving DS records, where an authenticated DS record covering one DNSKEY leads to trust in signatures made by an unrelated DNSKEY in the same zone.

Details

verifydnskeyrrset() will return Ok(true) if any record's public key matches a trust anchor. This results in verifyrrset() returning a Secure proof. This ultimately results in successfully verifying a response containing DNSKEY records. verifydefaultrrset() looks up DNSKEY records by calling handle.lookup(), which takes the above code path. There's a comment following this that says "DNSKEYs were already validated by the inner query in the above lookup", but this is not the case. To fully verify the whole RRset of DNSKEYs, it would be necessary to check self-signatures by the trusted key over the other keys. Later in verifydefaultrrset(), verifyrrsetwithdnskey() is called multiple times with different keys and signatures, and if any call succeeds, then its Proof is returned.

Similarly, verifydnskeyrrset() returns Ok(false) if any DNSKEY record is covered by a DS record. A comment says "If all the keys are valid, then we are secure", but this is only checking that one key is authenticated by a DS in the parent zone's delegation point. This time, after control flow returns to verifyrrset(), it will call verifydefaultrrset(). The special handling for DNSKEYs in verifydefaultrrset() will then call verifyrrsetwithdnskey() using each KSK DNSKEY record, and if one call succeeds, return its Proof. If there are multiple KSK DNSKEYs in the RRset, then this leads to another authentication break. We need to either pass the authenticated DNSKEYs from the DS covering check to the RRSIG validation, or we need to perform this RRSIG validation of the DNSKEY RRset inside verifydnskeyrrset() and cut verifydefaultrrset() out of DNSKEY RRset validation entirely.

Database specific
{
    "nvd_published_at": null,
    "cwe_ids": [
        "CWE-345"
    ],
    "severity": "MODERATE",
    "github_reviewed": true,
    "github_reviewed_at": "2025-02-10T21:52:28Z"
}
References

Affected packages

crates.io / hickory-proto

Package

Name
hickory-proto
View open source insights on deps.dev
Purl
pkg:cargo/hickory-proto

Affected ranges

Type
SEMVER
Events
Introduced
0.8.0
Fixed
0.24.3

crates.io / hickory-proto

Package

Name
hickory-proto
View open source insights on deps.dev
Purl
pkg:cargo/hickory-proto

Affected ranges

Type
SEMVER
Events
Introduced
0.25.0-alpha.1
Fixed
0.25.0-alpha.5