From 8965ad9272f5bba217534ef15bcbf7305d9d189b Mon Sep 17 00:00:00 2001 From: Arttumiro Date: Thu, 14 Nov 2019 11:45:39 +0200 Subject: [PATCH] change default ip of paw-gps, it needs port too. Change default ip from 192.168.44.1 (which is the ip address of an android on bt tether) to 192.168.44.1:8080 so it has the default port paw-gps opens on, which is 8080. --- pwnagotchi/plugins/default/paw-gps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwnagotchi/plugins/default/paw-gps.py b/pwnagotchi/plugins/default/paw-gps.py index a681033..5422c14 100644 --- a/pwnagotchi/plugins/default/paw-gps.py +++ b/pwnagotchi/plugins/default/paw-gps.py @@ -22,7 +22,7 @@ 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" gps = requests.get('http://' + ip + '/gps.xhtml') gps_filename = filename.replace('.pcap', '.gps.json')