# 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

