Files
pwnagotchi/builder/data/usr/bin/bettercap-launcher
jayofelony c47fb379cb Update build
Signed-off-by: jayofelony <oudshoorn.jeroen@gmail.com>
2024-11-20 13:39:45 +01:00

20 lines
422 B
Bash
Executable File

#!/usr/bin/env bash
source /usr/bin/pwnlib
# we need to decrypt something
if is_crypted_mode; then
while ! is_decrypted; do
echo "Waiting for decryption..."
sleep 1
done
fi
reload_brcm
start_monitor_interface
if is_auto_mode_no_delete; then
/usr/local/bin/bettercap -no-colors -caplet pwnagotchi-auto -iface wlan0mon
else
/usr/local/bin/bettercap -no-colors -caplet pwnagotchi-manual -iface wlan0mon
fi