Erro Wget TLS 1.2

4

De acordo com o manual , eu deveria ser capaz de especificar TLS versão 1.2 ao usar o wget.

Quando eu tento, ele falha.

wget https://site --no-check-certificate --secure-protocol=TLSv1_2
wget: --secure-protocol: Invalid value ‘TLSv1_2’.

Se eu usar wget https://site --no-check-certificate --secure-protocol=TLSv1 , funcionará bem.

Informação da versão:

wget --version
GNU Wget 1.15 built on linux-gnu.

+digest +https +ipv6 +iri +large-file +nls +ntlm +opie +ssl/openssl 

Wgetrc: 
    /etc/wgetrc (system)
Locale: 
    /usr/share/locale 
Compile: 
    gcc -DHAVE_CONFIG_H -DSYSTEM_WGETRC="/etc/wgetrc" 
    -DLOCALEDIR="/usr/share/locale" -I. -I../../src -I../lib 
    -I../../lib -D_FORTIFY_SOURCE=2 -I/usr/include -g -O2 
    -fstack-protector --param=ssp-buffer-size=4 -Wformat 
    -Werror=format-security -DNO_SSLv2 -D_FILE_OFFSET_BITS=64 -g -Wall 
Link: 
    gcc -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
    -Werror=format-security -DNO_SSLv2 -D_FILE_OFFSET_BITS=64 -g -Wall 
    -Wl,-Bsymbolic-functions -Wl,-z,relro -L/usr/lib -lssl -lcrypto 
    -ldl -lz -lidn -luuid ftp-opie.o openssl.o http-ntlm.o 
    ../lib/libgnu.a 

Copyright (C) 2011 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later
<http://www.gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Originally written by Hrvoje Niksic <[email protected]>.
Please send bug reports and questions to <[email protected]>.
    
por Zamicol 22.10.2015 / 00:24

2 respostas

5

Como escrito na página do projeto do wget, os protocolos seguros TLSv1_1 e TLSv1_2 foram adicionados na versão wget 1.16.1. Seu wget 1.15 não suporta isso.

Recursos:

por 22.10.2015 / 00:43
4

Você está usando o wget 1.15.

Parece que você precisa, pelo menos, do wget 1.16.1 para isso, porque uma das alterações nesse lançamento foi:

  • Add --secure-protocol=TLSv1_1|TLSv1_2 .
    
por 22.10.2015 / 00:43

Tags