mirror of
https://github.com/hickory-dns/hickory-dns.git
synced 2026-04-25 11:15:54 +03:00
[GH-ISSUE #2209] DnssecDnsHandle does not appear to validate RRSIG's signature {inception,expiration} fields #920
Labels
No labels
blocked
breaking-change
bug
bug:critical
bug:tests
cleanup
compliance
compliance
compliance
crate:all
crate:client
crate:native-tls
crate:proto
crate:recursor
crate:resolver
crate:resolver
crate:rustls
crate:server
crate:util
dependencies
docs
duplicate
easy
easy
enhance
enhance
enhance
feature:dns-over-https
feature:dns-over-quic
feature:dns-over-tls
feature:dnsssec
feature:global_lb
feature:mdns
feature:tsig
features:edns
has workaround
ops
perf
platform:WASM
platform:android
platform:fuchsia
platform:linux
platform:macos
platform:windows
pull-request
question
test
tools
tools
trust
unclear
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/hickory-dns#920
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @japaric on GitHub (May 13, 2024).
Original GitHub issue: https://github.com/hickory-dns/hickory-dns/issues/2209
section 5.3.1 of RFC4035 lists all the validation steps that must be performed on RRSIG records, among them:
I was reading through the
DnssecDnsHandlecode and could not find a validation of the expiration and inception fields. In fact, I didn't see anything likeSystemTimebeing passed into or used in the validation functions.I could see the other validation steps specified in the RFC, like checking that the algorithm field does match the field in the DNSKEY record.
I didn't go as far as trying to forge expired RRSIG records to verify that the check was missing. The
hickory-dnsbinary does not use theDnssecDnsHandleobject so it was not going to be possible to confirm that usingdns-test.@bluejekyll commented on GitHub (May 18, 2024):
this is really surprising to me. I just took a quick look through the code, and it appears that you're correct at first glance. I'm going to look through the code a bit more to make sure I'm not missing something.
Ok, I reviewed. This is really blowing my mind, I can't believe I didn't add that.