From a4a92ab3b066e145c748c7b6ad1196e21147e659 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Mon, 27 Aug 2018 15:53:03 +0200 Subject: [PATCH] Verify certificates for HTTPS URLs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit HTTPS with correct SSL/TLS configuration is quite common now, so let’s check the certificates. --- src/bee-download.sh.in | 1 - src/beesh.sh.in | 1 - 2 files changed, 2 deletions(-) diff --git a/src/bee-download.sh.in b/src/bee-download.sh.in index cb9b881..faa81f7 100644 --- a/src/bee-download.sh.in +++ b/src/bee-download.sh.in @@ -91,7 +91,6 @@ function download_http() { trap "rm -f ${destination}" EXIT wget \ - --no-check-certificate \ --output-document=${destination} \ --no-clobber \ ${repository_url} diff --git a/src/beesh.sh.in b/src/beesh.sh.in index 96d04fa..831c2ef 100644 --- a/src/beesh.sh.in +++ b/src/beesh.sh.in @@ -278,7 +278,6 @@ function fetch_one_file() { print_info "fetching $url" wget \ - ${nocheck} \ --output-document="${F}/${file}" \ --no-clobber \ --timeout=60 \