From c6532ee929883da2ca1664fc5d3e8240613e780d Mon Sep 17 00:00:00 2001 From: JabLuszko Date: Wed, 29 Nov 2023 19:46:35 +0100 Subject: [PATCH] Downgrade ifconfig.me to plain HTTP rather than SSL (#1371) Just to make sure it won't backfire with wrong date/outdated system certs etc. --- mapadroid/utils/walkerArgs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mapadroid/utils/walkerArgs.py b/mapadroid/utils/walkerArgs.py index 683b372f5..7faccf464 100644 --- a/mapadroid/utils/walkerArgs.py +++ b/mapadroid/utils/walkerArgs.py @@ -368,7 +368,7 @@ def parse_args(): dest='autoconfig_no_auth') # PTC Login tracking - parser.add_argument('-ips', '--ip_service', default='https://checkip.amazonaws.com', + parser.add_argument('-ips', '--ip_service', default='http://ifconfig.me', help=('Host to use to request the external IPv4 address of the device. ' 'MAD will search for the first IPv4 address via regex.')) parser.add_argument('-elt', '--enable_login_tracking', action='store_true', default=False,