diff --git a/pwnagotchi/plugins/default/paw-gps.py b/pwnagotchi/plugins/default/paw-gps.py index a6810334..0d983246 100644 --- a/pwnagotchi/plugins/default/paw-gps.py +++ b/pwnagotchi/plugins/default/paw-gps.py @@ -22,7 +22,9 @@ class PawGPS(plugins.Plugin): def on_handshake(self, agent, filename, access_point, client_station): if 'ip' not in self.options or ('ip' in self.options and self.options['ip'] is None): - ip = "192.168.44.1" + ip = "192.168.44.1:8080" + else: + ip = self.options['ip'] gps = requests.get('http://' + ip + '/gps.xhtml') gps_filename = filename.replace('.pcap', '.gps.json')