Skip to content

Instantly share code, notes, and snippets.

@ehsahil
Created January 2, 2019 05:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ehsahil/a239a6b6b214ce4a82707a39164b4260 to your computer and use it in GitHub Desktop.
Save ehsahil/a239a6b6b214ce4a82707a39164b4260 to your computer and use it in GitHub Desktop.
#!/bin/bash
printf '%s ' 'Which tool you want to run for finding subdomains?'
read -${BASH_VERSION+e}r subdomain
case $subdomain in
subfinder)
subfinder -d hackerone.com
;;
sublister)
python sublister.py -d hackerone.com
;;
amass)
amass hackerone.com
;;
*)
echo "This tool is not available"
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment