Files
bashbunny-payloads/payloads/extensions/ducky_lang.sh
2017-05-01 12:14:54 +10:00

9 lines
134 B
Bash
Executable File

#!/bin/bash
function DUCKY_LANG() {
[[ -z "$1" ]] && exit 1 # parameter must be set
export DUCKY_LANG="$1"
}
export -f DUCKY_LANG