Skip to content

Commit

Permalink
[security] Disable SSLv3 protocol
Browse files Browse the repository at this point in the history
  • Loading branch information
rojkov committed Oct 15, 2014
1 parent 85a1d69 commit 3385056
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/declarativewebutils.cpp
Expand Up @@ -208,6 +208,9 @@ void DeclarativeWebUtils::updateWebEngineSettings()
// We're sending "memory-pressure" when browser is on background (cover by another application)
// and when the browser page is inactivated.
mozContext->setPref(QString("javascript.options.gc_on_memory_pressure"), true);

// Disable SSLv3
mozContext->setPref(QString("security.tls.version.min"), QVariant(1));
}

void DeclarativeWebUtils::setFirstUseDone(bool firstUseDone) {
Expand Down

0 comments on commit 3385056

Please sign in to comment.