-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWordlistGeneratorMenu.py
40 lines (36 loc) · 1.43 KB
/
WordlistGeneratorMenu.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import requests
import os
import time
import random
import sys
os.system("clear")
os.system("cd && cd AllHuntingTools && clear && bash Logo.sh")
print(" \033[1;34m[ 01 ] >> \033[1;36;40mWlcreator - Wordlist creator written in C")
print(" \033[1;34m[ 02 ] >> \033[1;36;40mGoblinWordGenerator - Useful wordlist generator in python")
print(" \033[1;34m[ 03 ] >> \033[1;36;40mSMWYG - tool allows you to perform OSINT and reconnaissance")
print(" \033[1;34m[ 04 ] >> \033[1;36;40mExit System - log out AllHuntingTools")
print(" \033[1;34m[ 05 ] >> \033[1;36;40mBack To MainMenu")
op=int(raw_input("Ma1lHacK: "))
if(op==1):
os.system("clear")
os.system("cd && cd AllHuntingTools && cd wlcreator && ./wlcreator 5 && cd && cd AllHuntingTools && python2 MainMenu.py")
elif(op==2):
os.system("clear")
os.system("cd && cd AllHuntingTools && cd GoblinWordGenerator && python3 goblin.py && cd && cd AllHuntingTools && python2 MainMenu.py")
elif(op==3):
os.system("clear")
os.system("cd && cd AllHuntingTools && cd SMWYG-Show-Me-What-You-Got && python3 SMWYG.py && cd && cd AllHuntingTools && python2 MainMenu.py")
elif(op==4):
time.sleep(0.2)
print("\033[1;31;40mQuiting utility...")
sys.exit()
elif(op==5):
os.system("cd")
os.system("cd AllHuntingTools")
os.system("python2 MainMenu.py")
else:
print("\033[1;31;40mInvalid input. Reloading Tools")
time.sleep(1.6)
os.system("cd")
os.system("cd AllHuntingTools")
os.system("python2 Files/AndroidMenu.py")