Summary
I want dnscrypt-proxy only resolve A and AAAA and block else, because my primary use is browser and i have no other use of DNS types. Some malicious software actively trying to probe my network by sending PTR or TXT using DNS and I have no way to stop this.
I was able to block TXT but it leaked PTR to upstream. Could you add a filter like this:
# when set, filter the request if the type is match by one of
filter-by-type = PTR,TXT,MX,HTTPS
or
So I don't have to do:
User ---> DNSMasq(filter-rr=TXT,PTR <- This blocks TXT but PTR is ggeting though anyway) --> dnscrypt-proxy
chain.
Why would this be useful?
Some users already asked similar thing;
Possible implementation
# when set, filter the request if the type is match by one of
filter-by-type = PTR,TXT
Summary
I want dnscrypt-proxy only resolve A and AAAA and block else, because my primary use is browser and i have no other use of DNS types. Some malicious software actively trying to probe my network by sending
PTRor TXT using DNS and I have no way to stop this.I was able to block TXT but it leaked PTR to upstream. Could you add a filter like this:
or
So I don't have to do:
User ---> DNSMasq(filter-rr=TXT,PTR <- This blocks TXT but PTR is ggeting though anyway) --> dnscrypt-proxy
chain.
Why would this be useful?
Some users already asked similar thing;
Possible implementation