From 56d819f4c47215cd1d924c1b0c7e273f31280077 Mon Sep 17 00:00:00 2001 From: Patrick Siegl <3261314+psiegl@users.noreply.github.com> Date: Wed, 4 Mar 2020 14:37:48 +0100 Subject: [PATCH 1/2] DuckDNS uses https over http --- ddclient | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ddclient b/ddclient index 8a1bacc..1facfad 100755 --- a/ddclient +++ b/ddclient @@ -4781,7 +4781,7 @@ o 'duckdns' The 'duckdns' protocol is used by the free dynamic DNS service offered by www.duckdns.org. -Check http://www.duckdns.org/install.jsp?tab=linux-cron for API +Check https://www.duckdns.org/install.jsp?tab=linux-cron for API Configuration variables applicable to the 'duckdns' protocol are: protocol=duckdns ## @@ -4792,7 +4792,7 @@ Configuration variables applicable to the 'duckdns' protocol are: Example ${program}.conf file entries: ## single host update protocol=duckdns, \\ - password=z0mgs3cjur3p4ss \\ + password=z0mgs3cjur3p4ss, \\ myhost EoEXAMPLE @@ -4816,7 +4816,7 @@ sub nic_duckdns_update { # Set the URL that we're going to to update my $url; - $url = "http://$config{$h}{'server'}/update"; + $url = "https://$config{$h}{'server'}/update"; $url .= "?domains="; $url .= $h; $url .= "&token="; From 448e5c22c96f72a3f031305035768d7737a15ef7 Mon Sep 17 00:00:00 2001 From: Sandro Date: Wed, 27 May 2020 02:29:26 +0200 Subject: [PATCH 2/2] Change password --- ddclient | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ddclient b/ddclient index 1facfad..e3d6fe5 100755 --- a/ddclient +++ b/ddclient @@ -4792,7 +4792,7 @@ Configuration variables applicable to the 'duckdns' protocol are: Example ${program}.conf file entries: ## single host update protocol=duckdns, \\ - password=z0mgs3cjur3p4ss, \\ + password=your_password, \\ myhost EoEXAMPLE