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: 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,