mirror of
https://github.com/The-Art-of-Hacking/h4cker.git
synced 2024-12-18 19:06:08 +00:00
7 lines
245 B
Bash
7 lines
245 B
Bash
#!/bin/bash
|
|
# bruteforce subdomains
|
|
# Use a wordlist of your choice. I am using dnscan's wordlist in this example
|
|
|
|
for domain in $(cat /usr/share/wordlists/dnscan/subdomains-100.txt);
|
|
do host $domain.h4cker.org;sleep 2;done | grep has | sort -u
|