shuffledns icon indicating copy to clipboard operation
shuffledns copied to clipboard

Implemented multi-domain wildcard filtering

Open Mzack9999 opened this issue 1 year ago • 0 comments

Closes #159

Testing data:

# wc -l wordlist.txt resolvers.txt trusted.resolvers.txt domains.txt
 2178752 wordlist.txt
   29316 resolvers.txt
      32 trusted.resolvers.txt
       3 domains.txt

Before:

time go run . -r resolvers.txt -mode bruteforce -d domains.txt -directory test -trusted-resolvers trusted.txt -w wordlist.txt
...
rea    130m7.168
user    115m16.211s
sys     121m4.752s

After:

time go run . -r resolvers.txt -mode bruteforce -d domains.txt -directory test -trusted-resolvers trusted.txt -w wordlist.txt
...
real    10m38.824s
user    1m32.534s
sys     6m43.880s

Mzack9999 avatar Apr 29 '24 15:04 Mzack9999