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
from threading import Thread | |
import time,requests,sys,os.path | |
def usage(): | |
print("----------USAGE INSTRUCTION ---------") | |
print(f"{sys.argv[0]} URL WORDLIST NUMBER_OF_THREADS(Default is 10)\n") | |
sys.exit() | |
def prepare(myList,numOfChunks): | |
for i in range(0, len(myList), numOfChunks): |
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
def brute(myList,url): | |
start=time.perf_counter() | |
for lists in myList: | |
threads.append(Thread(target=worker,args=(lists,url),daemon=True)) | |
for thread in threads: | |
try: | |
thread.start() | |
except KeyboardInterrupt: | |
print("\nReceived Keyboard Interrupt , Terminating threads\n") | |
sys.exit() |
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
def brute(myList,url): | |
start=time.perf_counter() | |
for lists in myList: | |
threads.append(Thread(target=worker,args=(lists,url),daemon=True)) | |
for thread in threads: | |
try: | |
thread.start() | |
except KeyboardInterrupt: | |
print("\nReceived Keyboard Interrupt , Terminating threads\n") | |
sys.exit() |
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 time | |
import requests | |
from fake_useragent import UserAgent | |
from stem import Signal | |
from stem.control import Controller | |
proxies = { | |
'http': 'socks5://127.0.0.1:9050', | |
'https': 'socks5://127.0.0.1:9050' | |
} | |
print("Changing IP Address in every 10 seconds....\n\n") |
OlderNewer