Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // This file contains the HSTS preloaded list in a machine readable format. | 5 // This file contains the HSTS preloaded list in a machine readable format. |
| 6 | 6 |
| 7 // The top-level element is a dictionary with two keys: "pinsets" maps details | 7 // The top-level element is a dictionary with two keys: "pinsets" maps details |
| 8 // of certificate pinning to a name and "entries" contains the HSTS details for | 8 // of certificate pinning to a name and "entries" contains the HSTS details for |
| 9 // each host. | 9 // each host. |
| 10 // | 10 // |
| (...skipping 757 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 768 { "name": "harvestapp.com", "include_subdomains": true, "mode": "force-https " }, | 768 { "name": "harvestapp.com", "include_subdomains": true, "mode": "force-https " }, |
| 769 { "name": "anycoin.me", "include_subdomains": true, "mode": "force-https" }, | 769 { "name": "anycoin.me", "include_subdomains": true, "mode": "force-https" }, |
| 770 { "name": "noexpect.org", "include_subdomains": true, "mode": "force-https" }, | 770 { "name": "noexpect.org", "include_subdomains": true, "mode": "force-https" }, |
| 771 { "name": "airbnb.com", "mode": "force-https" }, | 771 { "name": "airbnb.com", "mode": "force-https" }, |
| 772 { "name": "www.airbnb.com", "include_subdomains": true, "mode": "force-https " }, | 772 { "name": "www.airbnb.com", "include_subdomains": true, "mode": "force-https " }, |
| 773 { "name": "usaa.com", "mode": "force-https" }, | 773 { "name": "usaa.com", "mode": "force-https" }, |
| 774 { "name": "www.usaa.com", "mode": "force-https" }, | 774 { "name": "www.usaa.com", "mode": "force-https" }, |
| 775 { "name": "mobile.usaa.com", "mode": "force-https" }, | 775 { "name": "mobile.usaa.com", "mode": "force-https" }, |
| 776 { "name": "subrosa.io", "include_subdomains": true, "mode": "force-https" }, | 776 { "name": "subrosa.io", "include_subdomains": true, "mode": "force-https" }, |
| 777 { "name": "detectify.com", "mode": "force-https" }, | 777 { "name": "detectify.com", "mode": "force-https" }, |
| 778 { "name": "crbug.com", "include_subdomains": true, "mode": "force-https" }, | |
|
Peter Kasting
2014/05/28 18:57:23
Shouldn't this go in the "Other Google-related dom
engedy
2014/05/28 20:57:57
The domains in the two Google-related groups all h
| |
| 778 | 779 |
| 779 // Entries that are only valid if the client supports SNI. | 780 // Entries that are only valid if the client supports SNI. |
| 780 { "name": "gmail.com", "mode": "force-https", "pins": "google", "snionly": t rue }, | 781 { "name": "gmail.com", "mode": "force-https", "pins": "google", "snionly": t rue }, |
| 781 { "name": "googlemail.com", "mode": "force-https", "pins": "google", "snionl y": true }, | 782 { "name": "googlemail.com", "mode": "force-https", "pins": "google", "snionl y": true }, |
| 782 { "name": "www.gmail.com", "mode": "force-https", "pins": "google", "snionly ": true }, | 783 { "name": "www.gmail.com", "mode": "force-https", "pins": "google", "snionly ": true }, |
| 783 { "name": "www.googlemail.com", "mode": "force-https", "pins": "google", "sn ionly": true }, | 784 { "name": "www.googlemail.com", "mode": "force-https", "pins": "google", "sn ionly": true }, |
| 784 { "name": "google-analytics.com", "include_subdomains": true, "pins": "googl e", "snionly": true }, | 785 { "name": "google-analytics.com", "include_subdomains": true, "pins": "googl e", "snionly": true }, |
| 785 { "name": "googlegroups.com", "include_subdomains": true, "pins": "google", "snionly": true }, | 786 { "name": "googlegroups.com", "include_subdomains": true, "pins": "google", "snionly": true }, |
| 786 { "name": "mykolab.com", "include_subdomains": true, "mode": "force-https", "snionly": true }, | 787 { "name": "mykolab.com", "include_subdomains": true, "mode": "force-https", "snionly": true }, |
| 787 { "name": "semenkovich.com", "include_subdomains": true, "mode": "force-http s", "snionly": true } | 788 { "name": "semenkovich.com", "include_subdomains": true, "mode": "force-http s", "snionly": true } |
| 788 ] | 789 ] |
| 789 } | 790 } |
| OLD | NEW |