lazyrecon icon indicating copy to clipboard operation
lazyrecon copied to clipboard

Problem in mass function

Open mr-spartigus opened this issue 4 years ago • 2 comments

mass(){ ~/tools/massdns/scripts/subbrute.py $massdnsWordlist $domain | ~/tools/massdns/bin/massdns -r ~/tools/massdns/lists/resolvers.txt -t A -q -o S | grep -v 142.54.173.92 > ./$domain/$foldername/mass.txt }

I think python keyword must b preset in order to start subbrute.py

mr-spartigus avatar Jun 13 '20 06:06 mr-spartigus

could you please share the revision?

ranggaacc avatar Jun 15 '20 13:06 ranggaacc

the problem you probably have might be that the order of the paraters for the subbrute call is messed up, it should be: ~/tools/massdns/scripts/subbrute.py $domain $massdnsWordlist

i faced the following issue: Traceback (most recent call last): File "/home/jp/tools/massdns/scripts/subbrute.py", line 34, in with open(args.subdomain_file) as f: IsADirectoryError: [Errno 21] Is a directory: 'example.com'

changing the parameter order fixed that for me

Maddox94 avatar May 23 '23 19:05 Maddox94