mirror of
https://github.com/The-Art-of-Hacking/h4cker
synced 2024-11-21 18:33:03 +00:00
Create dns-recon2.sh
This commit is contained in:
parent
db831da1fa
commit
6220ead01a
1 changed files with 6 additions and 0 deletions
|
@ -0,0 +1,6 @@
|
|||
#!/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
|
Loading…
Reference in a new issue