TLS fataler Alarm in Wget

1673
Darren H

Ich wollte eine Datei herunterladen, normalerweise würde ich wget für eine solche Aktion verwenden, aber es gibt einen TLS-Fehler.

root@darren-hp:/var/www/html/adminer# wget "https://raw.githubusercontent.com/vrana/adminer/master/designs/price/adminer.css" --2017-09-17 18:28:35-- https://raw.githubusercontent.com/vrana/adminer/master/designs/price/adminer.css Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 62.252.172.241 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|62.252.172.241|:443... connected. GnuTLS: A TLS fatal alert has been received. GnuTLS: received alert [0]: Close notify Unable to establish SSL connection. root@darren-hp:/var/www/html/adminer# 

Ich habe es mit curl ausprobiert und es erhielt die Datei ohne Probleme

root@darren-hp:/var/www/html/adminer# curl "https://raw.githubusercontent.com/vrana/adminer/master/designs/price/adminer.css" > adminer.css % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 21606 100 21606 0 0 72967 0 --:--:-- --:--:-- --:--:-- 72993 root@darren-hp:/var/www/html/adminer# 

So wurde meine Neugier geweckt und ich habe wget im Debug-Modus versucht, aber ich glaube nicht, dass die Ausgabe weitere relevante Informationen liefert

root@darren-hp:/var/www/html/adminer# wget -d "https://raw.githubusercontent.com/vrana/adminer/master/designs/price/adminer.css" DEBUG output created by Wget 1.16 on linux-gnu.  URI encoding = ‘UTF-8’ --2017-09-17 18:30:14-- https://raw.githubusercontent.com/vrana/adminer/master/designs/price/adminer.css Certificates loaded: 174 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 62.252.172.241 Caching raw.githubusercontent.com => 62.252.172.241 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|62.252.172.241|:443... connected. Created socket 4. Releasing 0x000000000178a9e0 (new refcount 1). GnuTLS: A TLS fatal alert has been received. GnuTLS: received alert [0]: Close notify Closed fd 4 Unable to establish SSL connection. root@darren-hp:/var/www/html/adminer# 

Ich habe die Datei in meinem Browser (Firefox 52.3.0esr) besucht, und es wurde keinerlei Hinweis darauf gegeben, dass Probleme mit dem Zertifikat aufgetreten sind. Certificate

Um zu bestätigen, dass es an meinem Ende kein Problem war, habe ich wget verwendet, um eine andere Datei herunterzuladen, die sich ebenfalls auf einem Server befand, der TLS verwendete, und es wurde ohne Probleme heruntergeladen.

After finally resorting to Google I found this thread that suggested what seemed like a similar problem. Apparently TLS 1.2 is only supported in wget from v1.16.1 and I am only running v1.16 so I tried --check-no-certificate and it made no difference.

Question: Why does wget give me a TLS error in this case? What is the problem, and is it something I can solve? Should I notify the site owner?

2
Haben Sie versucht, die Version von Wget für Kicks und Kicherungen zu aktualisieren? Ramhound vor 7 Jahren 0

0 Antworten auf die Frage