Skip to content
This repository has been archived by the owner on Apr 11, 2021. It is now read-only.

Commit

Permalink
Fix for bruteall in issue #8
Browse files Browse the repository at this point in the history
  • Loading branch information
cak committed Nov 3, 2017
1 parent 28ea637 commit ba0f63c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion domained.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def enumall():
def massdns():
print("\n\n\033[1;31mRunning massdns \n\033[1;37m")
word_file = os.path.join(script_path, 'bin/sublst/all.txt' if bruteall else 'bin/sublst/sl-domains.txt')
massdnsCMD = '{} -s {} | {} -r resolvers.txt -t A -a -o -w {}-massdns.txt -'.format(
massdnsCMD = 'python {} -s {} | {} -r resolvers.txt -t A -a -o -w {}-massdns.txt -'.format(
os.path.join(script_path, 'bin/subbrute/subbrute.py'), word_file,
os.path.join(script_path, 'bin/massdns/bin/massdns'), output_base)
print("\n\033[1;31mRunning Command: \033[1;37m{}".format(massdnsCMD))
Expand Down

0 comments on commit ba0f63c

Please sign in to comment.