1
0
mirror of https://github.com/Z4nzu/hackingtool.git synced 2025-06-20 06:15:54 +02:00
This commit is contained in:
Mr.Z4nzu
2020-04-19 13:09:33 +05:30
committed by GitHub
parent cceea8a5d5
commit 24b19e1e49

View File

@ -1409,6 +1409,7 @@ def steganography():
print(""" print("""
[1] SteganoHide [1] SteganoHide
[2] StegnoCracker [2] StegnoCracker
[3] WhiteSpace
[99]Back [99]Back
""") """)
choice = input("Z4nz =>> ") choice = input("Z4nz =>> ")
@ -1416,6 +1417,8 @@ def steganography():
steganohide() steganohide()
elif choice == "2": elif choice == "2":
stegnocracker() stegnocracker()
elif choice == "3":
whitespace()
elif choice == "99": elif choice == "99":
menu() menu()
else : else :
@ -1453,6 +1456,18 @@ def stegnocracker():
else : else :
menu() menu()
def whitespace():
choice =input("[1]Install [2]Run [99]Back >> ")
if choice == "1":
os.system("sudo git clone https://github.com/beardog108/snow10.git ")
os.system("chmod -R 755 snow10")
elif choice == "2":
os.system("cd snow10 && firefox index.html")
elif choice == "99":
steganography()
else :
menu()
def sqltool(): def sqltool():
print(""" print("""
[1] sqlmap tool [1] sqlmap tool
@ -1531,12 +1546,13 @@ if __name__ == "__main__":
try: try:
if system() == 'Linux': if system() == 'Linux':
if path.exists("/home/"): if path.exists("/home/"):
os.chdir("/home/") os.chdir("/home")
if os.path.isdir('hackingtool'): if os.path.isdir('hackingtool'):
os.chdir("/home/hackingtool/") os.chdir("/home/hackingtool/")
menu() menu()
else : else :
os.system("mkdir hackingtool") os.system("mkdir hackingtool")
os.chdir("/home/hackingtool/")
menu() menu()
elif path.exists('/data'): elif path.exists('/data'):
os.chdir("data/data/com.termux/files/home/") os.chdir("data/data/com.termux/files/home/")
@ -1545,6 +1561,7 @@ if __name__ == "__main__":
menu() menu()
else : else :
os.system("mkdir hackingtoolstore") os.system("mkdir hackingtoolstore")
os.chdir("data/data/com.termux/files/home/hackingtool/")
menu() menu()
except KeyboardInterrupt: except KeyboardInterrupt:
print(" Sorry ..!!!") print(" Sorry ..!!!")