From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: ddns@lists.ipfire.org Subject: [PATCH] Use HTTPS for checkip{6,4}.dns.lightningwirelabs.com Date: Tue, 08 Oct 2019 08:37:06 +0000 Message-ID: <20191008083706.5120-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0232817873729840293==" List-Id: --===============0232817873729840293== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Since we are deploying a HSTS policy for lightningwirelabs.com now, and we generally only use HTTPS for everything, this patch changes this for the IP address discovery process, too. Signed-off-by: Michael Tremer --- src/ddns/system.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ddns/system.py b/src/ddns/system.py index 67ea553..b7a51f6 100644 --- a/src/ddns/system.py +++ b/src/ddns/system.py @@ -112,9 +112,9 @@ class DDNSSystem(object): def guess_external_ip_address(self, family, **kwargs): if family == "ipv6": - url = "http://checkip6.dns.lightningwirelabs.com" + url = "https://checkip6.dns.lightningwirelabs.com" elif family == "ipv4": - url = "http://checkip4.dns.lightningwirelabs.com" + url = "https://checkip4.dns.lightningwirelabs.com" else: raise ValueError("unknown address family") -- 2.20.1 --===============0232817873729840293==--