Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(90)

Side by Side Diff: net/http/transport_security_state_static.json

Issue 16261002: Preload HSTS for paypal.com. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix unit tests. Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 421 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 { "name": "google.uz", "include_subdomains": true, "pins": "google" }, 432 { "name": "google.uz", "include_subdomains": true, "pins": "google" },
433 { "name": "google.vg", "include_subdomains": true, "pins": "google" }, 433 { "name": "google.vg", "include_subdomains": true, "pins": "google" },
434 { "name": "google.vu", "include_subdomains": true, "pins": "google" }, 434 { "name": "google.vu", "include_subdomains": true, "pins": "google" },
435 { "name": "google.ws", "include_subdomains": true, "pins": "google" }, 435 { "name": "google.ws", "include_subdomains": true, "pins": "google" },
436 // Exclude the learn.doubleclick.net subdomain because it uses a different 436 // Exclude the learn.doubleclick.net subdomain because it uses a different
437 // CA. 437 // CA.
438 { "name": "learn.doubleclick.net", "include_subdomains": true }, 438 { "name": "learn.doubleclick.net", "include_subdomains": true },
439 439
440 // Force HTTPS for sites that have requested it. 440 // Force HTTPS for sites that have requested it.
441 { "name": "www.paypal.com", "mode": "force-https" }, 441 { "name": "www.paypal.com", "mode": "force-https" },
442 { "name": "paypal.com", "mode": "force-https" },
442 { "name": "www.elanex.biz", "mode": "force-https" }, 443 { "name": "www.elanex.biz", "mode": "force-https" },
443 { "name": "jottit.com", "include_subdomains": true, "mode": "force-https" }, 444 { "name": "jottit.com", "include_subdomains": true, "mode": "force-https" },
444 { "name": "sunshinepress.org", "include_subdomains": true, "mode": "force-ht tps" }, 445 { "name": "sunshinepress.org", "include_subdomains": true, "mode": "force-ht tps" },
445 { "name": "www.noisebridge.net", "mode": "force-https" }, 446 { "name": "www.noisebridge.net", "mode": "force-https" },
446 { "name": "neg9.org", "mode": "force-https" }, 447 { "name": "neg9.org", "mode": "force-https" },
447 { "name": "riseup.net", "include_subdomains": true, "mode": "force-https" }, 448 { "name": "riseup.net", "include_subdomains": true, "mode": "force-https" },
448 { "name": "factor.cc", "mode": "force-https" }, 449 { "name": "factor.cc", "mode": "force-https" },
449 { "name": "members.mayfirst.org", "include_subdomains": true, "mode": "force -https" }, 450 { "name": "members.mayfirst.org", "include_subdomains": true, "mode": "force -https" },
450 { "name": "support.mayfirst.org", "include_subdomains": true, "mode": "force -https" }, 451 { "name": "support.mayfirst.org", "include_subdomains": true, "mode": "force -https" },
451 { "name": "id.mayfirst.org", "include_subdomains": true, "mode": "force-http s" }, 452 { "name": "id.mayfirst.org", "include_subdomains": true, "mode": "force-http s" },
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
605 606
606 // Entries that are only valid if the client supports SNI. 607 // Entries that are only valid if the client supports SNI.
607 { "name": "gmail.com", "mode": "force-https", "pins": "google", "snionly": t rue }, 608 { "name": "gmail.com", "mode": "force-https", "pins": "google", "snionly": t rue },
608 { "name": "googlemail.com", "mode": "force-https", "pins": "google", "snionl y": true }, 609 { "name": "googlemail.com", "mode": "force-https", "pins": "google", "snionl y": true },
609 { "name": "www.gmail.com", "mode": "force-https", "pins": "google", "snionly ": true }, 610 { "name": "www.gmail.com", "mode": "force-https", "pins": "google", "snionly ": true },
610 { "name": "www.googlemail.com", "mode": "force-https", "pins": "google", "sn ionly": true }, 611 { "name": "www.googlemail.com", "mode": "force-https", "pins": "google", "sn ionly": true },
611 { "name": "google-analytics.com", "include_subdomains": true, "pins": "googl e", "snionly": true }, 612 { "name": "google-analytics.com", "include_subdomains": true, "pins": "googl e", "snionly": true },
612 { "name": "googlegroups.com", "include_subdomains": true, "pins": "google", "snionly": true } 613 { "name": "googlegroups.com", "include_subdomains": true, "pins": "google", "snionly": true }
613 ] 614 ]
614 } 615 }
OLDNEW
« no previous file with comments | « net/http/transport_security_state_static.h ('k') | net/http/transport_security_state_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698