79393299

Date: 2025-01-28 09:31:37
Score: 0.5
Natty:
Report link

i had a problem surrounding a similar issue as i was updating a project running on linux docker from 6 to 8 and run in the openssl issue, i needed to modify my image to work with lower tls versions:

    RUN sed -i '/\[openssl_init\]/a ssl_conf = ssl_configuration' /etc/ssl/openssl.cnf && \
    echo "\n[ssl_configuration]" >> /etc/ssl/openssl.cnf && \
    echo "system_default = tls_system_default" >> /etc/ssl/openssl.cnf && \
    echo "\n[tls_system_default]" >> /etc/ssl/openssl.cnf && \
    echo "MinProtocol = TLSv1" >> /etc/ssl/openssl.cnf && \
    echo "CipherString = DEFAULT@SECLEVEL=0" >> /etc/ssl/openssl.cnf

maybe this helps you in any way

Reasons:
  • Blacklisted phrase (0.5): i need
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Florian Draxler