Bug report on ParrotSec on wget and SSLv3

2021-12-27 Thread kedalez
XUser:~/Desktop$ wget parrotsec.org --secure-protocol=SSLv3
--2021-12-27 10:29:27--  http://parrotsec.org/
Resolving parrotsec.org (parrotsec.org)... 51.161.118.148,
2607:5300:203:7094::feed:dead:beef
Connecting to parrotsec.org (parrotsec.org)|51.161.118.148|:80...
connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://parrotsec.org/ [following]
--2021-12-27 10:29:28--  https://parrotsec.org/
OpenSSL: unimplemented 'secure-protocol' option value 2
Please report this issue to bug-wget@gnu.org




Re: Bug report on ParrotSec on wget and SSLv3

2021-12-27 Thread Tim Rühsen

It looks like the underlying TLS/SSL library doesn't support SSLv3.
You possibly need to build the TLS/SSL library with SSLv3 enabled.

Regards, Tim

On 27.12.21 16:38, keda...@outlook.com wrote:

XUser:~/Desktop$ wget parrotsec.org --secure-protocol=SSLv3
--2021-12-27 10:29:27--  http://parrotsec.org/
Resolving parrotsec.org (parrotsec.org)... 51.161.118.148,
2607:5300:203:7094::feed:dead:beef
Connecting to parrotsec.org (parrotsec.org)|51.161.118.148|:80...
connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://parrotsec.org/ [following]
--2021-12-27 10:29:28--  https://parrotsec.org/
OpenSSL: unimplemented 'secure-protocol' option value 2
Please report this issue to bug-wget@gnu.org




OpenPGP_signature
Description: OpenPGP digital signature


Re: Bug report on ParrotSec on wget and SSLv3

2021-12-27 Thread Jeffrey Walton
On Mon, Dec 27, 2021 at 12:50 PM Tim Rühsen  wrote:
>
> It looks like the underlying TLS/SSL library doesn't support SSLv3.
> You possibly need to build the TLS/SSL library with SSLv3 enabled.

For OpenSSL, the option is enable-ssl3:

./Configure enable-ssl3

But OpenSSL master (3.x) does not seem to honor it (or variations). It
is probably  a bug in OpenSSL's configure program.

This seems to work:

git checkout OpenSSL_1_0_0-stable && git pull
./Configure linux-x86_64 enable-ssl3

Then:

$ grep SSL3 include/openssl/opensslconf.h
$

Jeff