diff options
author | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-24 21:02:48 +0000 |
---|---|---|
committer | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-24 21:02:48 +0000 |
commit | 321a51e7cd479b127f5b0b9dcc369c79d1eb38fe (patch) | |
tree | 95ba94d76037cfa22c414ab60cb89e77d72e9a47 /net/http | |
parent | 3ffa36ac334638a691f804b468d2d359feba2de8 (diff) | |
download | chromium_src-321a51e7cd479b127f5b0b9dcc369c79d1eb38fe.zip chromium_src-321a51e7cd479b127f5b0b9dcc369c79d1eb38fe.tar.gz chromium_src-321a51e7cd479b127f5b0b9dcc369c79d1eb38fe.tar.bz2 |
net: add a couple of sites to HSTS preloaded.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285368 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http')
-rw-r--r-- | net/http/transport_security_state_static.h | 3 | ||||
-rw-r--r-- | net/http/transport_security_state_static.json | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/net/http/transport_security_state_static.h b/net/http/transport_security_state_static.h index 339cc55..dead7f0 100644 --- a/net/http/transport_security_state_static.h +++ b/net/http/transport_security_state_static.h @@ -1058,6 +1058,7 @@ static const struct HSTSPreload kPreloadedSTS[] = { {18, true, "\012code-poets\002co\002uk", true, kNoPins, DOMAIN_NOT_PINNED }, {13, false, "\007jackyyf\003com", true, kNoPins, DOMAIN_NOT_PINNED }, {10, true, "\005flynn\002io", true, kNoPins, DOMAIN_NOT_PINNED }, + {15, true, "\011hackerone\003com", true, kNoPins, DOMAIN_NOT_PINNED }, }; static const size_t kNumPreloadedSTS = ARRAYSIZE_UNSAFE(kPreloadedSTS); @@ -1070,6 +1071,8 @@ static const struct HSTSPreload kPreloadedSNISTS[] = { {18, true, "\014googlegroups\003com", false, kGooglePins, DOMAIN_GOOGLEGROUPS_COM }, {13, true, "\007mykolab\003com", true, kNoPins, DOMAIN_NOT_PINNED }, {17, true, "\013semenkovich\003com", true, kNoPins, DOMAIN_NOT_PINNED }, + {8, false, "\003rme\002li", true, kNoPins, DOMAIN_NOT_PINNED }, + {12, false, "\003www\003rme\002li", true, kNoPins, DOMAIN_NOT_PINNED }, }; static const size_t kNumPreloadedSNISTS = ARRAYSIZE_UNSAFE(kPreloadedSNISTS); diff --git a/net/http/transport_security_state_static.json b/net/http/transport_security_state_static.json index d4a78bf..9d5e273 100644 --- a/net/http/transport_security_state_static.json +++ b/net/http/transport_security_state_static.json @@ -820,6 +820,7 @@ { "name": "code-poets.co.uk", "include_subdomains": true, "mode": "force-https" }, { "name": "jackyyf.com", "mode": "force-https" }, { "name": "flynn.io", "include_subdomains": true, "mode": "force-https" }, + { "name": "hackerone.com", "include_subdomains": true, "mode": "force-https" }, // Entries that are only valid if the client supports SNI. { "name": "gmail.com", "mode": "force-https", "pins": "google", "snionly": true }, @@ -829,6 +830,8 @@ { "name": "google-analytics.com", "include_subdomains": true, "pins": "google", "snionly": true }, { "name": "googlegroups.com", "include_subdomains": true, "pins": "google", "snionly": true }, { "name": "mykolab.com", "include_subdomains": true, "mode": "force-https", "snionly": true }, - { "name": "semenkovich.com", "include_subdomains": true, "mode": "force-https", "snionly": true } + { "name": "semenkovich.com", "include_subdomains": true, "mode": "force-https", "snionly": true }, + { "name": "rme.li", "mode": "force-https", "snionly": true }, + { "name": "www.rme.li", "mode": "force-https", "snionly": true } ] } |