Unverified Commit 24b19e1e authored by Mr.Z4nzu's avatar Mr.Z4nzu Committed by GitHub
Browse files

Changes

parent cceea8a5
Loading
Loading
Loading
Loading
+20 −3
Original line number Diff line number Diff line
@@ -1409,6 +1409,7 @@ def steganography():
    print("""
        [1] SteganoHide
        [2] StegnoCracker
        [3] WhiteSpace
        [99]Back
    """)
    choice = input("Z4nz =>> ")
@@ -1416,6 +1417,8 @@ def steganography():
        steganohide()
    elif choice == "2":
        stegnocracker()
    elif choice == "3":
        whitespace()
    elif choice == "99":
        menu()
    else :
@@ -1453,6 +1456,18 @@ def stegnocracker():
    else :
        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():
    print("""
        [1]  sqlmap tool
@@ -1531,12 +1546,13 @@ if __name__ == "__main__":
    try:
        if system() == 'Linux':
            if path.exists("/home/"):
                os.chdir("/home/")
                os.chdir("/home")
                if os.path.isdir('hackingtool'):
                    os.chdir("/home/hackingtool/")
                    menu()
                else :
                    os.system("mkdir hackingtool")
                    os.chdir("/home/hackingtool/")
                    menu()
        elif path.exists('/data'):
            os.chdir("data/data/com.termux/files/home/")
@@ -1545,6 +1561,7 @@ if __name__ == "__main__":
                menu()
            else :
                os.system("mkdir hackingtoolstore")
                os.chdir("data/data/com.termux/files/home/hackingtool/")
                menu()
    except KeyboardInterrupt:
        print(" Sorry ..!!!")