☠☠ backed out by 312302bf12d8 ☠ ☠ | |
author | prathiksha <prathikshaprasadsuman@gmail.com> |
Wed, 27 May 2020 11:43:20 +0000 | |
changeset 532497 | 0440fa5863b23bc2750e3184a9fd6d65978ad031 |
parent 532496 | 60e97654bef3eacd787ec583892665bb2be24e7a |
child 532498 | 8eb4fd8e6b4d726698cf3ac49e093f6c96c3c8d0 |
push id | 117185 |
push user | prathikshaprasadsuman@gmail.com |
push date | Wed, 27 May 2020 13:25:07 +0000 |
treeherder | autoland@0440fa5863b2 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | johannh, necko-reviewers, valentin |
bugs | 1634947 |
milestone | 78.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
dom/locales/en-US/chrome/security/security.properties | file | annotate | diff | comparison | revisions | |
netwerk/protocol/http/nsHttpChannel.cpp | file | annotate | diff | comparison | revisions |
--- a/dom/locales/en-US/chrome/security/security.properties +++ b/dom/locales/en-US/chrome/security/security.properties @@ -62,17 +62,17 @@ IneligibleResource=“%1$S” is not eligible for integrity checks since it’s neither CORS-enabled nor same-origin. # LOCALIZATION NOTE: Do not translate "integrity". "%1$S" is the invalid hash algorithm found in the attribute. UnsupportedHashAlg=Unsupported hash algorithm in the integrity attribute: “%1$S” # LOCALIZATION NOTE: Do not translate "integrity" NoValidMetadata=The integrity attribute does not contain any valid metadata. # LOCALIZATION NOTE: Do not translate "RC4". WeakCipherSuiteWarning=This site uses the cipher RC4 for encryption, which is deprecated and insecure. -DeprecatedTLSVersion=This site uses a deprecated version of TLS that will be disabled in March 2020. Please upgrade to TLS 1.2 or 1.3. +DeprecatedTLSVersion2=This site uses a deprecated version of TLS. Please upgrade to TLS 1.2 or 1.3. #XCTO: nosniff # LOCALIZATION NOTE: Do not translate "X-Content-Type-Options: nosniff". MimeTypeMismatch2=The resource from “%1$S” was blocked due to MIME type (“%2$S”) mismatch (X-Content-Type-Options: nosniff). # LOCALIZATION NOTE: Do not translate "X-Content-Type-Options" and also do not translate "nosniff". XCTOHeaderValueMissing=X-Content-Type-Options header warning: value was “%1$S”; did you mean to send “nosniff”? # LOCALIZATION NOTE: Do not translate "X-Content-Type-Options" and also do not translate "nosniff". XTCOWithMIMEValueMissing=The resource from “%1$S” was not rendered due to an unknown, incorrect or missing MIME type (X-Content-Type-Options: nosniff).
--- a/netwerk/protocol/http/nsHttpChannel.cpp +++ b/netwerk/protocol/http/nsHttpChannel.cpp @@ -2376,17 +2376,17 @@ void nsHttpChannel::ProcessSSLInformatio } } uint16_t tlsVersion; nsresult rv = securityInfo->GetProtocolVersion(&tlsVersion); if (NS_SUCCEEDED(rv) && tlsVersion != nsITransportSecurityInfo::TLS_VERSION_1_2 && tlsVersion != nsITransportSecurityInfo::TLS_VERSION_1_3) { - nsString consoleErrorTag = NS_LITERAL_STRING("DeprecatedTLSVersion"); + nsString consoleErrorTag = NS_LITERAL_STRING("DeprecatedTLSVersion2"); nsString consoleErrorCategory = NS_LITERAL_STRING("TLS"); Unused << AddSecurityMessage(consoleErrorTag, consoleErrorCategory); } } void nsHttpChannel::ProcessAltService() { // e.g. Alt-Svc: h2=":443"; ma=60 // e.g. Alt-Svc: h2="otherhost:443"