You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 11, 2021. It is now read-only.
When running domained.py with the following parameters:
python domained.py -d example.com -b --bruteall
I get the following output:
_
| |
_ __ ___ ___ ___ _ __ _ __ ___ __| |
| '__/ _ \/ __/ _ \| '_ \| '_ \ / _ \/ _` |
| | | __/ (_| (_) | | | | | | | __/ (_| |
|_| \___|\___\___/|_| |_|_| |_|\___|\__, |`
___/ /__ __ _ ___ _(_)__ ___ ___/ /
/ _ / _ \/ ' \/ _ `/ / _ \/ -_) _ /
\_,_/\___/_/_/_/\_,_/_/_//_/\__/\_,_/
reconned.org
Running massdns
Running Command: /root/domained/bin/subbrute/subbrute.py -s /root/domained/bin/sublst/all.txt | /root/domained/bin/massdns/bin/massdns -r resolvers.txt -t A -a -o -w output/example.com-massdns.txt -
Reading domain list from stdin.
You have started the program with root privileges.
Privileges have been dropped to "nobody" for security reasons.
Usage:
subbrute.py [options] target_domain
subbrute.py -p target_domain
subbrute.py: error: You must provide a target. Use -h for help.
--- SNIP ---
Masscan Complete
Running Sublist3r
--- SNIP ---
The script never performs the subbrute + massdns part and just continues with other tools. After investigating the domained.py code and the above output I concluded that the script has bug in it. The following code looks incomplete:
Specifically, the massdnsCMD string creation does not concatenate also the target domain. The fix that I applied to my local version of domained.py is the following:
When running domained.py with the following parameters:
python domained.py -d example.com -b --bruteall
I get the following output:
The script never performs the subbrute + massdns part and just continues with other tools. After investigating the domained.py code and the above output I concluded that the script has bug in it. The following code looks incomplete:
Specifically, the massdnsCMD string creation does not concatenate also the target domain. The fix that I applied to my local version of domained.py is the following:
With these changes it works properly.
The text was updated successfully, but these errors were encountered: