|
| 1 | +##!/usr/bin/env python3 |
| 2 | +# -*- coding: UTF-8 -*- |
| 3 | +# Version 2.0 |
| 4 | +import os |
| 5 | +import webbrowser |
| 6 | +from platform import system |
| 7 | +from time import sleep |
| 8 | + |
| 9 | +from core import HackingToolsCollection |
| 10 | +from tools.anonsurf import AnonSurfTools |
| 11 | +from tools.ddos import DDOSTools |
| 12 | +from tools.exploit_frameworks import ExploitFrameworkTools |
| 13 | +from tools.forensic_tools import ForensicTools |
| 14 | +from tools.information_gathering_tools import InformationGatheringTools |
| 15 | +from tools.other_tools import OtherTools |
| 16 | +from tools.payload_creator import PayloadCreatorTools |
| 17 | +from tools.phising_attack import PhishingAttackTools |
| 18 | +from tools.post_exploitation import PostExploitationTools |
| 19 | +from tools.remote_administration import RemoteAdministrationTools |
| 20 | +from tools.reverse_engineering import ReverseEngineeringTools |
| 21 | +from tools.sql_tools import SqlInjectionTools |
| 22 | +from tools.steganography import SteganographyTools |
| 23 | +from tools.tool_manager import ToolManager |
| 24 | +from tools.webattack import WebAttackTools |
| 25 | +from tools.wireless_attack_tools import WirelessAttackTools |
| 26 | +from tools.wordlist_generator import WordlistGeneratorTools |
| 27 | +from tools.xss_attack import XSSAttackTools |
| 28 | + |
| 29 | +logo = """\033[92m |
| 30 | +██╗░░██╗░█████╗░░█████╗░██╗░░██╗██╗███╗░░██╗░██████╗░ ████████╗░█████╗░░█████╗░██╗░░░░░██╗░░██╗██╗████████╗ |
| 31 | +██║░░██║██╔══██╗██╔══██╗██║░██╔╝██║████╗░██║██╔════╝░ ╚══██╔══╝██╔══██╗██╔══██╗██║░░░░░██║░██╔╝██║╚══██╔══╝ |
| 32 | +███████║███████║██║░░╚═╝█████═╝░██║██╔██╗██║██║░░██╗░ ░░░██║░░░██║░░██║██║░░██║██║░░░░░█████═╝░██║░░░██║░░░ |
| 33 | +██╔══██║██╔══██║██║░░██╗██╔═██╗░██║██║╚████║██║░░╚██╗ ░░░██║░░░██║░░██║██║░░██║██║░░░░░██╔═██╗░██║░░░██║░░░ |
| 34 | +██║░░██║██║░░██║╚█████╔╝██║░╚██╗██║██║░╚███║╚██████╔╝ ░░░██║░░░╚█████╔╝╚█████╔╝███████╗██║░╚██╗██║░░░██║░░░ |
| 35 | +╚═╝░░╚═╝╚═╝░░╚═╝░╚════╝░╚═╝░░╚═╝╚═╝╚═╝░░╚══╝░╚═════╝░ ░░░╚═╝░░░░╚════╝░░╚════╝░╚══════╝╚═╝░░╚═╝╚═╝░░░╚═╝░░░ |
| 36 | +
|
| 37 | + \033[37m[X] 𝗔𝗟𝗟 𝗜𝗡 𝗢𝗡𝗘 𝗛𝗮𝗰𝗸𝗶𝗻𝗴 𝗧𝗼𝗼𝗹 𝗙𝗼𝗿 𝗛𝗮𝗰𝗸𝗲𝗿𝘀 𝗧𝗼𝗼𝗹 𝗖𝗿𝗲𝗮𝘁𝗲𝗱 𝗯𝘆 𝘾𝙤𝙙𝙞𝙣𝙜 𝙍𝙖𝙣𝙟𝙞𝙩𝙝 𝙁𝙧𝙤𝙢 𝙄𝙉𝘿𝙄𝘼 [X] |
| 38 | + \033[36m[✔] https://github.com/CodingRanjith/hackingtoolkit [✔]\033[35m [✔] Version 2.0 [✔] |
| 39 | + \033[91m[!] 𝗣𝗹𝗲𝗮𝘀𝗲 𝗗𝗼𝗻❜𝘁 𝗨𝘀𝗲 𝗙𝗼𝗿 𝗶𝗹𝗹𝗲𝗴𝗮𝗹 𝗔𝗰𝘁𝗶𝘃𝗶𝘁𝘆 [!]\033[33m !--- 𝗕𝗲𝗴𝗶𝗻𝗻𝗲𝗿 𝗙𝗿𝗶𝗲𝗻𝗱𝗹𝘆 ---! |
| 40 | +\033[97m """ |
| 41 | + |
| 42 | +all_tools = [ |
| 43 | + AnonSurfTools(), |
| 44 | + InformationGatheringTools(), |
| 45 | + WordlistGeneratorTools(), |
| 46 | + WirelessAttackTools(), |
| 47 | + SqlInjectionTools(), |
| 48 | + PhishingAttackTools(), |
| 49 | + WebAttackTools(), |
| 50 | + PostExploitationTools(), |
| 51 | + ForensicTools(), |
| 52 | + PayloadCreatorTools(), |
| 53 | + ExploitFrameworkTools(), |
| 54 | + ReverseEngineeringTools(), |
| 55 | + DDOSTools(), |
| 56 | + RemoteAdministrationTools(), |
| 57 | + XSSAttackTools(), |
| 58 | + SteganographyTools(), |
| 59 | + OtherTools(), |
| 60 | + ToolManager() |
| 61 | +] |
| 62 | + |
| 63 | + |
| 64 | +class AllTools(HackingToolsCollection): |
| 65 | + TITLE = "All tools" |
| 66 | + TOOLS = all_tools |
| 67 | + |
| 68 | + def show_info(self): |
| 69 | + print(logo + '\033[0m \033[97m') |
| 70 | + |
| 71 | + |
| 72 | +if __name__ == "__main__": |
| 73 | + try: |
| 74 | + if system() == 'Linux': |
| 75 | + fpath = "/home/hackingtoolkitpath.txt" |
| 76 | + if not os.path.exists(fpath): |
| 77 | + os.system('clear') |
| 78 | + # run.menu() |
| 79 | + print("""\033[34m |
| 80 | + ⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⣀⡠⢤⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ |
| 81 | +⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡴⠟⠃⠀⠀⠙⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀ |
| 82 | +⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⠋⠀⠀⠀⠀⠀⠀⠘⣆⠀⠀⠀⠀⠀⠀⠀⠀ |
| 83 | +⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⠾⢛⠒⠀⠀⠀⠀⠀⠀⠀⢸⡆⠀⠀⠀⠀⠀⠀⠀ |
| 84 | +⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣶⣄⡈⠓⢄⠠⡀⠀⠀⠀⣄⣷⠀⠀⠀⠀⠀⠀⠀ |
| 85 | +⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣿⣷⠀⠈⠱⡄⠑⣌⠆⠀⠀⡜⢻⠀⠀⠀⠀⠀⠀⠀ |
| 86 | +⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⡿⠳⡆⠐⢿⣆⠈⢿⠀⠀⡇⠘⡆⠀⠀⠀⠀⠀⠀ |
| 87 | +⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢿⣿⣷⡇⠀⠀⠈⢆⠈⠆⢸⠀⠀⢣⠀⠀⠀⠀⠀⠀ |
| 88 | +⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠘⣿⣿⣿⣧⠀⠀⠈⢂⠀⡇⠀⠀⢨⠓⣄⠀⠀⠀⠀ |
| 89 | +⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣸⣿⣿⣿⣦⣤⠖⡏⡸⠀⣀⡴⠋⠀⠈⠢⡀⠀⠀ |
| 90 | +⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⣾⠁⣹⣿⣿⣿⣷⣾⠽⠖⠊⢹⣀⠄⠀⠀⠀⠈⢣⡀ |
| 91 | +⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡟⣇⣰⢫⢻⢉⠉⠀⣿⡆⠀⠀⡸⡏⠀⠀⠀⠀⠀⠀⢇ |
| 92 | +⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢨⡇⡇⠈⢸⢸⢸⠀⠀⡇⡇⠀⠀⠁⠻⡄⡠⠂⠀⠀⠀⠘ |
| 93 | +⢤⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢠⠛⠓⡇⠀⠸⡆⢸⠀⢠⣿⠀⠀⠀⠀⣰⣿⣵⡆⠀⠀⠀⠀ |
| 94 | +⠈⢻⣷⣦⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⡿⣦⣀⡇⠀⢧⡇⠀⠀⢺⡟⠀⠀⠀⢰⠉⣰⠟⠊⣠⠂⠀⡸ |
| 95 | +⠀⠀⢻⣿⣿⣷⣦⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⢧⡙⠺⠿⡇⠀⠘⠇⠀⠀⢸⣧⠀⠀⢠⠃⣾⣌⠉⠩⠭⠍⣉⡇ |
| 96 | +⠀⠀⠀⠻⣿⣿⣿⣿⣿⣦⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣞⣋⠀⠈⠀⡳⣧⠀⠀⠀⠀⠀⢸⡏⠀⠀⡞⢰⠉⠉⠉⠉⠉⠓⢻⠃ |
| 97 | +⠀⠀⠀⠀⠹⣿⣿⣿⣿⣿⣿⣷⡄⠀⠀⢀⣀⠠⠤⣤⣤⠤⠞⠓⢠⠈⡆⠀⢣⣸⣾⠆⠀⠀⠀⠀⠀⢀⣀⡼⠁⡿⠈⣉⣉⣒⡒⠢⡼⠀ |
| 98 | +⠀⠀⠀⠀⠀⠘⣿⣿⣿⣿⣿⣿⣿⣎⣽⣶⣤⡶⢋⣤⠃⣠⡦⢀⡼⢦⣾⡤⠚⣟⣁⣀⣀⣀⣀⠀⣀⣈⣀⣠⣾⣅⠀⠑⠂⠤⠌⣩⡇⠀ |
| 99 | +⠀⠀⠀⠀⠀⠀⠘⢿⣿⣿⣿⣿⣿⣿⣿⣿⣿⡁⣺⢁⣞⣉⡴⠟⡀⠀⠀⠀⠁⠸⡅⠀⠈⢷⠈⠏⠙⠀⢹⡛⠀⢉⠀⠀⠀⣀⣀⣼⡇⠀ |
| 100 | +⠀⠀⠀⠀⠀⠀⠀⠀⠈⠻⣿⣿⣿⣿⣿⣿⣿⣿⣽⣿⡟⢡⠖⣡⡴⠂⣀⣀⣀⣰⣁⣀⣀⣸⠀⠀⠀⠀⠈⠁⠀⠀⠈⠀⣠⠜⠋⣠⠁⠀ |
| 101 | +⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⢿⣿⣿⣿⡟⢿⣿⣿⣷⡟⢋⣥⣖⣉⠀⠈⢁⡀⠤⠚⠿⣷⡦⢀⣠⣀⠢⣄⣀⡠⠔⠋⠁⠀⣼⠃⠀⠀ |
| 102 | +⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠻⣿⣿⡄⠈⠻⣿⣿⢿⣛⣩⠤⠒⠉⠁⠀⠀⠀⠀⠀⠉⠒⢤⡀⠉⠁⠀⠀⠀⠀⠀⢀⡿⠀⠀⠀ |
| 103 | +⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠙⢿⣤⣤⠴⠟⠋⠉⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠑⠤⠀⠀⠀⠀⠀⢩⠇⠀⠀⠀ |
| 104 | +⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ |
| 105 | + \033[31m@CodingRanjith |
| 106 | + \033[32m[@] Set Path (All your tools will be installed in that directory) |
| 107 | + [1] Manual |
| 108 | + [2] Default |
| 109 | + """) |
| 110 | + choice = input("CodingRanjith =>> ") |
| 111 | + |
| 112 | + if choice == "1": |
| 113 | + inpath = input("Enter Path (with Directory Name) >> ") |
| 114 | + with open(fpath, "w") as f: |
| 115 | + f.write(inpath) |
| 116 | + print(f"Successfully Set Path to: {inpath}") |
| 117 | + elif choice == "2": |
| 118 | + autopath = "/home/hackingtoolkit/" |
| 119 | + with open(fpath, "w") as f: |
| 120 | + f.write(autopath) |
| 121 | + print(f"Your Default Path Is: {autopath}") |
| 122 | + sleep(3) |
| 123 | + else: |
| 124 | + print("Try Again..!!") |
| 125 | + exit(0) |
| 126 | + |
| 127 | + with open(fpath) as f: |
| 128 | + archive = f.readline() |
| 129 | + if not os.path.exists(archive): |
| 130 | + os.mkdir(archive) |
| 131 | + os.chdir(archive) |
| 132 | + AllTools().show_options() |
| 133 | + |
| 134 | + # If not Linux and probably Windows |
| 135 | + elif system() == "Windows": |
| 136 | + print( |
| 137 | + r"\033[91m Please Run This Tool On A Debian System For Best Results\e[00m" |
| 138 | + ) |
| 139 | + sleep(2) |
| 140 | + webbrowser.open_new_tab("https://tinyurl.com/y522modc") |
| 141 | + |
| 142 | + else: |
| 143 | + print("Please Check Your System or Open New Issue ...") |
| 144 | + |
| 145 | + except KeyboardInterrupt: |
| 146 | + print("\nExiting ..!!!") |
| 147 | + sleep(2) |
0 commit comments