From e00128d37b22d4eae3823ca21bdbcbb8485fdac2 Mon Sep 17 00:00:00 2001 From: Stefan Schantl Date: Sun, 11 Jul 2021 23:47:32 +0200 Subject: [PATCH] noip.com: Use HTTPS to send requests Fixes #12658. Signed-off-by: Stefan Schantl --- src/ddns/providers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ddns/providers.py b/src/ddns/providers.py index 2f1804b..149eb65 100644 --- a/src/ddns/providers.py +++ b/src/ddns/providers.py @@ -1460,7 +1460,7 @@ class DDNSProviderNOIP(DDNSProtocolDynDNS2, DDNSProvider): # here: http://www.noip.com/integrate/request and # here: http://www.noip.com/integrate/response - url = "http://dynupdate.noip.com/nic/update" + url = "https://dynupdate.noip.com/nic/update" def prepare_request_data(self, proto): assert proto == "ipv4" -- 2.39.5