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
check | |
https://discordapp.com/domain-migration | |
check | |
discord: | |
check | |
https://www.google.com/recaptcha/ | |
check |
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
aaa | |
aarp | |
abarth | |
abb | |
abbott | |
abbvie | |
abc | |
able | |
abogado | |
abudhabi |
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
aa | |
aarp | |
abarth | |
abb | |
abbott | |
abbvie | |
abc | |
able | |
abogado | |
abudhabi |
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
import os | |
import subprocess as sp | |
#First getting all the domains | |
os.system('echo "Running naabu[+]......."') | |
os.system("sudo ~/go/bin/naabu -hL all -ports full -o naabu.out") | |
domains = sp.getoutput("cat naabu.out|cut -d ':' -f1|sort -u") |
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
from sys import argv | |
import os | |
script, filename = argv | |
target = [line.strip("\n") for line in open("{}".format(filename), encoding="utf-8")] | |
for i in target: | |
os.system("~/go/bin/ffuf -w ~/tools/dirsearch/db/dicc.txt -u {}/FUZZ -c -ac|tee dir-`echo {}|rev|cut -d / -f1|rev`".format(i,i)) |