Advertisement
zerobyte-id

domainEnum

Aug 18th, 2019
737
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.21 KB | None | 0 0
  1. #!/bin/bash
  2. # Domain Enumerator
  3. # Sublist3r x Aquatone
  4. # bash domainEnum.bash target.com
  5.  
  6. mkdir ${1}/
  7. python /path-to/sublist3r.py -d ${1} -t 50 -b -o ${1}/${1}.list
  8. cd ${1}/
  9. cat ${1}.list | /usr/bin/aquatone
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement