forked from Altify-Development/Hacking-Tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
125 lines (73 loc) · 3.06 KB
/
main.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# -*- coding: utf-8 -*-
import os , errno , sys , subprocess
from tools.client.text_color import color
def main():
from tools.client.client import client
check_output = client().system('apt show version figlet')
#client().puts(str(check_output2))
client().system("clear")
if check_output != 0:
client().system("sudo apt-get install figlet")
client().system("clear")
client().system(f"figlet Hacking Tool Kits")
client().puts("""
If you find a bug or bug, you can contact me on discord. Altify#5121
View My Other Projects On Github:
https://github.com/Altify-Developing - https://github.com/Altify-Development
1: DDOS
2: Brute-Force
3: Database-Stealing
4: Exploit-Search
5: Firewall-Dedection
6: Port-Scanner
7: Toolkit-Search
8: Trojan-Maker
9: Vpn-Checker
10: Vulnerability-Analysis
0: Quit
""")
CRYONICX = client().read(f"{color.GREEN}Enter transaction number {color.RESET_ALL} ")
if CRYONICX == "1":
client().system("python3 tools/ddos.py")
if CRYONICX == "2":
client().system("python3 tools/brute_force.py")
elif CRYONICX == "3":
client().system("python3 tools/Database_Stealing_Tool.py")
elif CRYONICX == "4":
client().system("python3 tools/Exploit_Search_Tool.py")
elif CRYONICX == "5":
client().system("python3 tools/Firewall_detection_tool.py")
elif CRYONICX == "6":
client().system("python3 tools/port_scanner.py")
elif CRYONICX == "7":
client().system("python3 tools/toolkit_search.py")
elif CRYONICX == "8":
client().system("python3 tools/trojan_maker.py")
elif CRYONICX == "9":
client().system("python3 tools/vpn_check.py")
elif CRYONICX == "10":
client().system("python3 tools/vulnerability_analysis.py")
elif CRYONICX == "0":
client().puts("""
Thank You For Playing Fair :)
View My Other Projects On Github:
https://github.com/Altify-Developing
goodbye 👍👍
""")
if __name__ == '__main__' and os.name == 'posix':
if os.getuid() == 0:
main()
else:
print(f"{color.RED}[-] Please open the program as admin or root! ( sudo python3 main.py ){color.RESET_ALL}")
exit()
else:
print(f"""
{color.GREEN}
█░█ ▄▀█ █▀▀ █▄▀ █ █▄░█ █▀▀ ▀█▀ █▀█ █▀█ █░░ █▄▀ █ ▀█▀ █▀ Developed by Altify
█▀█ █▀█ █▄▄ █░█ █ █░▀█ █▄█ ░█░ █▄█ █▄█ █▄▄ █░█ █ ░█░ ▄█
{color.RESET_ALL}
{color.RED}[!] You can run this script only on debian system.{color.RESET_ALL}
View My Other Projects On Github:
{color.YELLOW}https://github.com/Altify-Developing\n\nhttps://github.com/Altify-Development{color.RESET_ALL}
goodbye 👍👍
""")