VirtualBox

Changes between Initial Version and Version 1 of Ticket #21451, comment 12


Ignore:
Timestamp:
Apr 26, 2023 10:17:13 PM (13 months ago)
Author:
pgnd

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #21451, comment 12

    initial v1  
    1 yep, that's the point of Yoda's link @ OP,
     1pebkac.  sort of.
    22
    3 https://www.scrye.com/wordpress/nirik/2023/01/31/error-rpmdbnextiterator-skipping-in-fedora-38/
     3{{{
     4our server side TLS policy here is
    45
    5 tho ...
     6        https://wiki.mozilla.org/Security/Server_Side_TLS#Modern_compatibility
    67
    7 it's not clear to me why curl fails @ vb site, but OK @ oracle
    8 and wget's good at both.
     8that includes
     9
     10        Cipher suites (TLS 1.3): TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256
     11        Cipher suites (TLS 1.2): (none)
     12
     13clients, for a fair while now, match.  we typically don't allow non-TLS 1.3 anymore.
     14
     15checking, virtualbox.org's ssl report
     16
     17        https://www.ssllabs.com/ssltest/analyze.html?d=virtualbox.org
     18
     19shows no tls 1.3 support; only 1.2.  and of those, only 1 strong,
     20
     21        TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
     22
     23adding that suite to
     24
     25        CipherSuites
     26
     27in
     28
     29        /etc/ssl/openssl.conf
     30
     31does the trick.
     32
     33curl & dnf curl with the new repo gpgkey url work fine, now.
     34
     35wget wasn't sentitive to openssl config, as
     36
     37        ldd `which wget` |grep -Ei "ssl|tls"
     38        libgnutls.so.30 => /lib64/libgnutls.so.30 (0x00007efd79200000)
     39
     40        ldd `which curl` |grep -Ei "ssl|tls"
     41        libssl.so.3 => /lib64/libssl.so.3 (0x00007fad4132c000)
     42
     43it would be helpful virtualbox.org server to get bumped to include tls1.3 support.
     44}}}

© 2023 Oracle
ContactPrivacy policyTerms of Use