From d156590bb6668759d6511b315bf5604e84ae48e0 Mon Sep 17 00:00:00 2001 From: Stefan Schantl Date: Mon, 12 Jul 2021 12:35:51 +0200 Subject: [PATCH] dhs.org: Send request via HTTPS The provider only supports TLS 1.0 and TLS 1.1 but IMHO this is even better than sending the auth details as plain text. Signed-off-by: Stefan Schantl --- src/ddns/providers.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ddns/providers.py b/src/ddns/providers.py index 79db20a..2a4c492 100644 --- a/src/ddns/providers.py +++ b/src/ddns/providers.py @@ -689,7 +689,8 @@ class DDNSProviderDHS(DDNSProvider): # No information about the used update api provided on webpage, # grabed from source code of ez-ipudate. - url = "http://members.dhs.org/nic/hosts" + # Provider currently does not support TLS 1.2. + url = "https://members.dhs.org/nic/hosts" can_remove_records = False supports_token_auth = False -- 2.39.2