Skip to content

Commit 4a7d7e3

Browse files
Ignore DNSSECQuery OMs with unexpected context
Prior to this commit we would allow DNSSEDQuery onion messages that were sent over blinded paths that were created for other purposes. This could be used to correlate identities and unblind a path, so disallow this.
1 parent 6e43661 commit 4a7d7e3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lightning/src/onion_message/messenger.rs

+4
Original file line numberDiff line numberDiff line change
@@ -1956,6 +1956,10 @@ where
19561956
let responder = reply_path.map(Responder::new);
19571957
match message {
19581958
DNSResolverMessage::DNSSECQuery(msg) => {
1959+
if context.is_some() {
1960+
// Ignore OMs sent over unexpected contexts
1961+
return;
1962+
}
19591963
let response_instructions =
19601964
self.dns_resolver_handler.handle_dnssec_query(msg, responder);
19611965
if let Some((msg, instructions)) = response_instructions {

0 commit comments

Comments
 (0)