Commit cc9df013 authored by Adam Langley's avatar Adam Langley

net: manual HSTS addition by request of the site.
Cr-Commit-Position: refs/heads/master@{#296237}
parent 9d1e4206
...@@ -1454,6 +1454,9 @@ static const struct HSTSPreload kPreloadedSTS[] = { ...@@ -1454,6 +1454,9 @@ static const struct HSTSPreload kPreloadedSTS[] = {
{19, true, "\015" "xn--maraa-rta" "\003" "org", true, kNoPins, DOMAIN_NOT_PINNED }, {19, true, "\015" "xn--maraa-rta" "\003" "org", true, kNoPins, DOMAIN_NOT_PINNED },
{19, true, "\015" "otakurepublic" "\003" "com", true, kNoPins, DOMAIN_NOT_PINNED }, {19, true, "\015" "otakurepublic" "\003" "com", true, kNoPins, DOMAIN_NOT_PINNED },
{10, true, "\004" "mqas" "\003" "net", true, kNoPins, DOMAIN_NOT_PINNED }, {10, true, "\004" "mqas" "\003" "net", true, kNoPins, DOMAIN_NOT_PINNED },
{17, true, "\003" "dlc" "\007" "viasinc" "\003" "com", true, kNoPins, DOMAIN_NOT_PINNED },
{17, true, "\003" "www" "\007" "viasinc" "\003" "com", true, kNoPins, DOMAIN_NOT_PINNED },
{13, false, "\007" "viasinc" "\003" "com", true, kNoPins, DOMAIN_NOT_PINNED },
}; };
static const size_t kNumPreloadedSTS = ARRAYSIZE_UNSAFE(kPreloadedSTS); static const size_t kNumPreloadedSTS = ARRAYSIZE_UNSAFE(kPreloadedSTS);
......
...@@ -1216,6 +1216,9 @@ ...@@ -1216,6 +1216,9 @@
{ "name": "xn--maraa-rta.org", "include_subdomains": true, "mode": "force-https" }, { "name": "xn--maraa-rta.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "otakurepublic.com", "include_subdomains": true, "mode": "force-https" }, { "name": "otakurepublic.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "mqas.net", "include_subdomains": true, "mode": "force-https" }, { "name": "mqas.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "dlc.viasinc.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "www.viasinc.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "viasinc.com", "mode": "force-https" },
// Entries that are only valid if the client supports SNI. // Entries that are only valid if the client supports SNI.
{ "name": "gmail.com", "mode": "force-https", "pins": "google", "snionly": true }, { "name": "gmail.com", "mode": "force-https", "pins": "google", "snionly": true },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment