]> git.ipfire.org Git - oddments/ddns.git/commitdiff
domopoli.de: Send request via HTTPS
authorStefan Schantl <stefan.schantl@ipfire.org>
Mon, 12 Jul 2021 10:38:07 +0000 (12:38 +0200)
committerStefan Schantl <stefan.schantl@ipfire.org>
Mon, 12 Jul 2021 10:38:07 +0000 (12:38 +0200)
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 <stefan.schantl@ipfire.org>
src/ddns/providers.py

index ca6792ad66f46dbac13c4863c0235f53e63d6249..82eb60463a0c525c40d5d0e4b9462e2c02fd5f3c 100644 (file)
@@ -1044,7 +1044,8 @@ class DDNSProviderDomopoli(DDNSProtocolDynDNS2, DDNSProvider):
 
        # https://www.domopoli.de/?page=howto#DynDns_start
 
-       url = "http://dyndns.domopoli.de/nic/update"
+       # This provider does not support TLS 1.2.
+       url = "https://dyndns.domopoli.de/nic/update"
 
 
 class DDNSProviderDynsNet(DDNSProvider):