rbsec/dnscan

dnscan.py: error: one of the arguments

ken2709 opened this issue · 2 comments

Hi,
i have error, looking for help
Thanks.

C:\Users\nng\Desktop\dnscan-master>dnscan.py -d dev-%%.example.org
usage: dnscan.py [-h] (-d DOMAIN | -l DOMAIN_LIST) [-w WORDLIST] [-t THREADS] [-6] [-z] [-r] [-m MAXDEPTH] [-a]
[-R RESOLVERS] [-L RESOLVER_LIST] [-T] [-o OUTPUT_FILENAME] [-i OUTPUT_IPS] [-D] [-N] [-v] [-n] [-q]
dnscan.py: error: one of the arguments -d/--domain -l/--list is required

rbsec commented

That looks like your shell trying to expand the % characters into wildcards or something like that. Try adding quotes: `dnscan.py -d "dev-%%.example.org"

@rbsec i tried, other problem below
C:\Users\theli\Desktop\dnscan-master>dnscan.py -d dev-%%.example.org
Traceback (most recent call last):
File "C:\Users\theli\Desktop\dnscan-master\dnscan.py", line 47, in
if (LooseVersion(dns.version) < LooseVersion("2.0.0")):
AttributeError: 'module' object has no attribute 'version'

thanks