15
5
When I try to run Wget with the following options:
E:\Program Files\GnuWin32\bin>wget -p --html-extension --convert-links --no-check-certificate https://minecraft.net/en-us/
SYSTEM_WGETRC = c:/progra~1/wget/etc/wgetrc
syswgetrc = E:\Program Files\GnuWin32/etc/wgetrc
--2017-02-24 10:38:01-- https://minecraft.net/en-us/
Resolving minecraft.net... 52.84.24.33, 52.84.24.150, 52.84.24.230, ...
Connecting to minecraft.net|52.84.24.33|:443... connected.
OpenSSL: error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure
Unable to establish SSL connection.
I get the error: Unable to establish SSL connection.
The website that I am trying to download is safe.
I have also tried to change the protocol to SSLv3, but it still is not working.
Can someone tell me why it is doing this and how to get around it?
What type fo connnection is this server expecting? It migh be configured to support (SSLv1, SSLv3, SSLv3, TLS 1.0, TLS 1.1, TLS 1.2) or any combination of those possible choices. Does a connection to this website work within a browser, on the same PC and connection, your attempting to connect to it with
wget
? – Ramhound – 2017-02-24T19:10:03.997I can access this website on my computer normally using Chrome with no problems. – William V. – 2017-02-25T01:01:06.813
I look's like it may be using the SSLv3 connection as it states the following in the error:
routines:SSL23_GET_SERVER_HELLO:sslv3
. – William V. – 2017-02-25T01:02:02.513That is what, wget is attempting to use, but the server is rejecting that connection because SSLv3 isn't secure. – Ramhound – 2017-02-25T01:48:52.433
According to other answers below, it looks like the protocol is TLSv1.0 – William V. – 2017-02-25T01:50:31.277