Skip to content

Commit 2806d0f

Browse files
committed
added payload runner script
1 parent efbe1e0 commit 2806d0f

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
import time
2+
import background
3+
import os
4+
5+
##select which command line you want to run the payload on
6+
##commandline="cmd /c "
7+
commandline="powershell "
8+
9+
time_delay=0 ##in seconds
10+
11+
##CUSTOM PAYLOAD
12+
payload="Start-process chrome.exe https://www.youtube.com/watch?v=dQw4w9WgXcQ" ##rickroll payload
13+
14+
15+
##other payloads (example)
16+
##payload="shutdown"
17+
## --shuts down the machine without any confirmation
18+
19+
##payload="shutdown -force -restart"
20+
## --restarts the machine without any confirmation
21+
##payload="netsh wlan disconnect"
22+
## --disconnects the wifi of the machine
23+
24+
##THESE ARE JUST A FEW. The possibilities are endless
25+
26+
27+
28+
@background.task
29+
def work():
30+
if(time_delay!=0):
31+
time.sleep(time_delay)
32+
os.system(commandline+payload)
33+
work()

0 commit comments

Comments
 (0)