-
-
Save prinsharma1999/453ee8a985d75709d7058ce62a69b1d5 to your computer and use it in GitHub Desktop.
sub.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "Online Subdomain Detect Script" | |
echo "Twitter => https://twitter.com/cihanmehmets" | |
echo "Github => https://github.com/cihanmehmet" | |
echo "CURL Subdomain Execute => curl -s -L https://raw.githubusercontent.com/cihanmehmet/sub.sh/master/sub.sh | bash -s bing.com" | |
echo "██████████████████████████████████████████████████████████████████████████████████████████████████████████████" | |
if [[ $# -eq 0 ]] ; | |
then | |
echo "Usage: bash sub.sh bing.com" | |
exit 1 | |
else | |
curl 'https://crt.sh/?q=%.'$1'&output=json' | jq '.[] | {name_value}' | sed 's/\"//g' | sed 's/\*\.//g' | sort -u |grep "name_value"|cut -d ' ' -f4 > $1.txt | |
echo "[+] Crt.sh Over" | |
curl -s "http://web.archive.org/cdx/search/cdx?url=*."$1"/*&output=text&fl=original&collapse=urlkey" |sort| sed -e 's_https*://__' -e "s/\/.*//" -e 's/:.*//' -e 's/^www\.//' | uniq >>$1.txt | |
echo "[+] Web.Archive.org Over" | |
curl -s "https://dns.bufferover.run/dns?q=."$1 | jq -r .FDNS_A[]|cut -d',' -f2|sort -u >>$1.txt | |
echo "[+] Dns.bufferover.run Over" | |
curl -s "https://certspotter.com/api/v0/certs?domain="$1 | jq '.[].dns_names[]' | sed 's/\"//g' | sed 's/\*\.//g' | sort -u | grep $1 >>$1.txt | |
echo "[+] Certspotter.com Over" | |
echo "[i] Next 2 operations are waiting a bit.(Amass and Subfinder)" | |
curl -s -X POST --data "url=$1&Submit1=Submit" https://suip.biz/?act=amass | grep $1 | cut -d ">" -f 2 | awk 'NF' | uniq >>$1.txt | |
echo "[+] Suip.biz Amass Over" | |
curl -s -X POST --data "url=$1&Submit1=Submit" https://suip.biz/?act=subfinder | grep $1 | cut -d ">" -f 2 | awk 'NF' | uniq >>$1.txt | |
echo "[+] Suip.biz Subfinder Over" | |
#sort -u $1.txt|cat | |
cat $1.txt|sort|sort -u|egrep -v "^http$|https$"|tee $1.txt | |
echo "██████████████████████████████████████████████████████████████████████████████████████████████████████" | |
echo "Detect Subdomain $(wc -l $1.txt|awk '{ print $1 }' )" "=> ${1}" | |
echo "File Location : "$(pwd)/"$1.txt" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment