mirror of
https://github.com/The-Art-of-Hacking/h4cker.git
synced 2024-12-20 03:46:09 +00:00
6 lines
247 B
Bash
6 lines
247 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/amass/fierce_hostlist.txt); do host $domain.h4cker.org; done | grep -v NXDOMAIN | sort -u
|