mirror of
https://github.com/hak5/keycroc-payloads.git
synced 2026-04-02 00:18:41 +01:00
27 lines
496 B
Plaintext
27 lines
496 B
Plaintext
# Title: Text Replacer
|
|
# Description: Example text replacer
|
|
# Author: Hak5
|
|
# Version: 1.0
|
|
# Category: Example
|
|
#
|
|
|
|
MATCH nano
|
|
MATCH vim
|
|
chance=$((1 + RANDOM % 10))
|
|
if [[ "$LOOT" == "vim" ]];then
|
|
if [ "$chance" -gt 5 ]; then
|
|
QUACK BACKSPACE
|
|
QUACK BACKSPACE
|
|
QUACK BACKSPACE
|
|
QUACK nano
|
|
fi
|
|
else
|
|
if [ "$chance" -gt 5 ]; then
|
|
QUACK BACKSPACE
|
|
QUACK BACKSPACE
|
|
QUACK BACKSPACE
|
|
QUACK BACKSPACE
|
|
QUACK vim
|
|
fi
|
|
fi
|