From 9e08a6294c238b54b7b3994295bedc5259b785d6 Mon Sep 17 00:00:00 2001 From: Sniffleupagus <129890632+Sniffleupagus@users.noreply.github.com> Date: Tue, 3 Dec 2024 10:36:48 -0800 Subject: [PATCH 1/2] Add session stats reporting to AUTO mode add MANU session stats to AUTO mode, too Signed-off-by: Sniffleupagus <129890632+Sniffleupagus@users.noreply.github.com> --- pwnagotchi/cli.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pwnagotchi/cli.py b/pwnagotchi/cli.py index f9d6f5e1..e6763678 100644 --- a/pwnagotchi/cli.py +++ b/pwnagotchi/cli.py @@ -48,6 +48,7 @@ def pwnagotchi_cli(): logging.info("entering auto mode ...") agent.mode = 'auto' + agent.last_session.parse(agent.view(), args.skip_session) # show stats in AUTO agent.start() while True: From b3df38e921da2c902ef6751fc3ea0d68050297b9 Mon Sep 17 00:00:00 2001 From: jayofelony Date: Wed, 4 Dec 2024 08:07:19 +0100 Subject: [PATCH 2/2] Delete brain from grid as there is no more AI. --- pwnagotchi/grid.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pwnagotchi/grid.py b/pwnagotchi/grid.py index 2fc9d62f..2aee559a 100644 --- a/pwnagotchi/grid.py +++ b/pwnagotchi/grid.py @@ -86,7 +86,6 @@ def update_data(last_session): 'peers': last_session.peers, }, 'uname': subprocess.getoutput("uname -a"), - 'brain': brain, 'version': pwnagotchi.__version__, 'build': "Pwnagotchi by Jayofelony", 'plugins': enabled,