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 3 // found in the LICENSE file. 4 5 // This file contains the HSTS preloaded list in a machine readable format. 6 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 9 // each host. 10 // 11 // "pinsets" is a list of objects. Each object has the following members: 12 // name: (string) the name of the pinset 13 // static_spki_hashes: (list of strings) the set of allowed SPKIs hashes 14 // bad_static_spki_hashes: (optional list of strings) the set of forbidden 15 // SPKIs hashes 16 // 17 // For a given pinset, a certificate is accepted if at least one of the 18 // "static_spki_hashes" SPKIs is found in the chain and none of the 19 // "bad_static_spki_hashes" SPKIs are. SPKIs are specified as names, which must 20 // match up with the file of certificates. 21 // 22 // "entries" is a list of objects. Each object has the following members: 23 // name: (string) the DNS name of the host in question 24 // include_subdomains: (optional bool) whether subdomains of |name| are also 25 // covered 26 // mode: (optional string) "force-https" iff covered names should require 27 // HTTPS 28 // pins: (optional string) the |name| member of an object in |pinsets| 29 // snionly: (optional bool) if true then this entry is only enforced if TLS is 30 // enabled because the site in question only serves the correct 31 // certificate if SNI is sent. Note that this only covers the case where 32 // TLS has been disabled by explicit configuration. If TLS was disabled 33 // because of SSLv3 fallback, then the entry is still in force and a 34 // fatal certificate error will result. Spurious certificate errors are 35 // an unfortunate result of SSLv3 fallback. 36 37 { 38 "pinsets": [ 39 { 40 "name": "test", 41 "static_spki_hashes": [ 42 "TestSPKI" 43 ] 44 }, 45 { 46 "name": "google", 47 "static_spki_hashes": [ 48 "GoogleBackup2048", 49 "GoogleG2" 50 ] 51 }, 52 { 53 "name": "tor", 54 "static_spki_hashes": [ 55 "RapidSSL", 56 "DigiCertEVRoot", 57 "Tor1", 58 "Tor2", 59 "Tor3" 60 ] 61 }, 62 { 63 "name": "twitterCom", 64 "static_spki_hashes": [ 65 "VeriSignClass1", 66 "VeriSignClass3", 67 "VeriSignClass3_G4", 68 "VeriSignClass4_G3", 69 "VeriSignClass3_G3", 70 "VeriSignClass1_G3", 71 "VeriSignClass2_G3", 72 "VeriSignClass3_G2", 73 "VeriSignClass2_G2", 74 "VeriSignClass3_G5", 75 "VeriSignUniversal", 76 "GeoTrustGlobal", 77 "GeoTrustGlobal2", 78 "GeoTrustUniversal", 79 "GeoTrustUniversal2", 80 "GeoTrustPrimary", 81 "GeoTrustPrimary_G2", 82 "GeoTrustPrimary_G3", 83 "DigiCertGlobalRoot", 84 "DigiCertEVRoot", 85 "DigiCertAssuredIDRoot", 86 "Twitter1" 87 ] 88 }, 89 { 90 "name": "twitterCDN", 91 "static_spki_hashes": [ 92 "VeriSignClass1", 93 "VeriSignClass3", 94 "VeriSignClass3_G4", 95 "VeriSignClass4_G3", 96 "VeriSignClass3_G3", 97 "VeriSignClass1_G3", 98 "VeriSignClass2_G3", 99 "VeriSignClass3_G2", 100 "VeriSignClass2_G2", 101 "VeriSignClass3_G5", 102 "VeriSignUniversal", 103 "GeoTrustGlobal", 104 "GeoTrustGlobal2", 105 "GeoTrustUniversal", 106 "GeoTrustUniversal2", 107 "GeoTrustPrimary", 108 "GeoTrustPrimary_G2", 109 "GeoTrustPrimary_G3", 110 "DigiCertGlobalRoot", 111 "DigiCertEVRoot", 112 "DigiCertAssuredIDRoot", 113 "Twitter1", 114 115 "Entrust_2048", 116 "Entrust_EV", 117 "Entrust_G2", 118 "Entrust_SSL", 119 "AAACertificateServices", 120 "AddTrustClass1CARoot", 121 "AddTrustExternalCARoot", 122 "AddTrustPublicCARoot", 123 "AddTrustQualifiedCARoot", 124 "COMODOCertificationAuthority", 125 "SecureCertificateServices", 126 "TrustedCertificateServices", 127 "UTNDATACorpSGC", 128 "UTNUSERFirstClientAuthenticationandEmail", 129 "UTNUSERFirstHardware", 130 "UTNUSERFirstObject", 131 "GTECyberTrustGlobalRoot", 132 "BaltimoreCyberTrustRoot", 133 "GlobalSignRootCA", 134 "GlobalSignRootCA_R2", 135 "GlobalSignRootCA_R3" 136 ] 137 }, 138 { 139 "name": "tor2web", 140 "static_spki_hashes": [ 141 "AlphaSSL_G2", 142 "Tor2web" 143 ] 144 }, 145 { 146 "name": "cryptoCat", 147 "static_spki_hashes": [ 148 "DigiCertEVRoot", 149 "CryptoCat1" 150 ] 151 }, 152 { 153 "name": "lavabit", 154 "static_spki_hashes": [ 155 "Libertylavabitcom" 156 ] 157 }, 158 { 159 "name": "dropbox", 160 "static_spki_hashes": [ 161 "DigiCertAssuredIDRoot", 162 "DigiCertGlobalRoot", 163 "DigiCertEVRoot", 164 "EntrustRootEC1", 165 "Entrust_G2", 166 "Entrust_EV", 167 "Entrust_2048", 168 "GeoTrustGlobal", 169 "GeoTrustPrimary_G2", 170 "GeoTrustPrimary_G3", 171 "GeoTrustPrimary", 172 "TheGoDaddyGroupClass2", 173 "GoDaddyRoot_G2", 174 "GoDaddySecure", 175 "ThawtePremiumServer", 176 "ThawtePrimaryRootCA_G2", 177 "ThawtePrimaryRootCA_G3", 178 "ThawtePrimaryRootCA" 179 ] 180 } 181 ], 182 183 "entries": [ 184 // Dummy entry to test certificate pinning. 185 { "name": "pinningtest.appspot.com", "include_subdomains": true, "pins": "test" }, 186 187 // (*.)google.com, iff using SSL, must use an acceptable certificate. 188 { "name": "google.com", "include_subdomains": true, "pins": "google" }, 189 190 // Now we force HTTPS for subtrees of google.com. 191 { "name": "wallet.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 192 { "name": "checkout.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 193 { "name": "chrome.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 194 { "name": "docs.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 195 { "name": "domains.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 196 { "name": "sites.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 197 { "name": "spreadsheets.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 198 { "name": "appengine.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 199 { "name": "encrypted.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 200 { "name": "accounts.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 201 { "name": "profiles.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 202 { "name": "mail.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 203 { "name": "talkgadget.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 204 { "name": "talk.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 205 { "name": "hostedtalkgadget.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 206 { "name": "plus.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 207 { "name": "plus.sandbox.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 208 { "name": "script.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 209 { "name": "history.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 210 { "name": "security.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 211 { "name": "goto.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 212 { "name": "cloud.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 213 { "name": "glass.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 214 { "name": "admin.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 215 { "name": "login.corp.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 216 // play.google.com doesn't have include_subdomains because of crbug.com/327834. 217 { "name": "play.google.com", "mode": "force-https", "pins": "google" }, 218 { "name": "passwords.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 219 220 // Other Google-related domains that must use HTTPS. 221 { "name": "gmail.com", "mode": "force-https", "pins": "google" }, 222 { "name": "googlemail.com", "mode": "force-https", "pins": "google" }, 223 { "name": "www.gmail.com", "mode": "force-https", "pins": "google" }, 224 { "name": "www.googlemail.com", "mode": "force-https", "pins": "google" }, 225 { "name": "market.android.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 226 { "name": "ssl.google-analytics.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 227 { "name": "drive.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 228 { "name": "googleplex.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 229 { "name": "groups.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 230 { "name": "apis.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 231 { "name": "chromiumcodereview.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 232 { "name": "chrome-devtools-frontend.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 233 { "name": "codereview.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 234 { "name": "codereview.chromium.org", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 235 { "name": "code.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 236 { "name": "googlecode.com", "include_subdomains": true, "pins": "google" }, 237 { "name": "dl.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 238 { "name": "translate.googleapis.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 239 240 { "name": "webfilings.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 241 { "name": "webfilings-mirror-hrd.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 242 { "name": "webfilings-eu.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 243 { "name": "webfilings-eu-mirror.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 244 { "name": "wf-demo-eu.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 245 { "name": "wf-demo-hrd.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 246 { "name": "wf-pentest.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 247 { "name": "wf-trial-hrd.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 248 { "name": "xbrlsuccess.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 249 { "name": "w-spotlight.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 250 { "name": "wf-training-hrd.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 251 { "name": "wf-bigsky-master.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 252 { "name": "wf-staging-hr.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 253 { "name": "wf-training-master.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 254 { "name": "wf-dogfood-hrd.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" }, 255 256 // chart.apis.google.com is *not* HSTS because the certificate doesn't match 257 // and there are lots of links out there that still use the name. The correct 258 // hostname for this is chart.googleapis.com. 259 { "name": "chart.apis.google.com", "include_subdomains": true, "pins": "google" }, 260 261 // Other Google-related domains that must use an acceptable certificate 262 // iff using SSL. 263 { "name": "google-analytics.com", "include_subdomains": true, "pins": "google" }, 264 { "name": "googlegroups.com", "include_subdomains": true, "pins": "google" }, 265 { "name": "ytimg.com", "include_subdomains": true, "pins": "google" }, 266 { "name": "googleusercontent.com", "include_subdomains": true, "pins": "google" }, 267 { "name": "youtube.com", "include_subdomains": true, "pins": "google" }, 268 { "name": "youtube-nocookie.com", "include_subdomains": true, "pins": "google" }, 269 { "name": "googleapis.com", "include_subdomains": true, "pins": "google" }, 270 { "name": "googleadservices.com", "include_subdomains": true, "pins": "google" }, 271 { "name": "appspot.com", "include_subdomains": true, "pins": "google" }, 272 { "name": "googlesyndication.com", "include_subdomains": true, "pins": "google" }, 273 { "name": "doubleclick.net", "include_subdomains": true, "pins": "google" }, 274 { "name": "2mdn.net", "include_subdomains": true, "pins": "google" }, 275 { "name": "gstatic.com", "include_subdomains": true, "pins": "google" }, 276 { "name": "youtu.be", "include_subdomains": true, "pins": "google" }, 277 { "name": "android.com", "include_subdomains": true, "pins": "google" }, 278 { "name": "googlecommerce.com", "include_subdomains": true, "pins": "google" }, 279 { "name": "urchin.com", "include_subdomains": true, "pins": "google" }, 280 { "name": "goo.gl", "include_subdomains": true, "pins": "google" }, 281 { "name": "g.co", "include_subdomains": true, "pins": "google" }, 282 { "name": "googletagmanager.com", "include_subdomains": true, "pins": "google" }, 283 { "name": "googletagservices.com", "include_subdomains": true, "pins": "google" }, 284 { "name": "google.ac", "include_subdomains": true, "pins": "google" }, 285 { "name": "google.ad", "include_subdomains": true, "pins": "google" }, 286 { "name": "google.ae", "include_subdomains": true, "pins": "google" }, 287 { "name": "google.af", "include_subdomains": true, "pins": "google" }, 288 { "name": "google.ag", "include_subdomains": true, "pins": "google" }, 289 { "name": "google.am", "include_subdomains": true, "pins": "google" }, 290 { "name": "google.as", "include_subdomains": true, "pins": "google" }, 291 { "name": "google.at", "include_subdomains": true, "pins": "google" }, 292 { "name": "google.az", "include_subdomains": true, "pins": "google" }, 293 { "name": "google.ba", "include_subdomains": true, "pins": "google" }, 294 { "name": "google.be", "include_subdomains": true, "pins": "google" }, 295 { "name": "google.bf", "include_subdomains": true, "pins": "google" }, 296 { "name": "google.bg", "include_subdomains": true, "pins": "google" }, 297 { "name": "google.bi", "include_subdomains": true, "pins": "google" }, 298 { "name": "google.bj", "include_subdomains": true, "pins": "google" }, 299 { "name": "google.bs", "include_subdomains": true, "pins": "google" }, 300 { "name": "google.by", "include_subdomains": true, "pins": "google" }, 301 { "name": "google.ca", "include_subdomains": true, "pins": "google" }, 302 { "name": "google.cat", "include_subdomains": true, "pins": "google" }, 303 { "name": "google.cc", "include_subdomains": true, "pins": "google" }, 304 { "name": "google.cd", "include_subdomains": true, "pins": "google" }, 305 { "name": "google.cf", "include_subdomains": true, "pins": "google" }, 306 { "name": "google.cg", "include_subdomains": true, "pins": "google" }, 307 { "name": "google.ch", "include_subdomains": true, "pins": "google" }, 308 { "name": "google.ci", "include_subdomains": true, "pins": "google" }, 309 { "name": "google.cl", "include_subdomains": true, "pins": "google" }, 310 { "name": "google.cm", "include_subdomains": true, "pins": "google" }, 311 { "name": "google.cn", "include_subdomains": true, "pins": "google" }, 312 { "name": "google.co.ao", "include_subdomains": true, "pins": "google" }, 313 { "name": "google.co.bw", "include_subdomains": true, "pins": "google" }, 314 { "name": "google.co.ck", "include_subdomains": true, "pins": "google" }, 315 { "name": "google.co.cr", "include_subdomains": true, "pins": "google" }, 316 { "name": "google.co.hu", "include_subdomains": true, "pins": "google" }, 317 { "name": "google.co.id", "include_subdomains": true, "pins": "google" }, 318 { "name": "google.co.il", "include_subdomains": true, "pins": "google" }, 319 { "name": "google.co.im", "include_subdomains": true, "pins": "google" }, 320 { "name": "google.co.in", "include_subdomains": true, "pins": "google" }, 321 { "name": "google.co.je", "include_subdomains": true, "pins": "google" }, 322 { "name": "google.co.jp", "include_subdomains": true, "pins": "google" }, 323 { "name": "google.co.ke", "include_subdomains": true, "pins": "google" }, 324 { "name": "google.co.kr", "include_subdomains": true, "pins": "google" }, 325 { "name": "google.co.ls", "include_subdomains": true, "pins": "google" }, 326 { "name": "google.co.ma", "include_subdomains": true, "pins": "google" }, 327 { "name": "google.co.mz", "include_subdomains": true, "pins": "google" }, 328 { "name": "google.co.nz", "include_subdomains": true, "pins": "google" }, 329 { "name": "google.co.th", "include_subdomains": true, "pins": "google" }, 330 { "name": "google.co.tz", "include_subdomains": true, "pins": "google" }, 331 { "name": "google.co.ug", "include_subdomains": true, "pins": "google" }, 332 { "name": "google.co.uk", "include_subdomains": true, "pins": "google" }, 333 { "name": "google.co.uz", "include_subdomains": true, "pins": "google" }, 334 { "name": "google.co.ve", "include_subdomains": true, "pins": "google" }, 335 { "name": "google.co.vi", "include_subdomains": true, "pins": "google" }, 336 { "name": "google.co.za", "include_subdomains": true, "pins": "google" }, 337 { "name": "google.co.zm", "include_subdomains": true, "pins": "google" }, 338 { "name": "google.co.zw", "include_subdomains": true, "pins": "google" }, 339 { "name": "google.com.af", "include_subdomains": true, "pins": "google" }, 340 { "name": "google.com.ag", "include_subdomains": true, "pins": "google" }, 341 { "name": "google.com.ai", "include_subdomains": true, "pins": "google" }, 342 { "name": "google.com.ar", "include_subdomains": true, "pins": "google" }, 343 { "name": "google.com.au", "include_subdomains": true, "pins": "google" }, 344 { "name": "google.com.bd", "include_subdomains": true, "pins": "google" }, 345 { "name": "google.com.bh", "include_subdomains": true, "pins": "google" }, 346 { "name": "google.com.bn", "include_subdomains": true, "pins": "google" }, 347 { "name": "google.com.bo", "include_subdomains": true, "pins": "google" }, 348 { "name": "google.com.br", "include_subdomains": true, "pins": "google" }, 349 { "name": "google.com.by", "include_subdomains": true, "pins": "google" }, 350 { "name": "google.com.bz", "include_subdomains": true, "pins": "google" }, 351 { "name": "google.com.cn", "include_subdomains": true, "pins": "google" }, 352 { "name": "google.com.co", "include_subdomains": true, "pins": "google" }, 353 { "name": "google.com.cu", "include_subdomains": true, "pins": "google" }, 354 { "name": "google.com.cy", "include_subdomains": true, "pins": "google" }, 355 { "name": "google.com.do", "include_subdomains": true, "pins": "google" }, 356 { "name": "google.com.ec", "include_subdomains": true, "pins": "google" }, 357 { "name": "google.com.eg", "include_subdomains": true, "pins": "google" }, 358 { "name": "google.com.et", "include_subdomains": true, "pins": "google" }, 359 { "name": "google.com.fj", "include_subdomains": true, "pins": "google" }, 360 { "name": "google.com.ge", "include_subdomains": true, "pins": "google" }, 361 { "name": "google.com.gh", "include_subdomains": true, "pins": "google" }, 362 { "name": "google.com.gi", "include_subdomains": true, "pins": "google" }, 363 { "name": "google.com.gr", "include_subdomains": true, "pins": "google" }, 364 { "name": "google.com.gt", "include_subdomains": true, "pins": "google" }, 365 { "name": "google.com.hk", "include_subdomains": true, "pins": "google" }, 366 { "name": "google.com.iq", "include_subdomains": true, "pins": "google" }, 367 { "name": "google.com.jm", "include_subdomains": true, "pins": "google" }, 368 { "name": "google.com.jo", "include_subdomains": true, "pins": "google" }, 369 { "name": "google.com.kh", "include_subdomains": true, "pins": "google" }, 370 { "name": "google.com.kw", "include_subdomains": true, "pins": "google" }, 371 { "name": "google.com.lb", "include_subdomains": true, "pins": "google" }, 372 { "name": "google.com.ly", "include_subdomains": true, "pins": "google" }, 373 { "name": "google.com.mt", "include_subdomains": true, "pins": "google" }, 374 { "name": "google.com.mx", "include_subdomains": true, "pins": "google" }, 375 { "name": "google.com.my", "include_subdomains": true, "pins": "google" }, 376 { "name": "google.com.na", "include_subdomains": true, "pins": "google" }, 377 { "name": "google.com.nf", "include_subdomains": true, "pins": "google" }, 378 { "name": "google.com.ng", "include_subdomains": true, "pins": "google" }, 379 { "name": "google.com.ni", "include_subdomains": true, "pins": "google" }, 380 { "name": "google.com.np", "include_subdomains": true, "pins": "google" }, 381 { "name": "google.com.nr", "include_subdomains": true, "pins": "google" }, 382 { "name": "google.com.om", "include_subdomains": true, "pins": "google" }, 383 { "name": "google.com.pa", "include_subdomains": true, "pins": "google" }, 384 { "name": "google.com.pe", "include_subdomains": true, "pins": "google" }, 385 { "name": "google.com.ph", "include_subdomains": true, "pins": "google" }, 386 { "name": "google.com.pk", "include_subdomains": true, "pins": "google" }, 387 { "name": "google.com.pl", "include_subdomains": true, "pins": "google" }, 388 { "name": "google.com.pr", "include_subdomains": true, "pins": "google" }, 389 { "name": "google.com.py", "include_subdomains": true, "pins": "google" }, 390 { "name": "google.com.qa", "include_subdomains": true, "pins": "google" }, 391 { "name": "google.com.ru", "include_subdomains": true, "pins": "google" }, 392 { "name": "google.com.sa", "include_subdomains": true, "pins": "google" }, 393 { "name": "google.com.sb", "include_subdomains": true, "pins": "google" }, 394 { "name": "google.com.sg", "include_subdomains": true, "pins": "google" }, 395 { "name": "google.com.sl", "include_subdomains": true, "pins": "google" }, 396 { "name": "google.com.sv", "include_subdomains": true, "pins": "google" }, 397 { "name": "google.com.tj", "include_subdomains": true, "pins": "google" }, 398 { "name": "google.com.tn", "include_subdomains": true, "pins": "google" }, 399 { "name": "google.com.tr", "include_subdomains": true, "pins": "google" }, 400 { "name": "google.com.tw", "include_subdomains": true, "pins": "google" }, 401 { "name": "google.com.ua", "include_subdomains": true, "pins": "google" }, 402 { "name": "google.com.uy", "include_subdomains": true, "pins": "google" }, 403 { "name": "google.com.vc", "include_subdomains": true, "pins": "google" }, 404 { "name": "google.com.ve", "include_subdomains": true, "pins": "google" }, 405 { "name": "google.com.vn", "include_subdomains": true, "pins": "google" }, 406 { "name": "google.cv", "include_subdomains": true, "pins": "google" }, 407 { "name": "google.cz", "include_subdomains": true, "pins": "google" }, 408 { "name": "google.de", "include_subdomains": true, "pins": "google" }, 409 { "name": "google.dj", "include_subdomains": true, "pins": "google" }, 410 { "name": "google.dk", "include_subdomains": true, "pins": "google" }, 411 { "name": "google.dm", "include_subdomains": true, "pins": "google" }, 412 { "name": "google.dz", "include_subdomains": true, "pins": "google" }, 413 { "name": "google.ee", "include_subdomains": true, "pins": "google" }, 414 { "name": "google.es", "include_subdomains": true, "pins": "google" }, 415 { "name": "google.fi", "include_subdomains": true, "pins": "google" }, 416 { "name": "google.fm", "include_subdomains": true, "pins": "google" }, 417 { "name": "google.fr", "include_subdomains": true, "pins": "google" }, 418 { "name": "google.ga", "include_subdomains": true, "pins": "google" }, 419 { "name": "google.ge", "include_subdomains": true, "pins": "google" }, 420 { "name": "google.gg", "include_subdomains": true, "pins": "google" }, 421 { "name": "google.gl", "include_subdomains": true, "pins": "google" }, 422 { "name": "google.gm", "include_subdomains": true, "pins": "google" }, 423 { "name": "google.gp", "include_subdomains": true, "pins": "google" }, 424 { "name": "google.gr", "include_subdomains": true, "pins": "google" }, 425 { "name": "google.gy", "include_subdomains": true, "pins": "google" }, 426 { "name": "google.hk", "include_subdomains": true, "pins": "google" }, 427 { "name": "google.hn", "include_subdomains": true, "pins": "google" }, 428 { "name": "google.hr", "include_subdomains": true, "pins": "google" }, 429 { "name": "google.ht", "include_subdomains": true, "pins": "google" }, 430 { "name": "google.hu", "include_subdomains": true, "pins": "google" }, 431 { "name": "google.ie", "include_subdomains": true, "pins": "google" }, 432 { "name": "google.im", "include_subdomains": true, "pins": "google" }, 433 { "name": "google.info", "include_subdomains": true, "pins": "google" }, 434 { "name": "google.iq", "include_subdomains": true, "pins": "google" }, 435 { "name": "google.is", "include_subdomains": true, "pins": "google" }, 436 { "name": "google.it", "include_subdomains": true, "pins": "google" }, 437 { "name": "google.it.ao", "include_subdomains": true, "pins": "google" }, 438 { "name": "google.je", "include_subdomains": true, "pins": "google" }, 439 { "name": "google.jo", "include_subdomains": true, "pins": "google" }, 440 { "name": "google.jobs", "include_subdomains": true, "pins": "google" }, 441 { "name": "google.jp", "include_subdomains": true, "pins": "google" }, 442 { "name": "google.kg", "include_subdomains": true, "pins": "google" }, 443 { "name": "google.ki", "include_subdomains": true, "pins": "google" }, 444 { "name": "google.kz", "include_subdomains": true, "pins": "google" }, 445 { "name": "google.la", "include_subdomains": true, "pins": "google" }, 446 { "name": "google.li", "include_subdomains": true, "pins": "google" }, 447 { "name": "google.lk", "include_subdomains": true, "pins": "google" }, 448 { "name": "google.lt", "include_subdomains": true, "pins": "google" }, 449 { "name": "google.lu", "include_subdomains": true, "pins": "google" }, 450 { "name": "google.lv", "include_subdomains": true, "pins": "google" }, 451 { "name": "google.md", "include_subdomains": true, "pins": "google" }, 452 { "name": "google.me", "include_subdomains": true, "pins": "google" }, 453 { "name": "google.mg", "include_subdomains": true, "pins": "google" }, 454 { "name": "google.mk", "include_subdomains": true, "pins": "google" }, 455 { "name": "google.ml", "include_subdomains": true, "pins": "google" }, 456 { "name": "google.mn", "include_subdomains": true, "pins": "google" }, 457 { "name": "google.ms", "include_subdomains": true, "pins": "google" }, 458 { "name": "google.mu", "include_subdomains": true, "pins": "google" }, 459 { "name": "google.mv", "include_subdomains": true, "pins": "google" }, 460 { "name": "google.mw", "include_subdomains": true, "pins": "google" }, 461 { "name": "google.ne", "include_subdomains": true, "pins": "google" }, 462 { "name": "google.ne.jp", "include_subdomains": true, "pins": "google" }, 463 { "name": "google.net", "include_subdomains": true, "pins": "google" }, 464 { "name": "google.nl", "include_subdomains": true, "pins": "google" }, 465 { "name": "google.no", "include_subdomains": true, "pins": "google" }, 466 { "name": "google.nr", "include_subdomains": true, "pins": "google" }, 467 { "name": "google.nu", "include_subdomains": true, "pins": "google" }, 468 { "name": "google.off.ai", "include_subdomains": true, "pins": "google" }, 469 { "name": "google.pk", "include_subdomains": true, "pins": "google" }, 470 { "name": "google.pl", "include_subdomains": true, "pins": "google" }, 471 { "name": "google.pn", "include_subdomains": true, "pins": "google" }, 472 { "name": "google.ps", "include_subdomains": true, "pins": "google" }, 473 { "name": "google.pt", "include_subdomains": true, "pins": "google" }, 474 { "name": "google.ro", "include_subdomains": true, "pins": "google" }, 475 { "name": "google.rs", "include_subdomains": true, "pins": "google" }, 476 { "name": "google.ru", "include_subdomains": true, "pins": "google" }, 477 { "name": "google.rw", "include_subdomains": true, "pins": "google" }, 478 { "name": "google.sc", "include_subdomains": true, "pins": "google" }, 479 { "name": "google.se", "include_subdomains": true, "pins": "google" }, 480 { "name": "google.sh", "include_subdomains": true, "pins": "google" }, 481 { "name": "google.si", "include_subdomains": true, "pins": "google" }, 482 { "name": "google.sk", "include_subdomains": true, "pins": "google" }, 483 { "name": "google.sm", "include_subdomains": true, "pins": "google" }, 484 { "name": "google.sn", "include_subdomains": true, "pins": "google" }, 485 { "name": "google.so", "include_subdomains": true, "pins": "google" }, 486 { "name": "google.st", "include_subdomains": true, "pins": "google" }, 487 { "name": "google.td", "include_subdomains": true, "pins": "google" }, 488 { "name": "google.tg", "include_subdomains": true, "pins": "google" }, 489 { "name": "google.tk", "include_subdomains": true, "pins": "google" }, 490 { "name": "google.tl", "include_subdomains": true, "pins": "google" }, 491 { "name": "google.tm", "include_subdomains": true, "pins": "google" }, 492 { "name": "google.tn", "include_subdomains": true, "pins": "google" }, 493 { "name": "google.to", "include_subdomains": true, "pins": "google" }, 494 { "name": "google.tt", "include_subdomains": true, "pins": "google" }, 495 { "name": "google.us", "include_subdomains": true, "pins": "google" }, 496 { "name": "google.uz", "include_subdomains": true, "pins": "google" }, 497 { "name": "google.vg", "include_subdomains": true, "pins": "google" }, 498 { "name": "google.vu", "include_subdomains": true, "pins": "google" }, 499 { "name": "google.ws", "include_subdomains": true, "pins": "google" }, 500 // Exclude the learn.doubleclick.net subdomain because it uses a different 501 // CA. 502 { "name": "learn.doubleclick.net", "include_subdomains": true }, 503 504 // Force HTTPS for sites that have requested it. 505 { "name": "www.paypal.com", "mode": "force-https" }, 506 { "name": "paypal.com", "mode": "force-https" }, 507 { "name": "www.elanex.biz", "mode": "force-https" }, 508 { "name": "jottit.com", "include_subdomains": true, "mode": "force-https" }, 509 { "name": "sunshinepress.org", "include_subdomains": true, "mode": "force-https" }, 510 { "name": "www.noisebridge.net", "mode": "force-https" }, 511 { "name": "neg9.org", "mode": "force-https" }, 512 { "name": "riseup.net", "include_subdomains": true, "mode": "force-https" }, 513 { "name": "factor.cc", "mode": "force-https" }, 514 { "name": "members.mayfirst.org", "include_subdomains": true, "mode": "force-https" }, 515 { "name": "support.mayfirst.org", "include_subdomains": true, "mode": "force-https" }, 516 { "name": "id.mayfirst.org", "include_subdomains": true, "mode": "force-https" }, 517 { "name": "lists.mayfirst.org", "include_subdomains": true, "mode": "force-https" }, 518 { "name": "webmail.mayfirst.org", "include_subdomains": true, "mode": "force-https" }, 519 { "name": "roundcube.mayfirst.org", "include_subdomains": true, "mode": "force-https" }, 520 { "name": "aladdinschools.appspot.com", "mode": "force-https" }, 521 { "name": "ottospora.nl", "include_subdomains": true, "mode": "force-https" }, 522 { "name": "www.paycheckrecords.com", "mode": "force-https" }, 523 { "name": "lastpass.com", "mode": "force-https" }, 524 { "name": "www.lastpass.com", "mode": "force-https" }, 525 { "name": "keyerror.com", "include_subdomains": true, "mode": "force-https" }, 526 { "name": "entropia.de", "mode": "force-https" }, 527 { "name": "www.entropia.de", "mode": "force-https" }, 528 { "name": "romab.com", "include_subdomains": true, "mode": "force-https" }, 529 { "name": "logentries.com", "mode": "force-https" }, 530 { "name": "www.logentries.com", "mode": "force-https" }, 531 { "name": "stripe.com", "include_subdomains": true, "mode": "force-https" }, 532 { "name": "cloudsecurityalliance.org", "include_subdomains": true, "mode": "force-https" }, 533 { "name": "login.sapo.pt", "include_subdomains": true, "mode": "force-https" }, 534 { "name": "mattmccutchen.net", "include_subdomains": true, "mode": "force-https" }, 535 { "name": "betnet.fr", "include_subdomains": true, "mode": "force-https" }, 536 { "name": "uprotect.it", "include_subdomains": true, "mode": "force-https" }, 537 { "name": "squareup.com", "mode": "force-https" }, 538 { "name": "square.com", "include_subdomains": true, "mode": "force-https" }, 539 { "name": "cert.se", "include_subdomains": true, "mode": "force-https" }, 540 { "name": "crypto.is", "include_subdomains": true, "mode": "force-https" }, 541 { "name": "simon.butcher.name", "include_subdomains": true, "mode": "force-https" }, 542 { "name": "linx.net", "include_subdomains": true, "mode": "force-https" }, 543 { "name": "dropcam.com", "mode": "force-https" }, 544 { "name": "www.dropcam.com", "mode": "force-https" }, 545 { "name": "ebanking.indovinabank.com.vn", "include_subdomains": true, "mode": "force-https" }, 546 { "name": "epoxate.com", "mode": "force-https" }, 547 { "name": "torproject.org", "mode": "force-https", "pins": "tor" }, 548 { "name": "blog.torproject.org", "include_subdomains": true, "mode": "force-https", "pins": "tor" }, 549 { "name": "check.torproject.org", "include_subdomains": true, "mode": "force-https", "pins": "tor" }, 550 { "name": "www.torproject.org", "include_subdomains": true, "mode": "force-https", "pins": "tor" }, 551 { "name": "dist.torproject.org", "include_subdomains": true, "mode": "force-https", "pins": "tor" }, 552 { "name": "www.moneybookers.com", "include_subdomains": true, "mode": "force-https" }, 553 { "name": "ledgerscope.net", "mode": "force-https" }, 554 { "name": "www.ledgerscope.net", "mode": "force-https" }, 555 { "name": "app.recurly.com", "include_subdomains": true, "mode": "force-https" }, 556 { "name": "api.recurly.com", "include_subdomains": true, "mode": "force-https" }, 557 { "name": "greplin.com", "mode": "force-https" }, 558 { "name": "www.greplin.com", "mode": "force-https" }, 559 { "name": "luneta.nearbuysystems.com", "include_subdomains": true, "mode": "force-https" }, 560 { "name": "ubertt.org", "include_subdomains": true, "mode": "force-https" }, 561 { "name": "pixi.me", "include_subdomains": true, "mode": "force-https" }, 562 { "name": "grepular.com", "include_subdomains": true, "mode": "force-https" }, 563 { "name": "mydigipass.com", "mode": "force-https" }, 564 { "name": "www.mydigipass.com", "mode": "force-https" }, 565 { "name": "developer.mydigipass.com", "mode": "force-https" }, 566 { "name": "www.developer.mydigipass.com", "mode": "force-https" }, 567 { "name": "sandbox.mydigipass.com", "mode": "force-https" }, 568 { "name": "www.sandbox.mydigipass.com", "mode": "force-https" }, 569 { "name": "crypto.cat", "mode": "force-https", "pins": "cryptoCat" }, 570 { "name": "bigshinylock.minazo.net", "include_subdomains": true, "mode": "force-https" }, 571 { "name": "crate.io", "include_subdomains": true, "mode": "force-https" }, 572 { "name": "twitter.com", "mode": "force-https", "pins": "twitterCom" }, 573 { "name": "www.twitter.com", "include_subdomains": true, "mode": "force-https", "pins": "twitterCom" }, 574 { "name": "api.twitter.com", "include_subdomains": true, "pins": "twitterCDN" }, 575 { "name": "oauth.twitter.com", "include_subdomains": true, "pins": "twitterCom" }, 576 { "name": "mobile.twitter.com", "include_subdomains": true, "pins": "twitterCom" }, 577 { "name": "dev.twitter.com", "include_subdomains": true, "pins": "twitterCom" }, 578 { "name": "business.twitter.com", "include_subdomains": true, "pins": "twitterCom" }, 579 { "name": "platform.twitter.com", "include_subdomains": true, "pins": "twitterCDN" }, 580 { "name": "twimg.com", "include_subdomains": true, "pins": "twitterCDN" }, 581 { "name": "braintreegateway.com", "include_subdomains": true, "mode": "force-https" }, 582 { "name": "braintreepayments.com", "mode": "force-https" }, 583 { "name": "www.braintreepayments.com", "mode": "force-https" }, 584 { "name": "emailprivacytester.com", "mode": "force-https" }, 585 { "name": "tor2web.org", "include_subdomains": true, "pins": "tor2web" }, 586 { "name": "business.medbank.com.mt", "include_subdomains": true, "mode": "force-https" }, 587 { "name": "arivo.com.br", "include_subdomains": true, "mode": "force-https" }, 588 { "name": "www.apollo-auto.com", "include_subdomains": true, "mode": "force-https" }, 589 { "name": "www.cueup.com", "include_subdomains": true, "mode": "force-https" }, 590 { "name": "jitsi.org", "mode": "force-https" }, 591 { "name": "www.jitsi.org", "mode": "force-https" }, 592 { "name": "download.jitsi.org", "mode": "force-https" }, 593 { "name": "sol.io", "include_subdomains": true, "mode": "force-https" }, 594 { "name": "irccloud.com", "mode": "force-https" }, 595 { "name": "www.irccloud.com", "mode": "force-https" }, 596 { "name": "alpha.irccloud.com", "mode": "force-https" }, 597 { "name": "passwd.io", "include_subdomains": true, "mode": "force-https" }, 598 { "name": "browserid.org", "include_subdomains": true, "mode": "force-https" }, 599 { "name": "login.persona.org", "include_subdomains": true, "mode": "force-https" }, 600 { "name": "neonisi.com", "mode": "force-https" }, 601 { "name": "www.neonisi.com", "include_subdomains": true, "mode": "force-https" }, 602 { "name": "shops.neonisi.com", "include_subdomains": true, "mode": "force-https" }, 603 { "name": "piratenlogin.de", "include_subdomains": true, "mode": "force-https" }, 604 { "name": "howrandom.org", "include_subdomains": true, "mode": "force-https" }, 605 { "name": "intercom.io", "mode": "force-https" }, 606 { "name": "api.intercom.io", "mode": "force-https" }, 607 { "name": "www.intercom.io", "mode": "force-https" }, 608 { "name": "fatzebra.com.au", "include_subdomains": true, "mode": "force-https" }, 609 { "name": "csawctf.poly.edu", "include_subdomains": true, "mode": "force-https" }, 610 { "name": "makeyourlaws.org", "include_subdomains": true, "mode": "force-https" }, 611 { "name": "www.makeyourlaws.org", "mode": "force-https" }, 612 { "name": "iop.intuit.com", "include_subdomains": true, "mode": "force-https" }, 613 { "name": "surfeasy.com", "mode": "force-https" }, 614 { "name": "www.surfeasy.com", "mode": "force-https" }, 615 { "name": "packagist.org", "mode": "force-https" }, 616 { "name": "lookout.com", "mode": "force-https" }, 617 { "name": "www.lookout.com", "mode": "force-https" }, 618 { "name": "mylookout.com", "mode": "force-https" }, 619 { "name": "www.mylookout.com", "mode": "force-https" }, 620 { "name": "dm.lookout.com", "include_subdomains": true, "mode": "force-https" }, 621 { "name": "business.lookout.com", "include_subdomains": true, "mode": "force-https" }, 622 { "name": "blog.lookout.com", "include_subdomains": true, "mode": "force-https" }, 623 { "name": "faq.lookout.com", "include_subdomains": true, "mode": "force-https" }, 624 { "name": "platform.lookout.com", "include_subdomains": true, "mode": "force-https" }, 625 { "name": "email.lookout.com", "include_subdomains": true, "mode": "force-https" }, 626 { "name": "app.lookout.com", "include_subdomains": true, "mode": "force-https" }, 627 { "name": "api.lookout.com", "include_subdomains": true, "mode": "force-https" }, 628 { "name": "keymaster.lookout.com", "include_subdomains": true, "mode": "force-https" }, 629 { "name": "mygadgetguardian.lookout.com", "include_subdomains": true, "mode": "force-https" }, 630 { "name": "discovery.lookout.com", "include_subdomains": true, "mode": "force-https" }, 631 { "name": "mobilethreat.net", "include_subdomains": true, "mode": "force-https" }, 632 { "name": "mobilethreatnetwork.net", "include_subdomains": true, "mode": "force-https" }, 633 { "name": "itriskltd.com", "include_subdomains": true, "mode": "force-https" }, 634 { "name": "stocktrade.de", "include_subdomains": true, "mode": "force-https" }, 635 { "name": "openshift.redhat.com", "include_subdomains": true, "mode": "force-https" }, 636 { "name": "therapynotes.com", "mode": "force-https" }, 637 { "name": "www.therapynotes.com", "mode": "force-https" }, 638 { "name": "wiz.biz", "include_subdomains": true, "mode": "force-https" }, 639 { "name": "my.onlime.ch", "include_subdomains": true, "mode": "force-https" }, 640 { "name": "webmail.onlime.ch", "include_subdomains": true, "mode": "force-https" }, 641 { "name": "crm.onlime.ch", "include_subdomains": true, "mode": "force-https" }, 642 { "name": "www.gov.uk", "include_subdomains": true, "mode": "force-https" }, 643 { "name": "silentcircle.com", "include_subdomains": true, "mode": "force-https" }, 644 { "name": "silentcircle.org", "include_subdomains": true, "mode": "force-https" }, 645 { "name": "serverdensity.io", "include_subdomains": true, "mode": "force-https" }, 646 { "name": "my.alfresco.com", "include_subdomains": true, "mode": "force-https" }, 647 { "name": "webmail.gigahost.dk", "include_subdomains": true, "mode": "force-https" }, 648 { "name": "paymill.com", "include_subdomains": true, "mode": "force-https" }, 649 { "name": "paymill.de", "include_subdomains": true, "mode": "force-https" }, 650 { "name": "gocardless.com", "include_subdomains": true, "mode": "force-https" }, 651 { "name": "espra.com", "include_subdomains": true, "mode": "force-https" }, 652 { "name": "zoo24.de", "include_subdomains": true, "mode": "force-https" }, 653 { "name": "mega.co.nz", "mode": "force-https" }, 654 { "name": "api.mega.co.nz", "include_subdomains": true, "mode": "force-https" }, 655 { "name": "lockify.com", "include_subdomains": true, "mode": "force-https" }, 656 { "name": "writeapp.me", "mode": "force-https" }, 657 { "name": "bugzilla.mozilla.org", "include_subdomains": true, "mode": "force-https" }, 658 { "name": "members.nearlyfreespeech.net", "include_subdomains": true, "mode": "force-https" }, 659 { "name": "ssl.panoramio.com", "mode": "force-https" }, 660 { "name": "kiwiirc.com", "mode": "force-https" }, 661 { "name": "pay.gigahost.dk", "include_subdomains": true, "mode": "force-https" }, 662 { "name": "controlcenter.gigahost.dk", "include_subdomains": true, "mode": "force-https" }, 663 { "name": "simple.com", "mode": "force-https" }, 664 { "name": "www.simple.com", "mode": "force-https" }, 665 { "name": "fj.simple.com", "mode": "force-https" }, 666 { "name": "api.simple.com", "mode": "force-https" }, 667 { "name": "bank.simple.com", "include_subdomains": true, "mode": "force-https" }, 668 { "name": "bassh.net", "include_subdomains": true, "mode": "force-https" }, 669 { "name": "sah3.net", "include_subdomains": true, "mode": "force-https" }, 670 { "name": "grc.com", "mode": "force-https" }, 671 { "name": "www.grc.com", "mode": "force-https" }, 672 { "name": "linode.com", "mode": "force-https" }, 673 { "name": "www.linode.com", "mode": "force-https" }, 674 { "name": "manager.linode.com", "mode": "force-https" }, 675 { "name": "blog.linode.com", "mode": "force-https" }, 676 { "name": "library.linode.com", "mode": "force-https" }, 677 { "name": "forum.linode.com", "mode": "force-https" }, 678 { "name": "p.linode.com", "mode": "force-https" }, 679 { "name": "paste.linode.com", "mode": "force-https" }, 680 { "name": "pastebin.linode.com", "mode": "force-https" }, 681 { "name": "inertianetworks.com", "include_subdomains": true, "mode": "force-https" }, 682 { "name": "carezone.com", "mode": "force-https" }, 683 { "name": "conformal.com", "include_subdomains": true, "mode": "force-https" }, 684 { "name": "cyphertite.com", "include_subdomains": true, "mode": "force-https" }, 685 { "name": "logotype.se", "include_subdomains": true, "mode": "force-https" }, 686 { "name": "bccx.com", "include_subdomains": true, "mode": "force-https" }, 687 { "name": "launchkey.com", "include_subdomains": true, "mode": "force-https" }, 688 { "name": "carlolly.co.uk", "include_subdomains": true, "mode": "force-https" }, 689 { "name": "www.cyveillance.com", "include_subdomains": true, "mode": "force-https" }, 690 { "name": "blog.cyveillance.com", "include_subdomains": true, "mode": "force-https" }, 691 { "name": "whonix.org", "include_subdomains": true, "mode": "force-https" }, 692 { "name": "shodan.io", "include_subdomains": true, "mode": "force-https" }, 693 { "name": "rapidresearch.me", "include_subdomains": true, "mode": "force-https" }, 694 { "name": "surkatty.org", "include_subdomains": true, "mode": "force-https" }, 695 { "name": "securityheaders.com", "include_subdomains": true, "mode": "force-https" }, 696 { "name": "haste.ch", "include_subdomains": true, "mode": "force-https" }, 697 { "name": "mudcrab.us", "include_subdomains": true, "mode": "force-https" }, 698 { "name": "mediacru.sh", "include_subdomains": true, "mode": "force-https" }, 699 { "name": "lolicore.ch", "include_subdomains": true, "mode": "force-https" }, 700 { "name": "cloudns.com.au", "include_subdomains": true, "mode": "force-https" }, 701 { "name": "oplop.appspot.com", "include_subdomains": true, "mode": "force-https" }, 702 { "name": "bcrook.com", "mode": "force-https" }, 703 { "name": "wiki.python.org", "include_subdomains": true, "mode": "force-https" }, 704 { "name": "lumi.do", "mode": "force-https" }, 705 { "name": "appseccalifornia.org", "include_subdomains": true, "mode": "force-https" }, 706 { "name": "crowdcurity.com", "include_subdomains": true, "mode": "force-https" }, 707 { "name": "saturngames.co.uk", "include_subdomains": true, "mode": "force-https" }, 708 { "name": "strongest-privacy.com", "include_subdomains": true, "mode": "force-https" }, 709 { "name": "ecosystem.atlassian.net", "include_subdomains": true, "mode": "force-https" }, 710 { "name": "id.atlassian.com", "include_subdomains": true, "mode": "force-https" }, 711 { "name": "bitbucket.org", "mode": "force-https" }, 712 { "name": "cupcake.io", "include_subdomains": true, "mode": "force-https" }, 713 { "name": "cupcake.is", "include_subdomains": true, "mode": "force-https" }, 714 { "name": "tent.io", "include_subdomains": true, "mode": "force-https" }, 715 { "name": "cybozu.com", "include_subdomains": true, "mode": "force-https" }, 716 { "name": "davidlyness.com", "include_subdomains": true, "mode": "force-https" }, 717 { "name": "medium.com", "include_subdomains": true, "mode": "force-https" }, 718 { "name": "liberty.lavabit.com", "include_subdomains": true, "mode": "force-https", "pins": "lavabit" }, 719 { "name": "getlantern.org", "include_subdomains": true, "mode": "force-https" }, 720 { "name": "kinsights.com", "mode": "force-https" }, 721 { "name": "simbolo.co.uk", "mode": "force-https" }, 722 { "name": "www.simbolo.co.uk", "mode": "force-https" }, 723 { "name": "zenpayroll.com", "mode": "force-https" }, 724 { "name": "www.zenpayroll.com", "mode": "force-https" }, 725 { "name": "get.zenpayroll.com", "mode": "force-https" }, 726 { "name": "errors.zenpayroll.com", "mode": "force-https" }, 727 { "name": "manage.zenpayroll.com", "mode": "force-https" }, 728 { "name": "gernert-server.de", "include_subdomains": true, "mode": "force-https" }, 729 { "name": "skydrive.live.com", "include_subdomains": true, "mode": "force-https" }, 730 { "name": "lifeguard.aecom.com", "include_subdomains": true, "mode": "force-https" }, 731 { "name": "data.qld.gov.au", "mode": "force-https" }, 732 { "name": "publications.qld.gov.au", "mode": "force-https" }, 733 { "name": "go.xero.com", "include_subdomains": true, "mode": "force-https" }, 734 { "name": "login.xero.com", "include_subdomains": true, "mode": "force-https" }, 735 { "name": "my.xero.com", "include_subdomains": true, "mode": "force-https" }, 736 { "name": "payroll.xero.com", "include_subdomains": true, "mode": "force-https" }, 737 { "name": "in.xero.com", "include_subdomains": true, "mode": "force-https" }, 738 { "name": "api.xero.com", "include_subdomains": true, "mode": "force-https" }, 739 { "name": "eff.org", "include_subdomains": true, "mode": "force-https" }, 740 { "name": "mail.de", "include_subdomains": true, "mode": "force-https" }, 741 { "name": "passport.yandex.ru", "mode": "force-https" }, 742 { "name": "passport.yandex.com", "mode": "force-https" }, 743 { "name": "passport.yandex.ua", "mode": "force-https" }, 744 { "name": "passport.yandex.by", "mode": "force-https" }, 745 { "name": "passport.yandex.kz", "mode": "force-https" }, 746 { "name": "passport.yandex.com.tr", "mode": "force-https" }, 747 { "name": "mnsure.org", "include_subdomains": true, "mode": "force-https" }, 748 { "name": "getcloak.com", "mode": "force-https" }, 749 { "name": "www.getcloak.com", "mode": "force-https" }, 750 { "name": "matteomarescotti.name", "include_subdomains": true, "mode": "force-https" }, 751 { "name": "www.heliosnet.com", "include_subdomains": true, "mode": "force-https" }, 752 { "name": "opsmate.com", "mode": "force-https" }, 753 { "name": "www.opsmate.com", "include_subdomains": true, "mode": "force-https" }, 754 { "name": "f-droid.org", "include_subdomains": true, "mode": "force-https" }, 755 { "name": "www.evernote.com", "mode": "force-https" }, 756 { "name": "app.yinxiang.com", "mode": "force-https" }, 757 { "name": "neilwynne.com", "mode": "force-https" }, 758 { "name": "calyxinstitute.org", "mode": "force-https" }, 759 { "name": "www.calyxinstitute.org", "mode": "force-https" }, 760 { "name": "blacklane.com", "include_subdomains": true, "mode": "force-https" }, 761 { "name": "boxcryptor.com", "include_subdomains": true, "mode": "force-https" }, 762 { "name": "aclu.org", "mode": "force-https" }, 763 { "name": "www.aclu.org", "mode": "force-https" }, 764 { "name": "prodpad.com", "include_subdomains": true, "mode": "force-https" }, 765 { "name": "mailbox.org", "include_subdomains": true, "mode": "force-https" }, 766 { "name": "roddis.net", "mode": "force-https" }, 767 { "name": "www.roddis.net", "mode": "force-https" }, 768 { "name": "fiken.no", "include_subdomains": true, "mode": "force-https" }, 769 { "name": "fairbill.com", "include_subdomains": true, "mode": "force-https" }, 770 { "name": "nexth.net", "include_subdomains": true, "mode": "force-https" }, 771 { "name": "nexth.us", "include_subdomains": true, "mode": "force-https" }, 772 { "name": "nexth.de", "include_subdomains": true, "mode": "force-https" }, 773 { "name": "souyar.net", "include_subdomains": true, "mode": "force-https" }, 774 { "name": "souyar.de", "include_subdomains": true, "mode": "force-https" }, 775 { "name": "souyar.us", "include_subdomains": true, "mode": "force-https" }, 776 { "name": "www.banking.co.at", "mode": "force-https" }, 777 { "name": "mbp.banking.co.at", "mode": "force-https" }, 778 { "name": "feedbin.com", "mode": "force-https" }, 779 { "name": "heha.co", "include_subdomains": true, "mode": "force-https" }, 780 { "name": "passwordbox.com", "include_subdomains": true, "mode": "force-https" }, 781 { "name": "python.org", "mode": "force-https" }, 782 { "name": "pypi.python.org", "include_subdomains": true, "mode": "force-https" }, 783 { "name": "www.python.org", "include_subdomains": true, "mode": "force-https" }, 784 { "name": "docs.python.org", "include_subdomains": true, "mode": "force-https" }, 785 { "name": "encircleapp.com", "include_subdomains": true, "mode": "force-https" }, 786 { "name": "onedrive.live.com", "include_subdomains": true, "mode": "force-https" }, 787 { "name": "onedrive.com", "include_subdomains": true, "mode": "force-https" }, 788 { "name": "keepersecurity.com", "include_subdomains": true, "mode": "force-https" }, 789 { "name": "keeperapp.com", "include_subdomains": true, "mode": "force-https" }, 790 { "name": "donmez.ws", "include_subdomains": true, "mode": "force-https" }, 791 { "name": "activiti.alfresco.com", "mode": "force-https" }, 792 { "name": "cloudcert.org", "include_subdomains": true, "mode": "force-https" }, 793 { "name": "seifried.org", "include_subdomains": true, "mode": "force-https" }, 794 { "name": "wepay.com", "mode": "force-https" }, 795 { "name": "www.wepay.com", "mode": "force-https" }, 796 { "name": "static.wepay.com", "mode": "force-https" }, 797 { "name": "stage.wepay.com", "mode": "force-https" }, 798 { "name": "vmoagents.com", "mode": "force-https" }, 799 { "name": "adsfund.org", "include_subdomains": true, "mode": "force-https" }, 800 { "name": "pult.co", "mode": "force-https" }, 801 { "name": "dillonkorman.com", "include_subdomains": true, "mode": "force-https" }, 802 { "name": "edmodo.com", "include_subdomains": true, "mode": "force-https" }, 803 { "name": "www.eternalgoth.co.uk", "mode": "force-https" }, 804 { "name": "app.manilla.com", "include_subdomains": true, "mode": "force-https" }, 805 { "name": "harvestapp.com", "include_subdomains": true, "mode": "force-https" }, 806 { "name": "anycoin.me", "include_subdomains": true, "mode": "force-https" }, 807 { "name": "noexpect.org", "include_subdomains": true, "mode": "force-https" }, 808 { "name": "airbnb.com", "mode": "force-https" }, 809 { "name": "www.airbnb.com", "include_subdomains": true, "mode": "force-https" }, 810 { "name": "usaa.com", "mode": "force-https" }, 811 { "name": "www.usaa.com", "mode": "force-https" }, 812 { "name": "mobile.usaa.com", "mode": "force-https" }, 813 { "name": "subrosa.io", "include_subdomains": true, "mode": "force-https" }, 814 { "name": "detectify.com", "mode": "force-https" }, 815 { "name": "crbug.com", "include_subdomains": true, "mode": "force-https" }, 816 { "name": "manageprojects.com", "include_subdomains": true, "mode": "force-https" }, 817 { "name": "tinfoilsecurity.com", "mode": "force-https" }, 818 { "name": "www.tinfoilsecurity.com", "mode": "force-https" }, 819 { "name": "imouto.my", "mode": "force-https" }, 820 { "name": "vocaloid.my", "include_subdomains": true, "mode": "force-https" }, 821 { "name": "sakaki.anime.my", "include_subdomains": true, "mode": "force-https" }, 822 { "name": "reviews.anime.my", "include_subdomains": true, "mode": "force-https" }, 823 { "name": "miku.hatsune.my", "include_subdomains": true, "mode": "force-https" }, 824 { "name": "webcollect.org.uk", "include_subdomains": true, "mode": "force-https" }, 825 { "name": "www.capitainetrain.com", "mode": "force-https" }, 826 { "name": "accounts.firefox.com", "include_subdomains": true, "mode": "force-https" }, 827 { "name": "z.ai", "include_subdomains": true, "mode": "force-https" }, 828 { "name": "wildbee.org", "include_subdomains": true, "mode": "force-https" }, 829 { "name": "portal.tirol.gv.at", "include_subdomains": true, "mode": "force-https" }, 830 { "name": "dropbox.com", "mode": "force-https", "pins": "dropbox" }, 831 { "name": "www.dropbox.com", "include_subdomains": true, "mode": "force-https", "pins": "dropbox" }, 832 { "name": "code-poets.co.uk", "include_subdomains": true, "mode": "force-https" }, 833 { "name": "jackyyf.com", "mode": "force-https" }, 834 { "name": "flynn.io", "include_subdomains": true, "mode": "force-https" }, 835 { "name": "hackerone.com", "include_subdomains": true, "mode": "force-https" }, 836 { "name": "hackerone-user-content.com", "include_subdomains": true, "mode": "force-https" }, 837 { "name": "gamesdepartment.co.uk", "mode": "force-https" }, 838 { "name": "www.gamesdepartment.co.uk", "include_subdomains": true, "mode": "force-https" }, 839 { "name": "schokokeks.org", "mode": "force-https" }, 840 { "name": "www.schokokeks.org", "include_subdomains": true, "mode": "force-https" }, 841 { "name": "config.schokokeks.org", "include_subdomains": true, "mode": "force-https" }, 842 { "name": "webmail.schokokeks.org", "include_subdomains": true, "mode": "force-https" }, 843 { "name": "mwe.st", "include_subdomains": true, "mode": "force-https" }, 844 { "name": "ub3rk1tten.com", "include_subdomains": true, "mode": "force-https" }, 845 { "name": "addvocate.com", "include_subdomains": true, "mode": "force-https" }, 846 { "name": "alexsexton.com", "include_subdomains": true, "mode": "force-https" }, 847 { "name": "azprep.us", "include_subdomains": true, "mode": "force-https" }, 848 { "name": "beneathvt.com", "include_subdomains": true, "mode": "force-https" }, 849 { "name": "cloudup.com", "include_subdomains": true, "mode": "force-https" }, 850 { "name": "cryptopartyatx.org", "include_subdomains": true, "mode": "force-https" }, 851 { "name": "cybershambles.com", "include_subdomains": true, "mode": "force-https" }, 852 { "name": "ed.gs", "include_subdomains": true, "mode": "force-https" }, 853 { "name": "forewordreviews.com", "include_subdomains": true, "mode": "force-https" }, 854 { "name": "giacomopelagatti.it", "include_subdomains": true, "mode": "force-https" }, 855 { "name": "helichat.de", "include_subdomains": true, "mode": "force-https" }, 856 { "name": "hostinginnederland.nl", "include_subdomains": true, "mode": "force-https" }, 857 { "name": "isitchristmas.com", "include_subdomains": true, "mode": "force-https" }, 858 { "name": "konklone.com", "include_subdomains": true, "mode": "force-https" }, 859 { "name": "koop-bremen.de", "include_subdomains": true, "mode": "force-https" }, 860 { "name": "kura.io", "include_subdomains": true, "mode": "force-https" }, 861 { "name": "markusueberallassetmanagement.de", "include_subdomains": true, "mode": "force-https" }, 862 { "name": "mikewest.org", "include_subdomains": true, "mode": "force-https" }, 863 { "name": "miskatonic.org", "include_subdomains": true, "mode": "force-https" }, 864 { "name": "optimus.io", "include_subdomains": true, "mode": "force-https" }, 865 { "name": "oversight.io", "include_subdomains": true, "mode": "force-https" }, 866 { "name": "picksin.club", "include_subdomains": true, "mode": "force-https" }, 867 { "name": "pressfreedomfoundation.org", "include_subdomains": true, "mode": "force-https" }, 868 { "name": "projektzentrisch.de", "include_subdomains": true, "mode": "force-https" }, 869 { "name": "rippleunion.com", "include_subdomains": true, "mode": "force-https" }, 870 { "name": "robteix.com", "include_subdomains": true, "mode": "force-https" }, 871 { "name": "s-c.se", "include_subdomains": true, "mode": "force-https" }, 872 { "name": "security-carpet.com", "include_subdomains": true, "mode": "force-https" }, 873 { "name": "sherbers.de", "include_subdomains": true, "mode": "force-https" }, 874 { "name": "tittelbach.at", "include_subdomains": true, "mode": "force-https" }, 875 { "name": "tomfisher.eu", "include_subdomains": true, "mode": "force-https" }, 876 { "name": "wunderlist.com", "include_subdomains": true, "mode": "force-https" }, 877 { "name": "zotero.org", "include_subdomains": true, "mode": "force-https" }, 878 { "name": "adamkostecki.de", "include_subdomains": true, "mode": "force-https" }, 879 { "name": "archlinux.de", "include_subdomains": true, "mode": "force-https" }, 880 { "name": "auf-feindgebiet.de", "include_subdomains": true, "mode": "force-https" }, 881 { "name": "baruch.me", "include_subdomains": true, "mode": "force-https" }, 882 { "name": "bedeta.de", "include_subdomains": true, "mode": "force-https" }, 883 { "name": "benjamins.com", "include_subdomains": true, "mode": "force-https" }, 884 { "name": "bl4ckb0x.com", "include_subdomains": true, "mode": "force-https" }, 885 { "name": "bl4ckb0x.de", "include_subdomains": true, "mode": "force-https" }, 886 { "name": "bl4ckb0x.info", "include_subdomains": true, "mode": "force-https" }, 887 { "name": "bl4ckb0x.net", "include_subdomains": true, "mode": "force-https" }, 888 { "name": "bl4ckb0x.org", "include_subdomains": true, "mode": "force-https" }, 889 { "name": "blocksatz-medien.de", "include_subdomains": true, "mode": "force-https" }, 890 { "name": "conrad-kostecki.de", "include_subdomains": true, "mode": "force-https" }, 891 { "name": "cube.de", "include_subdomains": true, "mode": "force-https" }, 892 { "name": "datenkeks.de", "include_subdomains": true, "mode": "force-https" }, 893 { "name": "derhil.de", "include_subdomains": true, "mode": "force-https" }, 894 { "name": "energy-drink-magazin.de", "include_subdomains": true, "mode": "force-https" }, 895 { "name": "ferienhaus-polchow-ruegen.de", "include_subdomains": true, "mode": "force-https" }, 896 { "name": "fischer-its.com", "include_subdomains": true, "mode": "force-https" }, 897 { "name": "freeshell.de", "include_subdomains": true, "mode": "force-https" }, 898 { "name": "greensolid.biz", "include_subdomains": true, "mode": "force-https" }, 899 { "name": "hasilocke.de", "include_subdomains": true, "mode": "force-https" }, 900 { "name": "hausverbrauch.de", "include_subdomains": true, "mode": "force-https" }, 901 { "name": "helpium.de", "include_subdomains": true, "mode": "force-https" }, 902 { "name": "hex2013.com", "include_subdomains": true, "mode": "force-https" }, 903 { "name": "honeytracks.com", "include_subdomains": true, "mode": "force-https" }, 904 { "name": "ihrlotto.de", "include_subdomains": true, "mode": "force-https" }, 905 { "name": "jonas-keidel.de", "include_subdomains": true, "mode": "force-https" }, 906 { "name": "jonaswitmer.ch", "include_subdomains": true, "mode": "force-https" }, 907 { "name": "k-dev.de", "include_subdomains": true, "mode": "force-https" }, 908 { "name": "kraken.io", "include_subdomains": true, "mode": "force-https" }, 909 { "name": "lagerauftrag.info", "include_subdomains": true, "mode": "force-https" }, 910 { "name": "lavalite.de", "include_subdomains": true, "mode": "force-https" }, 911 { "name": "loenshotel.de", "include_subdomains": true, "mode": "force-https" }, 912 { "name": "loftboard.eu", "include_subdomains": true, "mode": "force-https" }, 913 { "name": "mondwandler.de", "include_subdomains": true, "mode": "force-https" }, 914 { "name": "mountainroseherbs.com", "include_subdomains": true, "mode": "force-https" }, 915 { "name": "movlib.org", "include_subdomains": true, "mode": "force-https" }, 916 { "name": "musicgamegalaxy.de", "include_subdomains": true, "mode": "force-https" }, 917 { "name": "mynigma.org", "include_subdomains": true, "mode": "force-https" }, 918 { "name": "nachsenden.info", "include_subdomains": true, "mode": "force-https" }, 919 { "name": "netzbit.de", "include_subdomains": true, "mode": "force-https" }, 920 { "name": "pdf.yt", "include_subdomains": true, "mode": "force-https" }, 921 { "name": "pierre-schmitz.com", "include_subdomains": true, "mode": "force-https" }, 922 { "name": "promecon-gmbh.de", "include_subdomains": true, "mode": "force-https" }, 923 { "name": "prowhisky.de", "include_subdomains": true, "mode": "force-https" }, 924 { "name": "pubkey.is", "include_subdomains": true, "mode": "force-https" }, 925 { "name": "qetesh.de", "include_subdomains": true, "mode": "force-https" }, 926 { "name": "riccy.org", "include_subdomains": true, "mode": "force-https" }, 927 { "name": "scrambl.is", "include_subdomains": true, "mode": "force-https" }, 928 { "name": "tageau.com", "include_subdomains": true, "mode": "force-https" }, 929 { "name": "ukrainians.ch", "include_subdomains": true, "mode": "force-https" }, 930 { "name": "viennan.net", "include_subdomains": true, "mode": "force-https" }, 931 { "name": "winhistory-forum.net", "include_subdomains": true, "mode": "force-https" }, 932 { "name": "y-o-w.com", "include_subdomains": true, "mode": "force-https" }, 933 { "name": "explodie.org", "include_subdomains": true, "mode": "force-https" }, 934 { "name": "aie.de", "include_subdomains": true, "mode": "force-https" }, 935 { "name": "baer.im", "include_subdomains": true, "mode": "force-https" }, 936 { "name": "bayrisch-fuer-anfaenger.de", "include_subdomains": true, "mode": "force-https" }, 937 { "name": "beastowner.com", "include_subdomains": true, "mode": "force-https" }, 938 { "name": "beastowner.li", "include_subdomains": true, "mode": "force-https" }, 939 { "name": "best-wedding-quotes.com", "include_subdomains": true, "mode": "force-https" }, 940 { "name": "bitfactory.ws", "include_subdomains": true, "mode": "force-https" }, 941 { "name": "bohramt.de", "include_subdomains": true, "mode": "force-https" }, 942 { "name": "buddhistische-weisheiten.org", "include_subdomains": true, "mode": "force-https" }, 943 { "name": "cartouche24.eu", "include_subdomains": true, "mode": "force-https" }, 944 { "name": "cartucce24.it", "include_subdomains": true, "mode": "force-https" }, 945 { "name": "celltek-server.de", "include_subdomains": true, "mode": "force-https" }, 946 { "name": "clapping-rhymes.com", "include_subdomains": true, "mode": "force-https" }, 947 { "name": "die-besten-weisheiten.de", "include_subdomains": true, "mode": "force-https" }, 948 { "name": "edyou.eu", "include_subdomains": true, "mode": "force-https" }, 949 { "name": "eurotramp.com", "include_subdomains": true, "mode": "force-https" }, 950 { "name": "forodeespanol.com", "include_subdomains": true, "mode": "force-https" }, 951 { "name": "gemeinfreie-lieder.de", "include_subdomains": true, "mode": "force-https" }, 952 { "name": "getdigitized.net", "include_subdomains": true, "mode": "force-https" }, 953 { "name": "globuli-info.de", "include_subdomains": true, "mode": "force-https" }, 954 { "name": "guphi.net", "include_subdomains": true, "mode": "force-https" }, 955 { "name": "guthabenkarten-billiger.de", "include_subdomains": true, "mode": "force-https" }, 956 { "name": "haufschild.de", "include_subdomains": true, "mode": "force-https" }, 957 { "name": "hoerbuecher-und-hoerspiele.de", "include_subdomains": true, "mode": "force-https" }, 958 { "name": "iban.is", "include_subdomains": true, "mode": "force-https" }, 959 { "name": "irische-segenswuensche.info", "include_subdomains": true, "mode": "force-https" }, 960 { "name": "it-schwerin.de", "include_subdomains": true, "mode": "force-https" }, 961 { "name": "janus-engineering.de", "include_subdomains": true, "mode": "force-https" }, 962 { "name": "jfreitag.de", "include_subdomains": true, "mode": "force-https" }, 963 { "name": "julian-kipka.de", "include_subdomains": true, "mode": "force-https" }, 964 { "name": "kardize24.pl", "include_subdomains": true, "mode": "force-https" }, 965 { "name": "kernel-error.de", "include_subdomains": true, "mode": "force-https" }, 966 { "name": "kinderbuecher-kostenlos.de", "include_subdomains": true, "mode": "force-https" }, 967 { "name": "kitsta.com", "include_subdomains": true, "mode": "force-https" }, 968 { "name": "klatschreime.de", "include_subdomains": true, "mode": "force-https" }, 969 { "name": "kleidertauschpartys.de", "include_subdomains": true, "mode": "force-https" }, 970 { "name": "koordinate.net", "include_subdomains": true, "mode": "force-https" }, 971 { "name": "lasst-uns-beten.de", "include_subdomains": true, "mode": "force-https" }, 972 { "name": "lb-toner.de", "include_subdomains": true, "mode": "force-https" }, 973 { "name": "mandala-ausmalbilder.de", "include_subdomains": true, "mode": "force-https" }, 974 { "name": "mathiasbynens.be", "include_subdomains": true, "mode": "force-https" }, 975 { "name": "klaxn.com", "include_subdomains": true, "mode": "force-https" }, 976 { "name": "mig5.net", "include_subdomains": true, "mode": "force-https" }, 977 { "name": "netzpolitik.org", "include_subdomains": true, "mode": "force-https" }, 978 { "name": "npw.net", "include_subdomains": true, "mode": "force-https" }, 979 { "name": "otakuworld.de", "include_subdomains": true, "mode": "force-https" }, 980 { "name": "pajonzeck.de", "include_subdomains": true, "mode": "force-https" }, 981 { "name": "rad-route.de", "include_subdomains": true, "mode": "force-https" }, 982 { "name": "raiseyourflag.com", "include_subdomains": true, "mode": "force-https" }, 983 { "name": "redports.org", "include_subdomains": true, "mode": "force-https" }, 984 { "name": "reserve-online.net", "include_subdomains": true, "mode": "force-https" }, 985 { "name": "riesenmagnete.de", "include_subdomains": true, "mode": "force-https" }, 986 { "name": "rosenkeller.org", "include_subdomains": true, "mode": "force-https" }, 987 { "name": "salaervergleich.com", "include_subdomains": true, "mode": "force-https" }, 988 { "name": "schwarzer.it", "include_subdomains": true, "mode": "force-https" }, 989 { "name": "secuvera.de", "include_subdomains": true, "mode": "force-https" }, 990 { "name": "siammedia.co", "include_subdomains": true, "mode": "force-https" }, 991 { "name": "simplystudio.com", "include_subdomains": true, "mode": "force-https" }, 992 { "name": "sprueche-zum-valentinstag.de", "include_subdomains": true, "mode": "force-https" }, 993 { "name": "sprueche-zur-geburt.info", "include_subdomains": true, "mode": "force-https" }, 994 { "name": "sprueche-zur-hochzeit.de", "include_subdomains": true, "mode": "force-https" }, 995 { "name": "sprueche-zur-konfirmation.de", "include_subdomains": true, "mode": "force-https" }, 996 { "name": "studydrive.net", "include_subdomains": true, "mode": "force-https" }, 997 { "name": "supplies24.at", "include_subdomains": true, "mode": "force-https" }, 998 { "name": "supplies24.es", "include_subdomains": true, "mode": "force-https" }, 999 { "name": "tatort-fanpage.de", "include_subdomains": true, "mode": "force-https" }, 1000 { "name": "tektoria.de", "include_subdomains": true, "mode": "force-https" }, 1001 { "name": "texte-zur-taufe.de", "include_subdomains": true, "mode": "force-https" }, 1002 { "name": "tinte24.de", "include_subdomains": true, "mode": "force-https" }, 1003 { "name": "tintenfix.net", "include_subdomains": true, "mode": "force-https" }, 1004 { "name": "tipps-fuer-den-haushalt.de", "include_subdomains": true, "mode": "force-https" }, 1005 { "name": "toner24.at", "include_subdomains": true, "mode": "force-https" }, 1006 { "name": "toner24.co.uk", "include_subdomains": true, "mode": "force-https" }, 1007 { "name": "toner24.es", "include_subdomains": true, "mode": "force-https" }, 1008 { "name": "toner24.fr", "include_subdomains": true, "mode": "force-https" }, 1009 { "name": "toner24.it", "include_subdomains": true, "mode": "force-https" }, 1010 { "name": "toner24.nl", "include_subdomains": true, "mode": "force-https" }, 1011 { "name": "toner24.pl", "include_subdomains": true, "mode": "force-https" }, 1012 { "name": "tonerdepot.de", "include_subdomains": true, "mode": "force-https" }, 1013 { "name": "tonerjet.at", "include_subdomains": true, "mode": "force-https" }, 1014 { "name": "tonerjet.co.uk", "include_subdomains": true, "mode": "force-https" }, 1015 { "name": "tonerklick.de", "include_subdomains": true, "mode": "force-https" }, 1016 { "name": "tonerkurier.de", "include_subdomains": true, "mode": "force-https" }, 1017 { "name": "tonermaus.de", "include_subdomains": true, "mode": "force-https" }, 1018 { "name": "tonermonster.de", "include_subdomains": true, "mode": "force-https" }, 1019 { "name": "tonex.de", "include_subdomains": true, "mode": "force-https" }, 1020 { "name": "tonex.nl", "include_subdomains": true, "mode": "force-https" }, 1021 { "name": "trauertexte.info", "include_subdomains": true, "mode": "force-https" }, 1022 { "name": "unterfrankenclan.de", "include_subdomains": true, "mode": "force-https" }, 1023 { "name": "webandmore.de", "include_subdomains": true, "mode": "force-https" }, 1024 { "name": "welches-kinderfahrrad.de", "include_subdomains": true, "mode": "force-https" }, 1025 { "name": "apadvantage.com", "include_subdomains": true, "mode": "force-https" }, 1026 { "name": "apn-einstellungen.de", "include_subdomains": true, "mode": "force-https" }, 1027 { "name": "barcodeberlin.com", "include_subdomains": true, "mode": "force-https" }, 1028 { "name": "certible.com", "include_subdomains": true, "mode": "force-https" }, 1029 { "name": "data-abundance.com", "include_subdomains": true, "mode": "force-https" }, 1030 { "name": "dedimax.de", "include_subdomains": true, "mode": "force-https" }, 1031 { "name": "hostix.de", "include_subdomains": true, "mode": "force-https" }, 1032 { "name": "janoberst.com", "include_subdomains": true, "mode": "force-https" }, 1033 { "name": "jelmer.co.uk", "include_subdomains": true, "mode": "force-https" }, 1034 { "name": "jelmer.uk", "include_subdomains": true, "mode": "force-https" }, 1035 { "name": "munich-rage.de", "include_subdomains": true, "mode": "force-https" }, 1036 { "name": "posteo.de", "include_subdomains": true, "mode": "force-https" }, 1037 { "name": "stationary-traveller.eu", "include_subdomains": true, "mode": "force-https" }, 1038 { "name": "thepaymentscompany.com", "include_subdomains": true, "mode": "force-https" }, 1039 { "name": "xps2pdf.co.uk", "include_subdomains": true, "mode": "force-https" }, 1040 { "name": "ansdell.net", "include_subdomains": true, "mode": "force-https" }, 1041 { "name": "brunosouza.org", "include_subdomains": true, "mode": "force-https" }, 1042 { "name": "bugzil.la", "include_subdomains": true, "mode": "force-https" }, 1043 { "name": "bytepark.de", "include_subdomains": true, "mode": "force-https" }, 1044 { "name": "ethitter.com", "include_subdomains": true, "mode": "force-https" }, 1045 { "name": "firemail.io", "include_subdomains": true, "mode": "force-https" }, 1046 { "name": "gmantra.org", "include_subdomains": true, "mode": "force-https" }, 1047 { "name": "mach-politik.ch", "include_subdomains": true, "mode": "force-https" }, 1048 { "name": "malnex.de", "include_subdomains": true, "mode": "force-https" }, 1049 { "name": "mutantmonkey.sexy", "include_subdomains": true, "mode": "force-https" }, 1050 { "name": "ng-security.com", "include_subdomains": true, "mode": "force-https" }, 1051 { "name": "palava.tv", "include_subdomains": true, "mode": "force-https" }, 1052 { "name": "reedloden.com", "include_subdomains": true, "mode": "force-https" }, 1053 { "name": "rws-vertriebsportal.de", "include_subdomains": true, "mode": "force-https" }, 1054 { "name": "sdsl-speedtest.de", "include_subdomains": true, "mode": "force-https" }, 1055 { "name": "servethecity-karlsruhe.de", "include_subdomains": true, "mode": "force-https" }, 1056 { "name": "tunebitfm.de", "include_subdomains": true, "mode": "force-https" }, 1057 { "name": "websenat.de", "include_subdomains": true, "mode": "force-https" }, 1058 { "name": "zeropush.com", "include_subdomains": true, "mode": "force-https" }, 1059 { "name": "ludwig.im", "include_subdomains": true, "mode": "force-https" }, 1060 { "name": "gparent.org", "mode": "force-https" }, 1061 { "name": "blog.gparent.org", "mode": "force-https" }, 1062 { "name": "m.gparent.org", "mode": "force-https" }, 1063 { "name": "ca.gparent.org", "mode": "force-https" }, 1064 { "name": "simpletax.ca", "mode": "force-https" }, 1065 { "name": "help.simpletax.ca", "mode": "force-https" }, 1066 { "name": "app.simpletax.ca", "mode": "force-https" }, 1067 { "name": "daphne.informatik.uni-freiburg.de", "mode": "force-https" }, 1068 { "name": "bedreid.dk", "include_subdomains": true, "mode": "force-https" }, 1069 { "name": "cotonea.de", "include_subdomains": true, "mode": "force-https" }, 1070 { "name": "everhome.de", "include_subdomains": true, "mode": "force-https" }, 1071 { "name": "fixingdns.com", "include_subdomains": true, "mode": "force-https" }, 1072 { "name": "flamer-scene.com", "include_subdomains": true, "mode": "force-https" }, 1073 { "name": "insouciant.org", "include_subdomains": true, "mode": "force-https" }, 1074 { "name": "kaheim.de", "include_subdomains": true, "mode": "force-https" }, 1075 { "name": "kevincox.ca", "include_subdomains": true, "mode": "force-https" }, 1076 { "name": "lingolia.com", "include_subdomains": true, "mode": "force-https" }, 1077 { "name": "matatall.com", "include_subdomains": true, "mode": "force-https" }, 1078 { "name": "net-safe.info", "include_subdomains": true, "mode": "force-https" }, 1079 { "name": "okmx.de", "include_subdomains": true, "mode": "force-https" }, 1080 { "name": "osterkraenzchen.de", "include_subdomains": true, "mode": "force-https" }, 1081 { "name": "parent5446.us", "include_subdomains": true, "mode": "force-https" }, 1082 { "name": "patt.us", "include_subdomains": true, "mode": "force-https" }, 1083 { "name": "peercraft.com", "include_subdomains": true, "mode": "force-https" }, 1084 { "name": "room-checkin24.de", "include_subdomains": true, "mode": "force-https" }, 1085 { "name": "securify.nl", "include_subdomains": true, "mode": "force-https" }, 1086 { "name": "shaaaaaaaaaaaaa.com", "include_subdomains": true, "mode": "force-https" }, 1087 { "name": "shopontarget.com", "include_subdomains": true, "mode": "force-https" }, 1088 { "name": "siraweb.org", "include_subdomains": true, "mode": "force-https" }, 1089 { "name": "spdysync.com", "include_subdomains": true, "mode": "force-https" }, 1090 { "name": "sylaps.com", "include_subdomains": true, "mode": "force-https" }, 1091 { "name": "sysctl.se", "include_subdomains": true, "mode": "force-https" }, 1092 { "name": "tauchkater.de", "include_subdomains": true, "mode": "force-https" }, 1093 { "name": "theshadestore.com", "include_subdomains": true, "mode": "force-https" }, 1094 { "name": "tomvote.com", "include_subdomains": true, "mode": "force-https" }, 1095 { "name": "toshnix.com", "include_subdomains": true, "mode": "force-https" }, 1096 { "name": "warrencreative.com", "include_subdomains": true, "mode": "force-https" }, 1097 { "name": "zeplin.io", "include_subdomains": true, "mode": "force-https" }, 1098 { "name": "17hats.com", "include_subdomains": true, "mode": "force-https" }, 1099 { "name": "cdnb.co", "include_subdomains": true, "mode": "force-https" }, 1100 { "name": "github.com", "include_subdomains": true, "mode": "force-https" }, 1101 { "name": "id-co.in", "include_subdomains": true, "mode": "force-https" }, 1102 { "name": "ideaweb.de", "include_subdomains": true, "mode": "force-https" }, 1103 { "name": "man3s.jp", "include_subdomains": true, "mode": "force-https" }, 1104 { "name": "meinebo.it", "include_subdomains": true, "mode": "force-https" }, 1105 { "name": "nmctest.net", "include_subdomains": true, "mode": "force-https" }, 1106 { "name": "partyvan.eu", "include_subdomains": true, "mode": "force-https" }, 1107 { "name": "partyvan.it", "include_subdomains": true, "mode": "force-https" }, 1108 { "name": "partyvan.nl", "include_subdomains": true, "mode": "force-https" }, 1109 { "name": "partyvan.se", "include_subdomains": true, "mode": "force-https" }, 1110 { "name": "regar42.fr", "include_subdomains": true, "mode": "force-https" }, 1111 { "name": "scotthelme.co.uk", "include_subdomains": true, "mode": "force-https" }, 1112 { "name": "suite73.org", "include_subdomains": true, "mode": "force-https" }, 1113 { "name": "wubthecaptain.eu", "include_subdomains": true, "mode": "force-https" }, 1114 { "name": "1a-diamantscheiben.de", "include_subdomains": true, "mode": "force-https" }, 1115 { "name": "simplyfixit.co.uk", "include_subdomains": true, "mode": "force-https" }, 1116 { "name": "1a-vermessung.at", "include_subdomains": true, "mode": "force-https" }, 1117 { "name": "1a-werkstattgeraete.de", "include_subdomains": true, "mode": "force-https" }, 1118 { "name": "annahmeschluss.de", "include_subdomains": true, "mode": "force-https" }, 1119 { "name": "bautied.de", "include_subdomains": true, "mode": "force-https" }, 1120 { "name": "codepref.com", "include_subdomains": true, "mode": "force-https" }, 1121 { "name": "encryptallthethings.net", "include_subdomains": true, "mode": "force-https" }, 1122 { "name": "futos.de", "include_subdomains": true, "mode": "force-https" }, 1123 { "name": "jonnybarnes.uk", "include_subdomains": true, "mode": "force-https" }, 1124 { "name": "miasarafina.de", "include_subdomains": true, "mode": "force-https" }, 1125 { "name": "mothereff.in", "include_subdomains": true, "mode": "force-https" }, 1126 { "name": "mths.be", "include_subdomains": true, "mode": "force-https" }, 1127 { "name": "prefontaine.name", "include_subdomains": true, "mode": "force-https" }, 1128 { "name": "redlatam.org", "include_subdomains": true, "mode": "force-https" }, 1129 { "name": "schachburg.de", "include_subdomains": true, "mode": "force-https" }, 1130 { "name": "schreiber-netzwerk.eu", "include_subdomains": true, "mode": "force-https" }, 1131 { "name": "syss.de", "include_subdomains": true, "mode": "force-https" }, 1132 { "name": "terrax.berlin", "include_subdomains": true, "mode": "force-https" }, 1133 { "name": "tollmanz.com", "include_subdomains": true, "mode": "force-https" }, 1134 { "name": "tresorit.com", "include_subdomains": true, "mode": "force-https" }, 1135 { "name": "vaddder.com", "include_subdomains": true, "mode": "force-https" }, 1136 { "name": "wikidsystems.com", "include_subdomains": true, "mode": "force-https" }, 1137 { "name": "wohnungsbau-ludwigsburg.de", "include_subdomains": true, "mode": "force-https" }, 1138 { "name": "xtream-hosting.com", "include_subdomains": true, "mode": "force-https" }, 1139 { "name": "xtream-hosting.de", "include_subdomains": true, "mode": "force-https" }, 1140 { "name": "xtream-hosting.eu", "include_subdomains": true, "mode": "force-https" }, 1141 { "name": "xtreamhosting.eu", "include_subdomains": true, "mode": "force-https" }, 1142 { "name": "honeybadger.io", "mode": "force-https" }, 1143 { "name": "www.honeybadger.io", "mode": "force-https" }, 1144 { "name": "amigogeek.net", "include_subdomains": true, "mode": "force-https" }, 1145 { "name": "andreasbreitenlohner.de", "include_subdomains": true, "mode": "force-https" }, 1146 { "name": "aprz.de", "include_subdomains": true, "mode": "force-https" }, 1147 { "name": "arlen.io", "include_subdomains": true, "mode": "force-https" }, 1148 { "name": "bitfarm-archiv.com", "include_subdomains": true, "mode": "force-https" }, 1149 { "name": "bitfarm-archiv.de", "include_subdomains": true, "mode": "force-https" }, 1150 { "name": "bulktrade.de", "include_subdomains": true, "mode": "force-https" }, 1151 { "name": "buzzconcert.com", "include_subdomains": true, "mode": "force-https" }, 1152 { "name": "chulado.com", "include_subdomains": true, "mode": "force-https" }, 1153 { "name": "cimballa.com", "include_subdomains": true, "mode": "force-https" }, 1154 { "name": "daylightcompany.com", "include_subdomains": true, "mode": "force-https" }, 1155 { "name": "denh.am", "include_subdomains": true, "mode": "force-https" }, 1156 { "name": "devh.de", "include_subdomains": true, "mode": "force-https" }, 1157 { "name": "evstatus.com", "include_subdomains": true, "mode": "force-https" }, 1158 { "name": "filedir.com", "include_subdomains": true, "mode": "force-https" }, 1159 { "name": "frederik-braun.com", "include_subdomains": true, "mode": "force-https" }, 1160 { "name": "gplintegratedit.com", "include_subdomains": true, "mode": "force-https" }, 1161 { "name": "html5.org", "include_subdomains": true, "mode": "force-https" }, 1162 { "name": "ian.sh", "include_subdomains": true, "mode": "force-https" }, 1163 { "name": "ilikerainbows.co.uk", "include_subdomains": true, "mode": "force-https" }, 1164 { "name": "ilmconpm.de", "include_subdomains": true, "mode": "force-https" }, 1165 { "name": "inleaked.com", "include_subdomains": true, "mode": "force-https" }, 1166 { "name": "klaxn.org", "include_subdomains": true, "mode": "force-https" }, 1167 { "name": "labina.com.tr", "include_subdomains": true, "mode": "force-https" }, 1168 { "name": "liebel.org", "include_subdomains": true, "mode": "force-https" }, 1169 { "name": "luxus-russen.de", "include_subdomains": true, "mode": "force-https" }, 1170 { "name": "matteomarescotti.it", "include_subdomains": true, "mode": "force-https" }, 1171 { "name": "minikneet.com", "include_subdomains": true, "mode": "force-https" }, 1172 { "name": "minikneet.nl", "include_subdomains": true, "mode": "force-https" }, 1173 { "name": "mkcert.org", "include_subdomains": true, "mode": "force-https" }, 1174 { "name": "msc-seereisen.net", "include_subdomains": true, "mode": "force-https" }, 1175 { "name": "mykreuzfahrt.de", "include_subdomains": true, "mode": "force-https" }, 1176 { "name": "oscarvk.ch", "include_subdomains": true, "mode": "force-https" }, 1177 { "name": "plothost.com", "include_subdomains": true, "mode": "force-https" }, 1178 { "name": "reishunger.de", "include_subdomains": true, "mode": "force-https" }, 1179 { "name": "salserocafe.com", "include_subdomains": true, "mode": "force-https" }, 1180 { "name": "samizdat.cz", "include_subdomains": true, "mode": "force-https" }, 1181 { "name": "sslmate.com", "include_subdomains": true, "mode": "force-https" }, 1182 { "name": "steventress.com", "include_subdomains": true, "mode": "force-https" }, 1183 { "name": "tekshrek.com", "include_subdomains": true, "mode": "force-https" }, 1184 { "name": "temehu.com", "include_subdomains": true, "mode": "force-https" }, 1185 { "name": "tobias-kluge.de", "include_subdomains": true, "mode": "force-https" }, 1186 { "name": "vortexhobbies.com", "include_subdomains": true, "mode": "force-https" }, 1187 { "name": "willnorris.com", "include_subdomains": true, "mode": "force-https" }, 1188 { "name": "mykolab.com", "include_subdomains": true, "mode": "force-https" }, 1189 { "name": "semenkovich.com", "include_subdomains": true, "mode": "force-https" }, 1190 { "name": "rme.li", "mode": "force-https" }, 1191 { "name": "www.rme.li", "mode": "force-https" }, 1192 { "name": "aiticon.com", "include_subdomains": true, "mode": "force-https" }, 1193 { "name": "aiticon.de", "include_subdomains": true, "mode": "force-https" }, 1194 { "name": "anetaben.nl", "include_subdomains": true, "mode": "force-https" }, 1195 { "name": "annevankesteren.com", "include_subdomains": true, "mode": "force-https" }, 1196 { "name": "annevankesteren.nl", "include_subdomains": true, "mode": "force-https" }, 1197 { "name": "annevankesteren.org", "include_subdomains": true, "mode": "force-https" }, 1198 { "name": "barslecht.com", "include_subdomains": true, "mode": "force-https" }, 1199 { "name": "barslecht.nl", "include_subdomains": true, "mode": "force-https" }, 1200 { "name": "blessnet.jp", "include_subdomains": true, "mode": "force-https" }, 1201 { "name": "cloudstoragemaus.com", "include_subdomains": true, "mode": "force-https" }, 1202 { "name": "comdurav.com", "include_subdomains": true, "mode": "force-https" }, 1203 { "name": "digitaldaddy.net", "include_subdomains": true, "mode": "force-https" }, 1204 { "name": "eldietista.es", "include_subdomains": true, "mode": "force-https" }, 1205 { "name": "elnutricionista.es", "include_subdomains": true, "mode": "force-https" }, 1206 { "name": "fronteers.nl", "include_subdomains": true, "mode": "force-https" }, 1207 { "name": "getssl.uz", "include_subdomains": true, "mode": "force-https" }, 1208 { "name": "gunnarhafdal.com", "include_subdomains": true, "mode": "force-https" }, 1209 { "name": "heijblok.com", "include_subdomains": true, "mode": "force-https" }, 1210 { "name": "kdex.de", "include_subdomains": true, "mode": "force-https" }, 1211 { "name": "limpid.nl", "include_subdomains": true, "mode": "force-https" }, 1212 { "name": "minez-nightswatch.com", "include_subdomains": true, "mode": "force-https" }, 1213 { "name": "pisidia.de", "include_subdomains": true, "mode": "force-https" }, 1214 { "name": "quuz.org", "include_subdomains": true, "mode": "force-https" }, 1215 { "name": "sale4ru.ru", "include_subdomains": true, "mode": "force-https" }, 1216 { "name": "shipard.com", "include_subdomains": true, "mode": "force-https" }, 1217 { "name": "shohruh.uz", "include_subdomains": true, "mode": "force-https" }, 1218 { "name": "sro.center", "include_subdomains": true, "mode": "force-https" }, 1219 { "name": "standardssuck.org", "include_subdomains": true, "mode": "force-https" }, 1220 { "name": "testsuite.org", "include_subdomains": true, "mode": "force-https" }, 1221 { "name": "thecustomizewindows.com", "include_subdomains": true, "mode": "force-https" }, 1222 { "name": "uzstyle.com", "include_subdomains": true, "mode": "force-https" }, 1223 { "name": "weggeweest.nl", "include_subdomains": true, "mode": "force-https" }, 1224 { "name": "whatwg.org", "include_subdomains": true, "mode": "force-https" }, 1225 { "name": "when-release.ru", "include_subdomains": true, "mode": "force-https" }, 1226 { "name": "xn--maraa-rta.org", "include_subdomains": true, "mode": "force-https" }, 1227 { "name": "otakurepublic.com", "include_subdomains": true, "mode": "force-https" }, 1228 { "name": "mqas.net", "include_subdomains": true, "mode": "force-https" }, 1229 { "name": "dlc.viasinc.com", "include_subdomains": true, "mode": "force-https" }, 1230 { "name": "www.viasinc.com", "include_subdomains": true, "mode": "force-https" }, 1231 { "name": "viasinc.com", "mode": "force-https" } 1232 ] 1233 } 1234