Issue #1280 - Stop requesting HPKP state from within devtools.

This commit is contained in:
wolfbeast 2020-03-30 08:18:09 +02:00 committed by Roy Tam
commit fa44a33a4b
2 changed files with 3 additions and 2 deletions

View file

@ -668,7 +668,8 @@ var NetworkHelper = {
let host = httpActivity.hostname;
info.hsts = sss.isSecureHost(sss.HEADER_HSTS, host, flags);
info.hpkp = sss.isSecureHost(sss.HEADER_HPKP, host, flags);
// HPKP is no longer supported.
info.hpkp = false;
} else {
DevToolsUtils.reportException("NetworkHelper.parseSecurityInfo",
"Could not get HSTS/HPKP status as hostname is not available.");