forked from Ha3MrX/Hacking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHa3Mrx.py
51 lines (45 loc) · 1.42 KB
/
Ha3Mrx.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
import os, sys, time
from time import sleep as timeout
def restart_program():
python = sys.executable
os.execl(python, python, * sys.argv)
curdir = os.getcwd()
os.system("clear")
os.system("figlet Ha3MrX")
print "Create By : Ha3MrX"
print "YouTube : https://www.youtube.com/c/HA-MRX"
print "github : https://github.com/Ha3MrX"
print "Facebook : https://www.facebook.com/muhamad.jabar222"
print "Website : https://kurdkali.wordpress.com/"
print "Twitter : https://twitter.com/ha_mrx"
print
print " [1]> Brute Force "
print " [2]> DDos Attack "
print " [3]> NMap PortScanner "
print " [4]> Install Tools Hacking "
print
print " [0]> Exit "
print
A = raw_input("Ha3MrX ==>> ")
if A == "1" or A == "01":
os.system("python2 brute.py")
elif A == "2" or A == "02":
os.system("clear")
os.system("figlet DDOS Attack")
ip = raw_input("IP Address : ")
port = raw_input("Port : ")
packet =raw_input("Packet : ")
os.system("python2 pntddos %s %s %s" % (ip, port, packet))
elif A == "3" or A == "03":
os.system("clear")
os.system("figlet NMap Scan")
host = raw_input("Host : ")
os.system("nmap %s" % (host))
elif A == "4" or A == "04":
os.system("python2 lazymux.py")
elif A == "0" or A == "00":
sys.exit()
else:
print "\nERROR: Wrong Input"
timeout(3)
restart_program()