Skip to content

Instantly share code, notes, and snippets.

@konklone
Last active May 21, 2018 10:57
Show Gist options
  • Save konklone/73e871fef6e54b5c87f8 to your computer and use it in GitHub Desktop.
Save konklone/73e871fef6e54b5c87f8 to your computer and use it in GitHub Desktop.
Script that detects government domains in Chrome's HSTS preload list.
#!/usr/bin/env ruby
# Script by Eric Mill to detect government domains in the Chrome HSTS Preload list.
#
# The Chrome HSTS Preload list is a hardcoded set of domains for which the browser
# will *only* ever access the site using HTTPS. If an http:// link to that site is
# encountered, the browser will just rewrite the URL to https:// before following
# it.
#
# This list is also incorporated into Firefox and Safari, making it a nice list to
# be on.
#
# "Second-level" domains (e.g. agency.gov, website.com) can be submitted to the list
# automatically, using the submission form at https://hstspreload.appspot.com. The
# domain must use the HSTS header, with the `includeSubdomains` flag included.
#
# Third- or fourth-level domains (e.g. 18f.gsa.gov, eric.mill.usesthis.com) must
# be emailed to the Chrome team directly, and added manually.
#
# In October 2014, 18F submitted 18f.gsa.gov and my.usa.gov to the Chrome HSTS
# Preload list, making them the first US government domains in the list. There are
# 3 domains from other governments: 1 from the UK, and 2 from Australia.
# Super-fast JSON parser.
require 'oj'
# Gman is Ben Balter's library to verify whether an email address
# is a government email address or not. This is used inside GitHub
# to determine whether or not user accounts are government users.
require 'gman'
# chrome.json is a snapshot of the "entries" field of the Chrome HSTS list at:
# https://chromium.googlesource.com/chromium/src/+/master/net/http/transport_security_state_static.json
entries = Oj.load(File.read("chrome.json"))
hsts_domains = entries.
# limit it to entries that are forcing HTTPS (ignore public key pins)
select {|e| e['mode'] == "force-https"}.
# get a list of just the domain names
map {|e| e['name']}
# Match each domain against Gman using a fake 18f@ email address.
matches = hsts_domains.select {|h| Gman.valid?("18f@#{h}")}
# As of 2014-11-09:
#
# [
# "www.gov.uk",
# "data.qld.gov.au",
# "publications.qld.gov.au",
# "18f.gsa.gov",
# "my.usa.gov"
# ]
[
{ "name": "pinningtest.appspot.com", "include_subdomains": true, "pins": "test" },
{ "name": "google.com", "include_subdomains": true, "pins": "google" },
{ "name": "wallet.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "checkout.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "chrome.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "docs.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "domains.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "sites.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "spreadsheets.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "appengine.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "encrypted.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "accounts.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "profiles.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "mail.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "inbox.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "talkgadget.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "talk.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "hostedtalkgadget.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "plus.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "plus.sandbox.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "script.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "history.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "security.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "goto.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "cloud.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "glass.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "admin.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "login.corp.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "play.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "passwords.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "gmail.com", "mode": "force-https", "pins": "google" },
{ "name": "googlemail.com", "mode": "force-https", "pins": "google" },
{ "name": "www.gmail.com", "mode": "force-https", "pins": "google" },
{ "name": "www.googlemail.com", "mode": "force-https", "pins": "google" },
{ "name": "market.android.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "ssl.google-analytics.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "drive.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "googleplex.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "groups.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "apis.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "chromiumcodereview.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "chrome-devtools-frontend.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "codereview.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "codereview.chromium.org", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "code.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "googlecode.com", "include_subdomains": true, "pins": "google" },
{ "name": "dl.google.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "translate.googleapis.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "webfilings.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "webfilings-mirror-hrd.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "webfilings-eu.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "webfilings-eu-mirror.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "wf-demo-eu.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "wf-demo-hrd.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "wf-pentest.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "wf-trial-hrd.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "xbrlsuccess.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "w-spotlight.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "wf-training-hrd.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "wf-bigsky-master.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "wf-staging-hr.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "wf-training-master.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "wf-dogfood-hrd.appspot.com", "include_subdomains": true, "mode": "force-https", "pins": "google" },
{ "name": "chart.apis.google.com", "include_subdomains": true, "pins": "google" },
{ "name": "google-analytics.com", "include_subdomains": true, "pins": "google" },
{ "name": "googlegroups.com", "include_subdomains": true, "pins": "google" },
{ "name": "ytimg.com", "include_subdomains": true, "pins": "google" },
{ "name": "googleusercontent.com", "include_subdomains": true, "pins": "google" },
{ "name": "youtube.com", "include_subdomains": true, "pins": "google" },
{ "name": "youtube-nocookie.com", "include_subdomains": true, "pins": "google" },
{ "name": "googleapis.com", "include_subdomains": true, "pins": "google" },
{ "name": "googleadservices.com", "include_subdomains": true, "pins": "google" },
{ "name": "appspot.com", "include_subdomains": true, "pins": "google" },
{ "name": "googlesyndication.com", "include_subdomains": true, "pins": "google" },
{ "name": "doubleclick.net", "include_subdomains": true, "pins": "google" },
{ "name": "2mdn.net", "include_subdomains": true, "pins": "google" },
{ "name": "gstatic.com", "include_subdomains": true, "pins": "google" },
{ "name": "youtu.be", "include_subdomains": true, "pins": "google" },
{ "name": "android.com", "include_subdomains": true, "pins": "google" },
{ "name": "googlecommerce.com", "include_subdomains": true, "pins": "google" },
{ "name": "urchin.com", "include_subdomains": true, "pins": "google" },
{ "name": "goo.gl", "include_subdomains": true, "pins": "google" },
{ "name": "g.co", "include_subdomains": true, "pins": "google" },
{ "name": "googletagmanager.com", "include_subdomains": true, "pins": "google" },
{ "name": "googletagservices.com", "include_subdomains": true, "pins": "google" },
{ "name": "google.ac", "include_subdomains": true, "pins": "google" },
{ "name": "google.ad", "include_subdomains": true, "pins": "google" },
{ "name": "google.ae", "include_subdomains": true, "pins": "google" },
{ "name": "google.af", "include_subdomains": true, "pins": "google" },
{ "name": "google.ag", "include_subdomains": true, "pins": "google" },
{ "name": "google.am", "include_subdomains": true, "pins": "google" },
{ "name": "google.as", "include_subdomains": true, "pins": "google" },
{ "name": "google.at", "include_subdomains": true, "pins": "google" },
{ "name": "google.az", "include_subdomains": true, "pins": "google" },
{ "name": "google.ba", "include_subdomains": true, "pins": "google" },
{ "name": "google.be", "include_subdomains": true, "pins": "google" },
{ "name": "google.bf", "include_subdomains": true, "pins": "google" },
{ "name": "google.bg", "include_subdomains": true, "pins": "google" },
{ "name": "google.bi", "include_subdomains": true, "pins": "google" },
{ "name": "google.bj", "include_subdomains": true, "pins": "google" },
{ "name": "google.bs", "include_subdomains": true, "pins": "google" },
{ "name": "google.by", "include_subdomains": true, "pins": "google" },
{ "name": "google.ca", "include_subdomains": true, "pins": "google" },
{ "name": "google.cat", "include_subdomains": true, "pins": "google" },
{ "name": "google.cc", "include_subdomains": true, "pins": "google" },
{ "name": "google.cd", "include_subdomains": true, "pins": "google" },
{ "name": "google.cf", "include_subdomains": true, "pins": "google" },
{ "name": "google.cg", "include_subdomains": true, "pins": "google" },
{ "name": "google.ch", "include_subdomains": true, "pins": "google" },
{ "name": "google.ci", "include_subdomains": true, "pins": "google" },
{ "name": "google.cl", "include_subdomains": true, "pins": "google" },
{ "name": "google.cm", "include_subdomains": true, "pins": "google" },
{ "name": "google.cn", "include_subdomains": true, "pins": "google" },
{ "name": "google.co.ao", "include_subdomains": true, "pins": "google" },
{ "name": "google.co.bw", "include_subdomains": true, "pins": "google" },
{ "name": "google.co.ck", "include_subdomains": true, "pins": "google" },
{ "name": "google.co.cr", "include_subdomains": true, "pins": "google" },
{ "name": "google.co.hu", "include_subdomains": true, "pins": "google" },
{ "name": "google.co.id", "include_subdomains": true, "pins": "google" },
{ "name": "google.co.il", "include_subdomains": true, "pins": "google" },
{ "name": "google.co.im", "include_subdomains": true, "pins": "google" },
{ "name": "google.co.in", "include_subdomains": true, "pins": "google" },
{ "name": "google.co.je", "include_subdomains": true, "pins": "google" },
{ "name": "google.co.jp", "include_subdomains": true, "pins": "google" },
{ "name": "google.co.ke", "include_subdomains": true, "pins": "google" },
{ "name": "google.co.kr", "include_subdomains": true, "pins": "google" },
{ "name": "google.co.ls", "include_subdomains": true, "pins": "google" },
{ "name": "google.co.ma", "include_subdomains": true, "pins": "google" },
{ "name": "google.co.mz", "include_subdomains": true, "pins": "google" },
{ "name": "google.co.nz", "include_subdomains": true, "pins": "google" },
{ "name": "google.co.th", "include_subdomains": true, "pins": "google" },
{ "name": "google.co.tz", "include_subdomains": true, "pins": "google" },
{ "name": "google.co.ug", "include_subdomains": true, "pins": "google" },
{ "name": "google.co.uk", "include_subdomains": true, "pins": "google" },
{ "name": "google.co.uz", "include_subdomains": true, "pins": "google" },
{ "name": "google.co.ve", "include_subdomains": true, "pins": "google" },
{ "name": "google.co.vi", "include_subdomains": true, "pins": "google" },
{ "name": "google.co.za", "include_subdomains": true, "pins": "google" },
{ "name": "google.co.zm", "include_subdomains": true, "pins": "google" },
{ "name": "google.co.zw", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.af", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.ag", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.ai", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.ar", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.au", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.bd", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.bh", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.bn", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.bo", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.br", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.by", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.bz", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.cn", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.co", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.cu", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.cy", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.do", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.ec", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.eg", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.et", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.fj", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.ge", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.gh", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.gi", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.gr", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.gt", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.hk", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.iq", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.jm", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.jo", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.kh", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.kw", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.lb", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.ly", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.mt", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.mx", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.my", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.na", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.nf", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.ng", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.ni", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.np", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.nr", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.om", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.pa", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.pe", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.ph", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.pk", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.pl", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.pr", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.py", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.qa", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.ru", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.sa", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.sb", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.sg", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.sl", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.sv", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.tj", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.tn", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.tr", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.tw", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.ua", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.uy", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.vc", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.ve", "include_subdomains": true, "pins": "google" },
{ "name": "google.com.vn", "include_subdomains": true, "pins": "google" },
{ "name": "google.cv", "include_subdomains": true, "pins": "google" },
{ "name": "google.cz", "include_subdomains": true, "pins": "google" },
{ "name": "google.de", "include_subdomains": true, "pins": "google" },
{ "name": "google.dj", "include_subdomains": true, "pins": "google" },
{ "name": "google.dk", "include_subdomains": true, "pins": "google" },
{ "name": "google.dm", "include_subdomains": true, "pins": "google" },
{ "name": "google.dz", "include_subdomains": true, "pins": "google" },
{ "name": "google.ee", "include_subdomains": true, "pins": "google" },
{ "name": "google.es", "include_subdomains": true, "pins": "google" },
{ "name": "google.fi", "include_subdomains": true, "pins": "google" },
{ "name": "google.fm", "include_subdomains": true, "pins": "google" },
{ "name": "google.fr", "include_subdomains": true, "pins": "google" },
{ "name": "google.ga", "include_subdomains": true, "pins": "google" },
{ "name": "google.ge", "include_subdomains": true, "pins": "google" },
{ "name": "google.gg", "include_subdomains": true, "pins": "google" },
{ "name": "google.gl", "include_subdomains": true, "pins": "google" },
{ "name": "google.gm", "include_subdomains": true, "pins": "google" },
{ "name": "google.gp", "include_subdomains": true, "pins": "google" },
{ "name": "google.gr", "include_subdomains": true, "pins": "google" },
{ "name": "google.gy", "include_subdomains": true, "pins": "google" },
{ "name": "google.hk", "include_subdomains": true, "pins": "google" },
{ "name": "google.hn", "include_subdomains": true, "pins": "google" },
{ "name": "google.hr", "include_subdomains": true, "pins": "google" },
{ "name": "google.ht", "include_subdomains": true, "pins": "google" },
{ "name": "google.hu", "include_subdomains": true, "pins": "google" },
{ "name": "google.ie", "include_subdomains": true, "pins": "google" },
{ "name": "google.im", "include_subdomains": true, "pins": "google" },
{ "name": "google.info", "include_subdomains": true, "pins": "google" },
{ "name": "google.iq", "include_subdomains": true, "pins": "google" },
{ "name": "google.is", "include_subdomains": true, "pins": "google" },
{ "name": "google.it", "include_subdomains": true, "pins": "google" },
{ "name": "google.it.ao", "include_subdomains": true, "pins": "google" },
{ "name": "google.je", "include_subdomains": true, "pins": "google" },
{ "name": "google.jo", "include_subdomains": true, "pins": "google" },
{ "name": "google.jobs", "include_subdomains": true, "pins": "google" },
{ "name": "google.jp", "include_subdomains": true, "pins": "google" },
{ "name": "google.kg", "include_subdomains": true, "pins": "google" },
{ "name": "google.ki", "include_subdomains": true, "pins": "google" },
{ "name": "google.kz", "include_subdomains": true, "pins": "google" },
{ "name": "google.la", "include_subdomains": true, "pins": "google" },
{ "name": "google.li", "include_subdomains": true, "pins": "google" },
{ "name": "google.lk", "include_subdomains": true, "pins": "google" },
{ "name": "google.lt", "include_subdomains": true, "pins": "google" },
{ "name": "google.lu", "include_subdomains": true, "pins": "google" },
{ "name": "google.lv", "include_subdomains": true, "pins": "google" },
{ "name": "google.md", "include_subdomains": true, "pins": "google" },
{ "name": "google.me", "include_subdomains": true, "pins": "google" },
{ "name": "google.mg", "include_subdomains": true, "pins": "google" },
{ "name": "google.mk", "include_subdomains": true, "pins": "google" },
{ "name": "google.ml", "include_subdomains": true, "pins": "google" },
{ "name": "google.mn", "include_subdomains": true, "pins": "google" },
{ "name": "google.ms", "include_subdomains": true, "pins": "google" },
{ "name": "google.mu", "include_subdomains": true, "pins": "google" },
{ "name": "google.mv", "include_subdomains": true, "pins": "google" },
{ "name": "google.mw", "include_subdomains": true, "pins": "google" },
{ "name": "google.ne", "include_subdomains": true, "pins": "google" },
{ "name": "google.ne.jp", "include_subdomains": true, "pins": "google" },
{ "name": "google.net", "include_subdomains": true, "pins": "google" },
{ "name": "google.nl", "include_subdomains": true, "pins": "google" },
{ "name": "google.no", "include_subdomains": true, "pins": "google" },
{ "name": "google.nr", "include_subdomains": true, "pins": "google" },
{ "name": "google.nu", "include_subdomains": true, "pins": "google" },
{ "name": "google.off.ai", "include_subdomains": true, "pins": "google" },
{ "name": "google.pk", "include_subdomains": true, "pins": "google" },
{ "name": "google.pl", "include_subdomains": true, "pins": "google" },
{ "name": "google.pn", "include_subdomains": true, "pins": "google" },
{ "name": "google.ps", "include_subdomains": true, "pins": "google" },
{ "name": "google.pt", "include_subdomains": true, "pins": "google" },
{ "name": "google.ro", "include_subdomains": true, "pins": "google" },
{ "name": "google.rs", "include_subdomains": true, "pins": "google" },
{ "name": "google.ru", "include_subdomains": true, "pins": "google" },
{ "name": "google.rw", "include_subdomains": true, "pins": "google" },
{ "name": "google.sc", "include_subdomains": true, "pins": "google" },
{ "name": "google.se", "include_subdomains": true, "pins": "google" },
{ "name": "google.sh", "include_subdomains": true, "pins": "google" },
{ "name": "google.si", "include_subdomains": true, "pins": "google" },
{ "name": "google.sk", "include_subdomains": true, "pins": "google" },
{ "name": "google.sm", "include_subdomains": true, "pins": "google" },
{ "name": "google.sn", "include_subdomains": true, "pins": "google" },
{ "name": "google.so", "include_subdomains": true, "pins": "google" },
{ "name": "google.st", "include_subdomains": true, "pins": "google" },
{ "name": "google.td", "include_subdomains": true, "pins": "google" },
{ "name": "google.tg", "include_subdomains": true, "pins": "google" },
{ "name": "google.tk", "include_subdomains": true, "pins": "google" },
{ "name": "google.tl", "include_subdomains": true, "pins": "google" },
{ "name": "google.tm", "include_subdomains": true, "pins": "google" },
{ "name": "google.tn", "include_subdomains": true, "pins": "google" },
{ "name": "google.to", "include_subdomains": true, "pins": "google" },
{ "name": "google.tt", "include_subdomains": true, "pins": "google" },
{ "name": "google.us", "include_subdomains": true, "pins": "google" },
{ "name": "google.uz", "include_subdomains": true, "pins": "google" },
{ "name": "google.vg", "include_subdomains": true, "pins": "google" },
{ "name": "google.vu", "include_subdomains": true, "pins": "google" },
{ "name": "google.ws", "include_subdomains": true, "pins": "google" },
{ "name": "learn.doubleclick.net", "include_subdomains": true },
{ "name": "www.paypal.com", "mode": "force-https" },
{ "name": "paypal.com", "mode": "force-https" },
{ "name": "www.elanex.biz", "mode": "force-https" },
{ "name": "jottit.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "sunshinepress.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "www.noisebridge.net", "mode": "force-https" },
{ "name": "neg9.org", "mode": "force-https" },
{ "name": "riseup.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "factor.cc", "mode": "force-https" },
{ "name": "members.mayfirst.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "support.mayfirst.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "id.mayfirst.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "lists.mayfirst.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "webmail.mayfirst.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "roundcube.mayfirst.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "aladdinschools.appspot.com", "mode": "force-https" },
{ "name": "ottospora.nl", "include_subdomains": true, "mode": "force-https" },
{ "name": "www.paycheckrecords.com", "mode": "force-https" },
{ "name": "lastpass.com", "mode": "force-https" },
{ "name": "www.lastpass.com", "mode": "force-https" },
{ "name": "keyerror.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "entropia.de", "mode": "force-https" },
{ "name": "www.entropia.de", "mode": "force-https" },
{ "name": "romab.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "logentries.com", "mode": "force-https" },
{ "name": "www.logentries.com", "mode": "force-https" },
{ "name": "stripe.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "cloudsecurityalliance.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "login.sapo.pt", "include_subdomains": true, "mode": "force-https" },
{ "name": "mattmccutchen.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "betnet.fr", "include_subdomains": true, "mode": "force-https" },
{ "name": "uprotect.it", "include_subdomains": true, "mode": "force-https" },
{ "name": "squareup.com", "mode": "force-https" },
{ "name": "square.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "cert.se", "include_subdomains": true, "mode": "force-https" },
{ "name": "crypto.is", "include_subdomains": true, "mode": "force-https" },
{ "name": "simon.butcher.name", "include_subdomains": true, "mode": "force-https" },
{ "name": "linx.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "dropcam.com", "mode": "force-https" },
{ "name": "www.dropcam.com", "mode": "force-https" },
{ "name": "ebanking.indovinabank.com.vn", "include_subdomains": true, "mode": "force-https" },
{ "name": "epoxate.com", "mode": "force-https" },
{ "name": "torproject.org", "mode": "force-https", "pins": "tor" },
{ "name": "blog.torproject.org", "include_subdomains": true, "mode": "force-https", "pins": "tor" },
{ "name": "check.torproject.org", "include_subdomains": true, "mode": "force-https", "pins": "tor" },
{ "name": "www.torproject.org", "include_subdomains": true, "mode": "force-https", "pins": "tor" },
{ "name": "dist.torproject.org", "include_subdomains": true, "mode": "force-https", "pins": "tor" },
{ "name": "www.moneybookers.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "ledgerscope.net", "mode": "force-https" },
{ "name": "www.ledgerscope.net", "mode": "force-https" },
{ "name": "app.recurly.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "api.recurly.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "greplin.com", "mode": "force-https" },
{ "name": "www.greplin.com", "mode": "force-https" },
{ "name": "luneta.nearbuysystems.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "ubertt.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "pixi.me", "include_subdomains": true, "mode": "force-https" },
{ "name": "grepular.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "mydigipass.com", "mode": "force-https" },
{ "name": "www.mydigipass.com", "mode": "force-https" },
{ "name": "developer.mydigipass.com", "mode": "force-https" },
{ "name": "www.developer.mydigipass.com", "mode": "force-https" },
{ "name": "sandbox.mydigipass.com", "mode": "force-https" },
{ "name": "www.sandbox.mydigipass.com", "mode": "force-https" },
{ "name": "crypto.cat", "mode": "force-https", "pins": "cryptoCat" },
{ "name": "bigshinylock.minazo.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "crate.io", "include_subdomains": true, "mode": "force-https" },
{ "name": "twitter.com", "mode": "force-https", "pins": "twitterCom" },
{ "name": "www.twitter.com", "include_subdomains": true, "mode": "force-https", "pins": "twitterCom" },
{ "name": "api.twitter.com", "include_subdomains": true, "pins": "twitterCDN" },
{ "name": "oauth.twitter.com", "include_subdomains": true, "pins": "twitterCom" },
{ "name": "mobile.twitter.com", "include_subdomains": true, "pins": "twitterCom" },
{ "name": "dev.twitter.com", "include_subdomains": true, "pins": "twitterCom" },
{ "name": "business.twitter.com", "include_subdomains": true, "pins": "twitterCom" },
{ "name": "platform.twitter.com", "include_subdomains": true, "pins": "twitterCDN" },
{ "name": "twimg.com", "include_subdomains": true, "pins": "twitterCDN" },
{ "name": "braintreegateway.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "braintreepayments.com", "mode": "force-https" },
{ "name": "www.braintreepayments.com", "mode": "force-https" },
{ "name": "emailprivacytester.com", "mode": "force-https" },
{ "name": "tor2web.org", "include_subdomains": true, "pins": "tor2web" },
{ "name": "business.medbank.com.mt", "include_subdomains": true, "mode": "force-https" },
{ "name": "arivo.com.br", "include_subdomains": true, "mode": "force-https" },
{ "name": "www.apollo-auto.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "www.cueup.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "jitsi.org", "mode": "force-https" },
{ "name": "www.jitsi.org", "mode": "force-https" },
{ "name": "download.jitsi.org", "mode": "force-https" },
{ "name": "sol.io", "include_subdomains": true, "mode": "force-https" },
{ "name": "irccloud.com", "mode": "force-https" },
{ "name": "www.irccloud.com", "mode": "force-https" },
{ "name": "alpha.irccloud.com", "mode": "force-https" },
{ "name": "passwd.io", "include_subdomains": true, "mode": "force-https" },
{ "name": "browserid.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "login.persona.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "neonisi.com", "mode": "force-https" },
{ "name": "www.neonisi.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "shops.neonisi.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "piratenlogin.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "howrandom.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "intercom.io", "mode": "force-https" },
{ "name": "api.intercom.io", "mode": "force-https" },
{ "name": "www.intercom.io", "mode": "force-https" },
{ "name": "fatzebra.com.au", "include_subdomains": true, "mode": "force-https" },
{ "name": "csawctf.poly.edu", "include_subdomains": true, "mode": "force-https" },
{ "name": "makeyourlaws.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "www.makeyourlaws.org", "mode": "force-https" },
{ "name": "iop.intuit.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "surfeasy.com", "mode": "force-https" },
{ "name": "www.surfeasy.com", "mode": "force-https" },
{ "name": "packagist.org", "mode": "force-https" },
{ "name": "lookout.com", "mode": "force-https" },
{ "name": "www.lookout.com", "mode": "force-https" },
{ "name": "mylookout.com", "mode": "force-https" },
{ "name": "www.mylookout.com", "mode": "force-https" },
{ "name": "dm.lookout.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "business.lookout.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "blog.lookout.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "faq.lookout.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "platform.lookout.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "email.lookout.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "app.lookout.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "api.lookout.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "keymaster.lookout.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "mygadgetguardian.lookout.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "discovery.lookout.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "mobilethreat.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "mobilethreatnetwork.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "itriskltd.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "stocktrade.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "openshift.redhat.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "therapynotes.com", "mode": "force-https" },
{ "name": "www.therapynotes.com", "mode": "force-https" },
{ "name": "wiz.biz", "include_subdomains": true, "mode": "force-https" },
{ "name": "my.onlime.ch", "include_subdomains": true, "mode": "force-https" },
{ "name": "webmail.onlime.ch", "include_subdomains": true, "mode": "force-https" },
{ "name": "crm.onlime.ch", "include_subdomains": true, "mode": "force-https" },
{ "name": "www.gov.uk", "include_subdomains": true, "mode": "force-https" },
{ "name": "silentcircle.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "silentcircle.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "serverdensity.io", "include_subdomains": true, "mode": "force-https" },
{ "name": "my.alfresco.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "webmail.gigahost.dk", "include_subdomains": true, "mode": "force-https" },
{ "name": "paymill.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "paymill.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "gocardless.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "espra.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "zoo24.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "mega.co.nz", "mode": "force-https" },
{ "name": "api.mega.co.nz", "include_subdomains": true, "mode": "force-https" },
{ "name": "lockify.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "writeapp.me", "mode": "force-https" },
{ "name": "bugzilla.mozilla.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "members.nearlyfreespeech.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "ssl.panoramio.com", "mode": "force-https" },
{ "name": "kiwiirc.com", "mode": "force-https" },
{ "name": "pay.gigahost.dk", "include_subdomains": true, "mode": "force-https" },
{ "name": "controlcenter.gigahost.dk", "include_subdomains": true, "mode": "force-https" },
{ "name": "simple.com", "mode": "force-https" },
{ "name": "www.simple.com", "mode": "force-https" },
{ "name": "fj.simple.com", "mode": "force-https" },
{ "name": "api.simple.com", "mode": "force-https" },
{ "name": "bank.simple.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "bassh.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "sah3.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "grc.com", "mode": "force-https" },
{ "name": "www.grc.com", "mode": "force-https" },
{ "name": "linode.com", "mode": "force-https" },
{ "name": "www.linode.com", "mode": "force-https" },
{ "name": "manager.linode.com", "mode": "force-https" },
{ "name": "blog.linode.com", "mode": "force-https" },
{ "name": "library.linode.com", "mode": "force-https" },
{ "name": "forum.linode.com", "mode": "force-https" },
{ "name": "p.linode.com", "mode": "force-https" },
{ "name": "paste.linode.com", "mode": "force-https" },
{ "name": "pastebin.linode.com", "mode": "force-https" },
{ "name": "inertianetworks.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "carezone.com", "mode": "force-https" },
{ "name": "conformal.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "cyphertite.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "logotype.se", "include_subdomains": true, "mode": "force-https" },
{ "name": "bccx.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "launchkey.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "carlolly.co.uk", "include_subdomains": true, "mode": "force-https" },
{ "name": "www.cyveillance.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "blog.cyveillance.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "whonix.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "shodan.io", "include_subdomains": true, "mode": "force-https" },
{ "name": "rapidresearch.me", "include_subdomains": true, "mode": "force-https" },
{ "name": "surkatty.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "securityheaders.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "haste.ch", "include_subdomains": true, "mode": "force-https" },
{ "name": "mudcrab.us", "include_subdomains": true, "mode": "force-https" },
{ "name": "mediacru.sh", "include_subdomains": true, "mode": "force-https" },
{ "name": "lolicore.ch", "include_subdomains": true, "mode": "force-https" },
{ "name": "cloudns.com.au", "include_subdomains": true, "mode": "force-https" },
{ "name": "oplop.appspot.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "bcrook.com", "mode": "force-https" },
{ "name": "wiki.python.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "lumi.do", "mode": "force-https" },
{ "name": "appseccalifornia.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "crowdcurity.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "saturngames.co.uk", "include_subdomains": true, "mode": "force-https" },
{ "name": "strongest-privacy.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "ecosystem.atlassian.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "id.atlassian.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "bitbucket.org", "mode": "force-https" },
{ "name": "cupcake.io", "include_subdomains": true, "mode": "force-https" },
{ "name": "cupcake.is", "include_subdomains": true, "mode": "force-https" },
{ "name": "tent.io", "include_subdomains": true, "mode": "force-https" },
{ "name": "cybozu.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "davidlyness.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "medium.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "liberty.lavabit.com", "include_subdomains": true, "mode": "force-https", "pins": "lavabit" },
{ "name": "getlantern.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "kinsights.com", "mode": "force-https" },
{ "name": "simbolo.co.uk", "mode": "force-https" },
{ "name": "www.simbolo.co.uk", "mode": "force-https" },
{ "name": "zenpayroll.com", "mode": "force-https" },
{ "name": "www.zenpayroll.com", "mode": "force-https" },
{ "name": "get.zenpayroll.com", "mode": "force-https" },
{ "name": "errors.zenpayroll.com", "mode": "force-https" },
{ "name": "manage.zenpayroll.com", "mode": "force-https" },
{ "name": "gernert-server.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "skydrive.live.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "lifeguard.aecom.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "data.qld.gov.au", "mode": "force-https" },
{ "name": "publications.qld.gov.au", "mode": "force-https" },
{ "name": "go.xero.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "login.xero.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "my.xero.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "payroll.xero.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "in.xero.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "api.xero.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "eff.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "mail.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "passport.yandex.ru", "mode": "force-https" },
{ "name": "passport.yandex.com", "mode": "force-https" },
{ "name": "passport.yandex.ua", "mode": "force-https" },
{ "name": "passport.yandex.by", "mode": "force-https" },
{ "name": "passport.yandex.kz", "mode": "force-https" },
{ "name": "passport.yandex.com.tr", "mode": "force-https" },
{ "name": "mnsure.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "getcloak.com", "mode": "force-https" },
{ "name": "www.getcloak.com", "mode": "force-https" },
{ "name": "www.heliosnet.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "opsmate.com", "mode": "force-https" },
{ "name": "www.opsmate.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "f-droid.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "www.evernote.com", "mode": "force-https" },
{ "name": "app.yinxiang.com", "mode": "force-https" },
{ "name": "neilwynne.com", "mode": "force-https" },
{ "name": "calyxinstitute.org", "mode": "force-https" },
{ "name": "www.calyxinstitute.org", "mode": "force-https" },
{ "name": "blacklane.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "boxcryptor.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "aclu.org", "mode": "force-https" },
{ "name": "www.aclu.org", "mode": "force-https" },
{ "name": "prodpad.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "mailbox.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "roddis.net", "mode": "force-https" },
{ "name": "www.roddis.net", "mode": "force-https" },
{ "name": "fiken.no", "include_subdomains": true, "mode": "force-https" },
{ "name": "fairbill.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "nexth.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "nexth.us", "include_subdomains": true, "mode": "force-https" },
{ "name": "nexth.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "souyar.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "souyar.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "souyar.us", "include_subdomains": true, "mode": "force-https" },
{ "name": "www.banking.co.at", "mode": "force-https" },
{ "name": "mbp.banking.co.at", "mode": "force-https" },
{ "name": "feedbin.com", "mode": "force-https" },
{ "name": "heha.co", "include_subdomains": true, "mode": "force-https" },
{ "name": "passwordbox.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "python.org", "mode": "force-https" },
{ "name": "pypi.python.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "www.python.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "docs.python.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "encircleapp.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "onedrive.live.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "onedrive.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "keepersecurity.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "keeperapp.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "donmez.ws", "include_subdomains": true, "mode": "force-https" },
{ "name": "activiti.alfresco.com", "mode": "force-https" },
{ "name": "cloudcert.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "seifried.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "wepay.com", "mode": "force-https" },
{ "name": "www.wepay.com", "mode": "force-https" },
{ "name": "static.wepay.com", "mode": "force-https" },
{ "name": "stage.wepay.com", "mode": "force-https" },
{ "name": "vmoagents.com", "mode": "force-https" },
{ "name": "adsfund.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "pult.co", "mode": "force-https" },
{ "name": "dillonkorman.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "edmodo.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "www.eternalgoth.co.uk", "mode": "force-https" },
{ "name": "app.manilla.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "harvestapp.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "anycoin.me", "include_subdomains": true, "mode": "force-https" },
{ "name": "noexpect.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "airbnb.com", "mode": "force-https" },
{ "name": "www.airbnb.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "usaa.com", "mode": "force-https" },
{ "name": "www.usaa.com", "mode": "force-https" },
{ "name": "mobile.usaa.com", "mode": "force-https" },
{ "name": "subrosa.io", "include_subdomains": true, "mode": "force-https" },
{ "name": "detectify.com", "mode": "force-https" },
{ "name": "crbug.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "manageprojects.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "tinfoilsecurity.com", "mode": "force-https" },
{ "name": "www.tinfoilsecurity.com", "mode": "force-https" },
{ "name": "imouto.my", "mode": "force-https" },
{ "name": "vocaloid.my", "include_subdomains": true, "mode": "force-https" },
{ "name": "sakaki.anime.my", "include_subdomains": true, "mode": "force-https" },
{ "name": "reviews.anime.my", "include_subdomains": true, "mode": "force-https" },
{ "name": "miku.hatsune.my", "include_subdomains": true, "mode": "force-https" },
{ "name": "webcollect.org.uk", "include_subdomains": true, "mode": "force-https" },
{ "name": "www.capitainetrain.com", "mode": "force-https" },
{ "name": "accounts.firefox.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "z.ai", "include_subdomains": true, "mode": "force-https" },
{ "name": "wildbee.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "portal.tirol.gv.at", "include_subdomains": true, "mode": "force-https" },
{ "name": "dropbox.com", "mode": "force-https", "pins": "dropbox" },
{ "name": "www.dropbox.com", "include_subdomains": true, "mode": "force-https", "pins": "dropbox" },
{ "name": "code-poets.co.uk", "include_subdomains": true, "mode": "force-https" },
{ "name": "jackyyf.com", "mode": "force-https" },
{ "name": "flynn.io", "include_subdomains": true, "mode": "force-https" },
{ "name": "hackerone.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "hackerone-user-content.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "gamesdepartment.co.uk", "mode": "force-https" },
{ "name": "www.gamesdepartment.co.uk", "include_subdomains": true, "mode": "force-https" },
{ "name": "schokokeks.org", "mode": "force-https" },
{ "name": "www.schokokeks.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "config.schokokeks.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "webmail.schokokeks.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "mwe.st", "include_subdomains": true, "mode": "force-https" },
{ "name": "ub3rk1tten.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "addvocate.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "alexsexton.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "azprep.us", "include_subdomains": true, "mode": "force-https" },
{ "name": "beneathvt.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "cloudup.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "cryptopartyatx.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "cybershambles.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "ed.gs", "include_subdomains": true, "mode": "force-https" },
{ "name": "forewordreviews.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "giacomopelagatti.it", "include_subdomains": true, "mode": "force-https" },
{ "name": "helichat.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "hostinginnederland.nl", "include_subdomains": true, "mode": "force-https" },
{ "name": "isitchristmas.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "konklone.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "koop-bremen.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "kura.io", "include_subdomains": true, "mode": "force-https" },
{ "name": "markusueberallassetmanagement.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "mikewest.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "miskatonic.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "optimus.io", "include_subdomains": true, "mode": "force-https" },
{ "name": "oversight.io", "include_subdomains": true, "mode": "force-https" },
{ "name": "picksin.club", "include_subdomains": true, "mode": "force-https" },
{ "name": "pressfreedomfoundation.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "projektzentrisch.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "rippleunion.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "robteix.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "s-c.se", "include_subdomains": true, "mode": "force-https" },
{ "name": "security-carpet.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "sherbers.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "tittelbach.at", "include_subdomains": true, "mode": "force-https" },
{ "name": "tomfisher.eu", "include_subdomains": true, "mode": "force-https" },
{ "name": "wunderlist.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "zotero.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "adamkostecki.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "archlinux.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "auf-feindgebiet.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "baruch.me", "include_subdomains": true, "mode": "force-https" },
{ "name": "bedeta.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "benjamins.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "bl4ckb0x.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "bl4ckb0x.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "bl4ckb0x.info", "include_subdomains": true, "mode": "force-https" },
{ "name": "bl4ckb0x.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "bl4ckb0x.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "blocksatz-medien.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "conrad-kostecki.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "cube.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "datenkeks.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "derhil.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "energy-drink-magazin.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "ferienhaus-polchow-ruegen.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "fischer-its.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "freeshell.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "greensolid.biz", "include_subdomains": true, "mode": "force-https" },
{ "name": "hasilocke.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "hausverbrauch.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "helpium.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "hex2013.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "honeytracks.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "ihrlotto.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "jonas-keidel.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "jonaswitmer.ch", "include_subdomains": true, "mode": "force-https" },
{ "name": "k-dev.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "kraken.io", "include_subdomains": true, "mode": "force-https" },
{ "name": "lagerauftrag.info", "include_subdomains": true, "mode": "force-https" },
{ "name": "lavalite.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "loenshotel.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "loftboard.eu", "include_subdomains": true, "mode": "force-https" },
{ "name": "mondwandler.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "mountainroseherbs.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "movlib.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "musicgamegalaxy.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "mynigma.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "nachsenden.info", "include_subdomains": true, "mode": "force-https" },
{ "name": "netzbit.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "pdf.yt", "include_subdomains": true, "mode": "force-https" },
{ "name": "pierre-schmitz.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "promecon-gmbh.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "prowhisky.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "pubkey.is", "include_subdomains": true, "mode": "force-https" },
{ "name": "qetesh.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "riccy.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "scrambl.is", "include_subdomains": true, "mode": "force-https" },
{ "name": "tageau.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "ukrainians.ch", "include_subdomains": true, "mode": "force-https" },
{ "name": "viennan.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "winhistory-forum.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "y-o-w.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "explodie.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "aie.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "baer.im", "include_subdomains": true, "mode": "force-https" },
{ "name": "bayrisch-fuer-anfaenger.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "beastowner.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "beastowner.li", "include_subdomains": true, "mode": "force-https" },
{ "name": "best-wedding-quotes.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "bitfactory.ws", "include_subdomains": true, "mode": "force-https" },
{ "name": "bohramt.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "buddhistische-weisheiten.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "cartouche24.eu", "include_subdomains": true, "mode": "force-https" },
{ "name": "cartucce24.it", "include_subdomains": true, "mode": "force-https" },
{ "name": "celltek-server.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "clapping-rhymes.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "die-besten-weisheiten.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "edyou.eu", "include_subdomains": true, "mode": "force-https" },
{ "name": "eurotramp.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "forodeespanol.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "gemeinfreie-lieder.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "getdigitized.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "globuli-info.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "guphi.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "guthabenkarten-billiger.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "haufschild.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "hoerbuecher-und-hoerspiele.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "iban.is", "include_subdomains": true, "mode": "force-https" },
{ "name": "irische-segenswuensche.info", "include_subdomains": true, "mode": "force-https" },
{ "name": "it-schwerin.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "janus-engineering.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "jfreitag.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "julian-kipka.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "kardize24.pl", "include_subdomains": true, "mode": "force-https" },
{ "name": "kernel-error.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "kinderbuecher-kostenlos.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "kitsta.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "klatschreime.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "kleidertauschpartys.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "koordinate.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "lasst-uns-beten.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "lb-toner.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "mandala-ausmalbilder.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "mathiasbynens.be", "include_subdomains": true, "mode": "force-https" },
{ "name": "klaxn.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "mig5.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "netzpolitik.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "npw.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "otakuworld.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "pajonzeck.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "rad-route.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "raiseyourflag.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "redports.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "reserve-online.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "riesenmagnete.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "rosenkeller.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "salaervergleich.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "schwarzer.it", "include_subdomains": true, "mode": "force-https" },
{ "name": "secuvera.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "siammedia.co", "include_subdomains": true, "mode": "force-https" },
{ "name": "simplystudio.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "sprueche-zum-valentinstag.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "sprueche-zur-geburt.info", "include_subdomains": true, "mode": "force-https" },
{ "name": "sprueche-zur-hochzeit.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "sprueche-zur-konfirmation.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "studydrive.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "supplies24.at", "include_subdomains": true, "mode": "force-https" },
{ "name": "supplies24.es", "include_subdomains": true, "mode": "force-https" },
{ "name": "tatort-fanpage.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "tektoria.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "texte-zur-taufe.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "tinte24.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "tintenfix.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "tipps-fuer-den-haushalt.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "toner24.at", "include_subdomains": true, "mode": "force-https" },
{ "name": "toner24.co.uk", "include_subdomains": true, "mode": "force-https" },
{ "name": "toner24.es", "include_subdomains": true, "mode": "force-https" },
{ "name": "toner24.fr", "include_subdomains": true, "mode": "force-https" },
{ "name": "toner24.it", "include_subdomains": true, "mode": "force-https" },
{ "name": "toner24.nl", "include_subdomains": true, "mode": "force-https" },
{ "name": "toner24.pl", "include_subdomains": true, "mode": "force-https" },
{ "name": "tonerdepot.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "tonerjet.at", "include_subdomains": true, "mode": "force-https" },
{ "name": "tonerjet.co.uk", "include_subdomains": true, "mode": "force-https" },
{ "name": "tonerklick.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "tonerkurier.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "tonermaus.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "tonermonster.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "tonex.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "tonex.nl", "include_subdomains": true, "mode": "force-https" },
{ "name": "trauertexte.info", "include_subdomains": true, "mode": "force-https" },
{ "name": "unterfrankenclan.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "webandmore.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "welches-kinderfahrrad.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "apadvantage.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "apn-einstellungen.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "barcodeberlin.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "certible.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "data-abundance.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "dedimax.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "hostix.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "janoberst.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "jelmer.co.uk", "include_subdomains": true, "mode": "force-https" },
{ "name": "jelmer.uk", "include_subdomains": true, "mode": "force-https" },
{ "name": "munich-rage.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "posteo.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "stationary-traveller.eu", "include_subdomains": true, "mode": "force-https" },
{ "name": "thepaymentscompany.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "xps2pdf.co.uk", "include_subdomains": true, "mode": "force-https" },
{ "name": "ansdell.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "brunosouza.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "bugzil.la", "include_subdomains": true, "mode": "force-https" },
{ "name": "bytepark.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "ethitter.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "firemail.io", "include_subdomains": true, "mode": "force-https" },
{ "name": "gmantra.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "mach-politik.ch", "include_subdomains": true, "mode": "force-https" },
{ "name": "malnex.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "mutantmonkey.sexy", "include_subdomains": true, "mode": "force-https" },
{ "name": "ng-security.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "palava.tv", "include_subdomains": true, "mode": "force-https" },
{ "name": "reedloden.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "rws-vertriebsportal.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "sdsl-speedtest.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "servethecity-karlsruhe.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "tunebitfm.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "websenat.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "zeropush.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "ludwig.im", "include_subdomains": true, "mode": "force-https" },
{ "name": "gparent.org", "mode": "force-https" },
{ "name": "blog.gparent.org", "mode": "force-https" },
{ "name": "m.gparent.org", "mode": "force-https" },
{ "name": "ca.gparent.org", "mode": "force-https" },
{ "name": "simpletax.ca", "mode": "force-https" },
{ "name": "help.simpletax.ca", "mode": "force-https" },
{ "name": "app.simpletax.ca", "mode": "force-https" },
{ "name": "daphne.informatik.uni-freiburg.de", "mode": "force-https" },
{ "name": "bedreid.dk", "include_subdomains": true, "mode": "force-https" },
{ "name": "cotonea.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "everhome.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "fixingdns.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "flamer-scene.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "insouciant.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "kaheim.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "kevincox.ca", "include_subdomains": true, "mode": "force-https" },
{ "name": "lingolia.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "matatall.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "net-safe.info", "include_subdomains": true, "mode": "force-https" },
{ "name": "okmx.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "osterkraenzchen.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "parent5446.us", "include_subdomains": true, "mode": "force-https" },
{ "name": "patt.us", "include_subdomains": true, "mode": "force-https" },
{ "name": "peercraft.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "room-checkin24.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "securify.nl", "include_subdomains": true, "mode": "force-https" },
{ "name": "shaaaaaaaaaaaaa.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "shopontarget.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "siraweb.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "spdysync.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "sylaps.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "sysctl.se", "include_subdomains": true, "mode": "force-https" },
{ "name": "tauchkater.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "theshadestore.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "tomvote.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "toshnix.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "warrencreative.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "zeplin.io", "include_subdomains": true, "mode": "force-https" },
{ "name": "17hats.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "cdnb.co", "include_subdomains": true, "mode": "force-https" },
{ "name": "github.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "id-co.in", "include_subdomains": true, "mode": "force-https" },
{ "name": "ideaweb.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "man3s.jp", "include_subdomains": true, "mode": "force-https" },
{ "name": "meinebo.it", "include_subdomains": true, "mode": "force-https" },
{ "name": "nmctest.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "partyvan.eu", "include_subdomains": true, "mode": "force-https" },
{ "name": "partyvan.it", "include_subdomains": true, "mode": "force-https" },
{ "name": "partyvan.nl", "include_subdomains": true, "mode": "force-https" },
{ "name": "partyvan.se", "include_subdomains": true, "mode": "force-https" },
{ "name": "regar42.fr", "include_subdomains": true, "mode": "force-https" },
{ "name": "scotthelme.co.uk", "include_subdomains": true, "mode": "force-https" },
{ "name": "suite73.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "wubthecaptain.eu", "include_subdomains": true, "mode": "force-https" },
{ "name": "1a-diamantscheiben.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "simplyfixit.co.uk", "include_subdomains": true, "mode": "force-https" },
{ "name": "1a-vermessung.at", "include_subdomains": true, "mode": "force-https" },
{ "name": "1a-werkstattgeraete.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "annahmeschluss.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "bautied.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "codepref.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "encryptallthethings.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "futos.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "jonnybarnes.uk", "include_subdomains": true, "mode": "force-https" },
{ "name": "miasarafina.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "mothereff.in", "include_subdomains": true, "mode": "force-https" },
{ "name": "mths.be", "include_subdomains": true, "mode": "force-https" },
{ "name": "prefontaine.name", "include_subdomains": true, "mode": "force-https" },
{ "name": "redlatam.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "schachburg.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "schreiber-netzwerk.eu", "include_subdomains": true, "mode": "force-https" },
{ "name": "syss.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "terrax.berlin", "include_subdomains": true, "mode": "force-https" },
{ "name": "tollmanz.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "tresorit.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "vaddder.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "wikidsystems.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "wohnungsbau-ludwigsburg.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "xtream-hosting.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "xtream-hosting.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "xtream-hosting.eu", "include_subdomains": true, "mode": "force-https" },
{ "name": "xtreamhosting.eu", "include_subdomains": true, "mode": "force-https" },
{ "name": "honeybadger.io", "mode": "force-https" },
{ "name": "www.honeybadger.io", "mode": "force-https" },
{ "name": "amigogeek.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "andreasbreitenlohner.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "aprz.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "arlen.io", "include_subdomains": true, "mode": "force-https" },
{ "name": "bitfarm-archiv.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "bitfarm-archiv.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "bulktrade.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "buzzconcert.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "chulado.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "cimballa.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "daylightcompany.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "denh.am", "include_subdomains": true, "mode": "force-https" },
{ "name": "devh.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "evstatus.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "filedir.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "frederik-braun.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "gplintegratedit.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "html5.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "ian.sh", "include_subdomains": true, "mode": "force-https" },
{ "name": "ilikerainbows.co.uk", "include_subdomains": true, "mode": "force-https" },
{ "name": "ilmconpm.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "inleaked.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "klaxn.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "labina.com.tr", "include_subdomains": true, "mode": "force-https" },
{ "name": "liebel.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "luxus-russen.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "matteomarescotti.it", "include_subdomains": true, "mode": "force-https" },
{ "name": "minikneet.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "minikneet.nl", "include_subdomains": true, "mode": "force-https" },
{ "name": "mkcert.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "msc-seereisen.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "mykreuzfahrt.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "oscarvk.ch", "include_subdomains": true, "mode": "force-https" },
{ "name": "plothost.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "reishunger.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "salserocafe.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "samizdat.cz", "include_subdomains": true, "mode": "force-https" },
{ "name": "sslmate.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "steventress.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "tekshrek.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "temehu.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "tobias-kluge.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "vortexhobbies.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "willnorris.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "mykolab.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "semenkovich.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "rme.li", "mode": "force-https" },
{ "name": "www.rme.li", "mode": "force-https" },
{ "name": "aiticon.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "aiticon.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "anetaben.nl", "include_subdomains": true, "mode": "force-https" },
{ "name": "annevankesteren.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "annevankesteren.nl", "include_subdomains": true, "mode": "force-https" },
{ "name": "annevankesteren.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "barslecht.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "barslecht.nl", "include_subdomains": true, "mode": "force-https" },
{ "name": "blessnet.jp", "include_subdomains": true, "mode": "force-https" },
{ "name": "cloudstoragemaus.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "comdurav.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "digitaldaddy.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "eldietista.es", "include_subdomains": true, "mode": "force-https" },
{ "name": "elnutricionista.es", "include_subdomains": true, "mode": "force-https" },
{ "name": "fronteers.nl", "include_subdomains": true, "mode": "force-https" },
{ "name": "getssl.uz", "include_subdomains": true, "mode": "force-https" },
{ "name": "gunnarhafdal.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "heijblok.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "kdex.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "limpid.nl", "include_subdomains": true, "mode": "force-https" },
{ "name": "minez-nightswatch.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "pisidia.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "quuz.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "sale4ru.ru", "include_subdomains": true, "mode": "force-https" },
{ "name": "shipard.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "shohruh.uz", "include_subdomains": true, "mode": "force-https" },
{ "name": "sro.center", "include_subdomains": true, "mode": "force-https" },
{ "name": "standardssuck.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "testsuite.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "thecustomizewindows.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "uzstyle.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "weggeweest.nl", "include_subdomains": true, "mode": "force-https" },
{ "name": "whatwg.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "when-release.ru", "include_subdomains": true, "mode": "force-https" },
{ "name": "xn--maraa-rta.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "otakurepublic.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "mqas.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "dlc.viasinc.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "www.viasinc.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "viasinc.com", "mode": "force-https" },
{ "name": "angularjs.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "debtkit.co.uk", "include_subdomains": true, "mode": "force-https" },
{ "name": "decibelios.li", "include_subdomains": true, "mode": "force-https" },
{ "name": "diamante.ro", "include_subdomains": true, "mode": "force-https" },
{ "name": "domaris.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "enorekcah.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "fedorapeople.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "gamercredo.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "garron.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "gerardozamudio.mx", "include_subdomains": true, "mode": "force-https" },
{ "name": "gmcd.co", "include_subdomains": true, "mode": "force-https" },
{ "name": "hack.li", "include_subdomains": true, "mode": "force-https" },
{ "name": "hexony.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "horosho.in", "include_subdomains": true, "mode": "force-https" },
{ "name": "howsmyssl.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "howsmytls.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "hpac-portal.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "jwilsson.me", "include_subdomains": true, "mode": "force-https" },
{ "name": "khmath.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "knowledgehook.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "lodash.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "md5file.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "omitech.co.uk", "include_subdomains": true, "mode": "force-https" },
{ "name": "orbograph-hrcm.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "password.codes", "include_subdomains": true, "mode": "force-https" },
{ "name": "prakharprasad.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "ravchat.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "sciencex.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "shiinko.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "spideroak.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "thorncreek.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "tno.io", "include_subdomains": true, "mode": "force-https" },
{ "name": "translatoruk.co.uk", "include_subdomains": true, "mode": "force-https" },
{ "name": "wepay.in.th", "include_subdomains": true, "mode": "force-https" },
{ "name": "zixiao.wang", "include_subdomains": true, "mode": "force-https" },
{ "name": "at.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "au.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "az.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "be.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "bi.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "br.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "ca.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "cd.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "cg.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "chfr.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "chit.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "ch.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "cl.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "cn.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "co.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "cr.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "ct.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "de.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "dk.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "do.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "en-maktoob.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "espanol.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "es.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "fi.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "fj.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "fr.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "gl.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "gm.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "gr.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "hk.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "hn.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "hu.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "id.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "ie.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "in.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "it.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "kr.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "kz.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "li.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "lt.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "lu.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "lv.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "maktoob.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "malaysia.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "mt.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "mu.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "mw.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "mx.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "ni.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "nl.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "no.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "np.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "nz.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "pa.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "pe.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "ph.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "pk.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "pl.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "pr.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "py.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "qc.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "ro.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "ru.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "rw.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "se.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "sg.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "sv.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "th.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "tr.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "tv.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "tw.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "ua.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "uk.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "uy.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "uz.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "ve.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "vn.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "xa.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "za.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "zh.search.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "login.yahoo.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "mail.yahoo.com", "include_subdomains": false, "mode": "force-https" },
{ "name": "edit.yahoo.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "ahoyconference.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "balcan-underground.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "baldwinkoo.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "bigbrownpromotions.com.au", "include_subdomains": true, "mode": "force-https" },
{ "name": "bodo-wolff.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "calibreapp.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "call.me", "include_subdomains": true, "mode": "force-https" },
{ "name": "chrisjean.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "cujanovic.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "deadbeef.ninja", "include_subdomains": true, "mode": "force-https" },
{ "name": "esec.rs", "include_subdomains": true, "mode": "force-https" },
{ "name": "floobits.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "freenetproject.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "fundingempire.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "heid.ws", "include_subdomains": true, "mode": "force-https" },
{ "name": "ironfistdesign.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "kinogb.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "ljs.io", "include_subdomains": true, "mode": "force-https" },
{ "name": "lovelycorral.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "megashur.se", "include_subdomains": true, "mode": "force-https" },
{ "name": "minnesotadata.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "mountainmusicpromotions.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "newstarnootropics.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "onedot.nl", "include_subdomains": true, "mode": "force-https" },
{ "name": "powerplannerapp.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "ru-sprachstudio.ch", "include_subdomains": true, "mode": "force-https" },
{ "name": "segu-info.com.ar", "include_subdomains": true, "mode": "force-https" },
{ "name": "slattery.co", "include_subdomains": true, "mode": "force-https" },
{ "name": "slidebatch.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "smartship.co.jp", "include_subdomains": true, "mode": "force-https" },
{ "name": "southside-crew.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "tickopa.co.uk", "include_subdomains": true, "mode": "force-https" },
{ "name": "wieninternational.at", "include_subdomains": true, "mode": "force-https" },
{ "name": "fleximus.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "facebook.com", "mode": "force-https", "pins": "facebook" },
{ "name": "www.facebook.com", "include_subdomains": true, "mode": "force-https", "pins": "facebook" },
{ "name": "m.facebook.com", "include_subdomains": true, "mode": "force-https", "pins": "facebook" },
{ "name": "tablet.facebook.com", "include_subdomains": true, "mode": "force-https", "pins": "facebook" },
{ "name": "secure.facebook.com", "include_subdomains": true, "mode": "force-https", "pins": "facebook" },
{ "name": "pixel.facebook.com", "include_subdomains": true, "mode": "force-https", "pins": "facebook" },
{ "name": "apps.facebook.com", "include_subdomains": true, "mode": "force-https", "pins": "facebook" },
{ "name": "upload.facebook.com", "include_subdomains": true, "mode": "force-https", "pins": "facebook" },
{ "name": "developers.facebook.com", "include_subdomains": true, "mode": "force-https", "pins": "facebook" },
{ "name": "touch.facebook.com", "include_subdomains": true, "mode": "force-https", "pins": "facebook" },
{ "name": "mbasic.facebook.com", "include_subdomains": true, "mode": "force-https", "pins": "facebook" },
{ "name": "code.facebook.com", "include_subdomains": true, "mode": "force-https", "pins": "facebook" },
{ "name": "t.facebook.com", "include_subdomains": true, "mode": "force-https", "pins": "facebook" },
{ "name": "mtouch.facebook.com", "include_subdomains": true, "mode": "force-https", "pins": "facebook" },
{ "name": "business.facebook.com", "include_subdomains": true, "mode": "force-https", "pins": "facebook" },
{ "name": "research.facebook.com", "include_subdomains": true, "mode": "force-https", "pins": "facebook" },
{ "name": "0x0a.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "animurecs.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "arendburgers.nl", "include_subdomains": true, "mode": "force-https" },
{ "name": "big-andy.co.uk", "include_subdomains": true, "mode": "force-https" },
{ "name": "bitgo.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "buttercoin.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "chainmonitor.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "coinapult.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "comssa.org.au", "include_subdomains": true, "mode": "force-https" },
{ "name": "coursella.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "crowdjuris.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "curlybracket.co.uk", "include_subdomains": true, "mode": "force-https" },
{ "name": "cyanogenmod.xxx", "include_subdomains": true, "mode": "force-https" },
{ "name": "czbix.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "dealcruiser.nl", "include_subdomains": true, "mode": "force-https" },
{ "name": "derevtsov.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "dzlibs.io", "include_subdomains": true, "mode": "force-https" },
{ "name": "easysimplecrm.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "fralef.me", "include_subdomains": true, "mode": "force-https" },
{ "name": "glossopnorthendafc.co.uk", "include_subdomains": true, "mode": "force-https" },
{ "name": "gtraxapp.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "hansvaneijsden.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "horseboners.xxx", "include_subdomains": true, "mode": "force-https" },
{ "name": "horza.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "iamcarrico.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "kartonmodellbau.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "keycdn.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "komandakovalchuk.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "kryptera.se", "include_subdomains": true, "mode": "force-https" },
{ "name": "lukonet.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "meetfinch.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "megaxchange.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "moriz.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "myplaceonline.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "nectarleaf.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "nos-oignons.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "phoenixlogan.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "redteam-pentesting.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "roland.io", "include_subdomains": true, "mode": "force-https" },
{ "name": "servergno.me", "include_subdomains": true, "mode": "force-https" },
{ "name": "siriad.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "smartcoin.com.br", "include_subdomains": true, "mode": "force-https" },
{ "name": "spartantheatre.org", "include_subdomains": true, "mode": "force-https" },
{ "name": "spencerbaer.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "stretchmyan.us", "include_subdomains": true, "mode": "force-https" },
{ "name": "taxsquirrel.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "techhipster.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "timtaubert.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "tribut.de", "include_subdomains": true, "mode": "force-https" },
{ "name": "triop.se", "include_subdomains": true, "mode": "force-https" },
{ "name": "twentymilliseconds.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "ukdefencejournal.org.uk", "include_subdomains": true, "mode": "force-https" },
{ "name": "ukhas.net", "include_subdomains": true, "mode": "force-https" },
{ "name": "vpnzoom.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "watsonhall.uk", "include_subdomains": true, "mode": "force-https" },
{ "name": "weblogzwolle.nl", "include_subdomains": true, "mode": "force-https" },
{ "name": "ypart.eu", "include_subdomains": true, "mode": "force-https" },
{ "name": "www.etsy.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "etsysecure.com", "include_subdomains": true, "mode": "force-https" },
{ "name": "18f.gsa.gov", "include_subdomains": true, "mode": "force-https" },
{ "name": "my.usa.gov", "include_subdomains": true, "mode": "force-https" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment