-
-
Notifications
You must be signed in to change notification settings - Fork 773
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dnstwist returns non-registered domain even though -r
flag is used.
#221
Comments
When DNS resolver fails to obtain a valid response from the authoritative DNS server, |
Hi Elceef, -a, --all Print all DNS records instead of the first ones and even trying to type it, the following error message appears dnstwist --registered --whois domain.com --resolver Thanks |
Sorry, I meant |
The results are quite different from each other dnstwist --registered --whois --nameservers 9.9.9.9 domain.com -> permutations: 100.00% of 11303 | found: 5609 | eta: 0m 00s | speed: 4 qps dnstwist --registered --whois --nameservers 1.1.1.1 domain.com -> permutations: 100.00% of 11303 | found: 1193 | eta: 0m 00s | speed: 7 qps the same domain, searched via https://dnstwist.it, returns "Scanned [11436] permutations. Found 5 registered" |
That many ServFail responses indicates something is interfering your DNS traffic. Can you change your ISP? |
I confirm this is a problem caused by the DNS filter. Thank you very much. |
Hey!
I have an issue where a DNS server responds with ServFail. When that happens the string
!ServFail
is added todns_a
,dns_aaaa
,dns_ns
, anddns_mx
. This in turn has the effect that the flag-r
will return these domains, even though they aren't registered, which I think would be considered a false positive.So for example, if I run this I expect that only registered domains are returned.
But if it finds a domain that has a misconfigured domain server, which returns ServFail the result of the above command is the following:
The issue can be solved by not adding the string "!ServFail" to
dns_a
,dns_aaaa
,dns_ns
, anddns_mx
. In the code below I have commented out those lines, this way the ServFail domain is not returned with the-r
flag.I'm not sure if setting those values serve some other purpose that I am unaware of.
Thanks for a great project!
The text was updated successfully, but these errors were encountered: