mirror of
https://github.com/hickory-dns/hickory-dns.git
synced 2026-04-25 11:15:54 +03:00
[GH-ISSUE #2275] test that RRSIG signature expiration / validation fields are respected #947
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#947
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 (Jul 3, 2024).
Original GitHub issue: https://github.com/hickory-dns/hickory-dns/issues/2275
Originally assigned to: @justahero on GitHub.
this is a regression test for #2209
currently there's no API to tamper with a signed zone file and produce a valid signed zone file because that would require re-signing (regenerating the RRSIG records, etc.) the zone file and there's no code in
dns-testthat does that.so, the easiest way to produce the bogus records required for this test could be to run the command
date --setinside the container to fake the current time that theldns-signzonetool sees.note that these cases need to be tested:
inception > current_time(signature produced in the future)current_time > expiration(signature has expired)inception > expiration(malformed record) would also be nice to have but probablydate --setwon't be sufficient to produce that kind of recordafter #2253 lands these tests should become green given that a fix already landed in #2213
@justahero commented on GitHub (Jul 9, 2024):
I think the
inception > expirationcheck cannot be tested, because either theinceptionor theexpirationtimestamp are covered by the first two conditions.