mirror of
https://github.com/DNSCrypt/doh-server.git
synced 2025-04-03 04:57:37 +03:00
Reject large query strings
This commit is contained in:
parent
9be0d1ed74
commit
a746e2822a
1 changed files with 5 additions and 0 deletions
|
@ -155,6 +155,11 @@ impl DoH {
|
|||
}
|
||||
}
|
||||
}
|
||||
if let Some(question_str) = question_str {
|
||||
if question_str.len() > MAX_DNS_QUESTION_LEN * 4 / 3 {
|
||||
return None;
|
||||
}
|
||||
}
|
||||
let query = match question_str.and_then(|question_str| {
|
||||
base64::decode_config(question_str, base64::URL_SAFE_NO_PAD).ok()
|
||||
}) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue