mirror of
https://invent.kde.org/network/falkon.git
synced 2024-12-20 02:36:34 +01:00
[NetworkManager] SSL workaround: use correct domain matching
This commit is contained in:
parent
ee91727cb2
commit
ad1296e170
@ -85,7 +85,8 @@ NetworkManager::NetworkManager(QObject* parent)
|
||||
setProxyFactory(m_proxyFactory);
|
||||
loadSettings();
|
||||
|
||||
m_sslv3Sites << QLatin1String("centrum.sk") << QLatin1String("oneaccount.com") << QLatin1String("www.hdi.de")
|
||||
// Force SSLv3 for servers that doesn't understand TLSv1 handshake
|
||||
m_sslv3Sites << QLatin1String("centrum.sk") << QLatin1String("oneaccount.com") << QLatin1String("hdi.de")
|
||||
<< QLatin1String("live.com");
|
||||
}
|
||||
|
||||
@ -105,17 +106,6 @@ void NetworkManager::loadSettings()
|
||||
settings.endGroup();
|
||||
m_acceptLanguage = AcceptLanguage::generateHeader(settings.value("Language/acceptLanguage", AcceptLanguage::defaultLanguage()).toStringList());
|
||||
|
||||
// Falling back to Qt 4.7 default behavior, use SslV3 by default
|
||||
// Fixes issue with some older servers closing the connection
|
||||
|
||||
// However, it also makes some servers requesting TLS ClientHello
|
||||
// not working, or showing invalid certificates.
|
||||
// See #921
|
||||
|
||||
// QSslConfiguration config = QSslConfiguration::defaultConfiguration();
|
||||
// config.setProtocol(QSsl::SslV3);
|
||||
// QSslConfiguration::setDefaultConfiguration(config);
|
||||
|
||||
#if defined(Q_OS_WIN) || defined(Q_OS_HAIKU) || defined(Q_OS_OS2)
|
||||
QString certDir = mApp->PROFILEDIR + "certificates";
|
||||
QString bundlePath = certDir + "/ca-bundle.crt";
|
||||
@ -577,7 +567,7 @@ QNetworkReply* NetworkManager::createRequest(QNetworkAccessManager::Operation op
|
||||
// Force SSLv3 for servers that doesn't understand TLSv1 handshake
|
||||
if (req.url().scheme() == QLatin1String("https")) {
|
||||
foreach (const QString &host, m_sslv3Sites) {
|
||||
if (req.url().host().endsWith(host)) {
|
||||
if (QzTools::matchDomain(host, req.url().host())) {
|
||||
QSslConfiguration conf = req.sslConfiguration();
|
||||
conf.setProtocol(QSsl::SslV3);
|
||||
req.setSslConfiguration(conf);
|
||||
|
Loading…
Reference in New Issue
Block a user