mirror of
https://github.com/jayofelony/pwnagotchi.git
synced 2026-01-27 07:14:21 -08:00
12 lines
260 B
Bash
Executable File
12 lines
260 B
Bash
Executable File
#!/usr/bin/env bash
|
|
source /usr/bin/pwnlib
|
|
|
|
# start mon0
|
|
start_monitor_interface
|
|
|
|
if is_auto_mode_no_delete; then
|
|
/usr/bin/bettercap -no-colors -caplet pwnagotchi-auto -iface mon0
|
|
else
|
|
/usr/bin/bettercap -no-colors -caplet pwnagotchi-manual -iface mon0
|
|
fi
|