mirror of
https://github.com/hak5darren/bashbunny-payloads.git
synced 2025-10-29 16:58:12 +00:00
9 lines
134 B
Bash
Executable File
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
|