Advertisement
tamanmerah

scansubdomain.sh

Mar 10th, 2019
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.29 KB | None | 0 0
  1. #!/bin/bash
  2. # scansubdomain.sh
  3. # day milovich,,
  4. echo "Enter domain name" && read domainname && echo "------- $domainname has these subdomains: -------" && curl -s https://api.hackertarget.com/hostsearch/?q=$domainname | cut -d',' -f1 | sort -u && echo "-------" && echo "Scan has been completed."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement