This file contains hidden or 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
| #!/usr/bin/python3 | |
| import sys,os | |
| domain_file=sys.argv[1] | |
| thread=sys.argv[2] | |
| with open(domain_file) as d: | |
| for line in d: | |
| line=line.strip() | |
| output=line+'_masscan.txt' | |
| mass_cmd='masscan -p1-65535 --max-rate='+str(thread)+' -oL '+output+' '+line | |
| os.system(mass_cmd) |
This file contains hidden or 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
| #!/usr/bin/python3 | |
| import sys,os | |
| domain_file=sys.argv[1] | |
| with open(domain_file) as d: | |
| for line in d: | |
| line=line.strip() | |
| output=line+'_shuffle.txt' | |
| amass_cmd= 'shuffledns -d '+line+' -w -o '+output | |
| os.system('shuffledns -d '+line+' -w /mnt/software/subdomain_word.txt -r resolvers.txt -o '+output) |
This file contains hidden or 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
| #!/usr/bin/python3 | |
| import sys,os | |
| domain_file=sys.argv[1] | |
| with open(domain_file) as d: | |
| for line in d: | |
| line=line.strip() | |
| output=line+'_ctfr.txt' | |
| amass_cmd='/mnt/software/ctfr.py -d '+line+' -o '+output | |
| os.system(amass_cmd) |
This file contains hidden or 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
| #!/usr/bin/python3 | |
| import sys,os | |
| domain_file=sys.argv[1] | |
| with open(domain_file) as d: | |
| for line in d: | |
| line=line.strip() | |
| output=line+'_amass.txt' | |
| amass_cmd='subfinder -d '+line+' -nW -o '+output | |
| os.system(amass_cmd) |
This file contains hidden or 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
| #!/usr/bin/python3 | |
| import sys,os | |
| domain_file=sys.argv[1] | |
| with open(domain_file) as d: | |
| for line in d: | |
| line=line.strip() | |
| output=line+'_amass.txt' | |
| amass_cmd='amass enum -d '+line+' -o '+output | |
| os.system(amass_cmd) |
This file contains hidden or 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
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| """ | |
| ------------------------------------------------------------------------------ | |
| CTFR - 04.03.18.02.10.00 - Sheila A. Berta (UnaPibaGeek) | |
| ------------------------------------------------------------------------------ | |
| """ | |
| ## # LIBRARIES # ## | |
| import re |
This file contains hidden or 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 requests,sys | |
| myfile=sys.argv[1] | |
| headers = {} | |
| param={} | |
| cookie={} | |
| c=0 | |
| row_body='' | |
| parampost={} | |
| with open(myfile) as h: | |
| for line in h: |
This file contains hidden or 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
| #python sub_brute.py example.com[domain] 10[thread] | |
| #Coder:- Anirban Singha | |
| import threading | |
| import urllib2,sys | |
| domain=sys.argv[1] | |
| mythread=int(sys.argv[2]) | |
| def bruteforce_subdomain(domain,result,mylist): | |
| for line in mylist: | |
| try: | |
| url='https://'+line+'.'+domain |
This file contains hidden or 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 urllib2,argparse,sys | |
| from threading import Thread | |
| def parse_args(): | |
| parser=argparse.ArgumentParser(description='This tool is use for checking live host. This support multithread.',epilog='python '+sys.argv[0]+' -u [url]') | |
| parser.add_argument('-u','--url',help='url to check [with/without] http/https',type=str,default=False) | |
| parser.add_argument('-l','--lists',help='file contain url',type=str,default=Flase) | |
| parser.add_argument('-t','--timeout',help='time out default =10',type=int,default=10) | |
| parser.add_argument('-T','--thread',help='thread to check default=1000',default=1000,type=int) | |
| parser.add_argument('-o','--output',help=' output to save result',type=str) | |
| return parser.parse_args() |
NewerOlder