From e04badc2549322a4b09c1cc05166214cf1d58075 Mon Sep 17 00:00:00 2001 From: jayofelony Date: Sun, 17 Nov 2024 20:04:18 +0100 Subject: [PATCH] Update build Signed-off-by: jayofelony --- builder/data/64bit/usr/bin/pwnagotchi-launcher | 4 ++-- pwnagotchi/plugins/default/bt-tether.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/builder/data/64bit/usr/bin/pwnagotchi-launcher b/builder/data/64bit/usr/bin/pwnagotchi-launcher index d9d8b885..de3d692b 100755 --- a/builder/data/64bit/usr/bin/pwnagotchi-launcher +++ b/builder/data/64bit/usr/bin/pwnagotchi-launcher @@ -10,8 +10,8 @@ if is_crypted_mode; then fi if is_auto_mode; then - /usr/local/bin/pwnagotchi + /usr/local/src/pwnagotchi/env/bin/pwnagotchi systemctl restart bettercap else - /usr/local/bin/pwnagotchi --manual + /usr/local/src/pwnagotchi/env/bin/pwnagotchi --manual fi diff --git a/pwnagotchi/plugins/default/bt-tether.py b/pwnagotchi/plugins/default/bt-tether.py index 7ca7635a..675f148d 100644 --- a/pwnagotchi/plugins/default/bt-tether.py +++ b/pwnagotchi/plugins/default/bt-tether.py @@ -490,7 +490,7 @@ class BTTether(plugins.Plugin): sorted_devices = sorted(devices_to_try, key=lambda x: x.search_order) for device in sorted_devices: - bt = BTNap(device.mac) + bt = BTNap(device.mac.lower()) try: logging.debug('BT-TETHER: Search %d secs for %s ...', device.scantime, device.name)