wapiti/openssl_conf

29 lines
622 B
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Debian 12 is shipped with openssl 3.0, which deactivate a lot of old ciphers.
# In order to scan some old websites, we have to activate weak ciphers.
# This conf allow the container to use the legacy provider.
#
# Another problem is that the Legacy Rengotiation is deactivated. Let's reactivate it.
openssl_conf = openssl_init
[openssl_init]
providers = provider_sect
ssl_conf = ssl_sect
[provider_sect]
default = default_sect
legacy = legacy_sect
[default_sect]
activate = 1
[legacy_sect]
activate = 1
[ssl_sect]
system_default = system_default_sect
[system_default_sect]
Options = UnsafeLegacyRenegotiation