Create dns-recon2.sh

This commit is contained in:
Omar Santos 2021-07-18 23:37:18 -04:00 committed by GitHub
parent db831da1fa
commit 6220ead01a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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