BrowserBrute/browserbrute.py

14 lines
196 B
Python
Raw Permalink Normal View History

2024-05-16 12:09:34 +00:00
#imports
2024-05-15 20:13:03 +00:00
import lib.brute
import lib.parse
import lib.banner
2024-05-16 12:09:34 +00:00
#parse arguments
2024-05-15 20:13:03 +00:00
args=lib.parse.parser()
2024-05-16 12:09:34 +00:00
#print banner
2024-05-15 20:13:03 +00:00
lib.banner.banner()
2024-05-16 12:09:59 +00:00
#online bruteforce passing in args
2024-05-16 12:09:34 +00:00
lib.brute.brute(args)