author | Bogdan Tara <btara@mozilla.com> |
Mon, 20 Nov 2017 00:17:43 +0200 | |
changeset 392623 | e1362d76d75600d1b36e839770821da74a857bac |
parent 392622 | da2dd46b2c2e6e37f3d41b2e731db8a04b87f84f (current diff) |
parent 392618 | dd08f8b19cc32da161811abb2f7093e0f5392e69 (diff) |
child 392624 | 45a167ac79a556513eb8e7d0faa2b0737cdc95b5 |
push id | 32935 |
push user | ebalazs@mozilla.com |
push date | Mon, 20 Nov 2017 09:39:39 +0000 |
treeherder | mozilla-central@b828f7a6c2bf [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | merge, merge |
milestone | 59.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/browser/base/content/test/general/browser.ini +++ b/browser/base/content/test/general/browser.ini @@ -248,17 +248,16 @@ skip-if = toolkit != "cocoa" # Because o # DO NOT ADD MORE TESTS HERE. USE A TOPICAL DIRECTORY INSTEAD. [browser_bug647886.js] # DO NOT ADD MORE TESTS HERE. USE A TOPICAL DIRECTORY INSTEAD. [browser_bug655584.js] # DO NOT ADD MORE TESTS HERE. USE A TOPICAL DIRECTORY INSTEAD. [browser_bug664672.js] # DO NOT ADD MORE TESTS HERE. USE A TOPICAL DIRECTORY INSTEAD. [browser_bug676619.js] -skip-if = os == "mac" # mac: Intermittent failures, bug 925225 # DO NOT ADD MORE TESTS HERE. USE A TOPICAL DIRECTORY INSTEAD. [browser_bug678392.js] skip-if = os == "mac" # Bug 1102331 - does focus things on the content window which break in e10s mode (still causes orange on Mac 10.10) # DO NOT ADD MORE TESTS HERE. USE A TOPICAL DIRECTORY INSTEAD. [browser_bug710878.js] # DO NOT ADD MORE TESTS HERE. USE A TOPICAL DIRECTORY INSTEAD. [browser_bug719271.js] skip-if = os == "win" && debug && e10s # Bug 1315042
--- a/browser/base/content/test/general/browser_bug676619.js +++ b/browser/base/content/test/general/browser_bug676619.js @@ -1,124 +1,83 @@ -function test() { +function waitForNewWindow() { + return new Promise(resolve => { + var listener = { + onOpenWindow: aXULWindow => { + info("Download window shown..."); + Services.wm.removeListener(listener); + + function downloadOnLoad() { + domwindow.removeEventListener("load", downloadOnLoad, true); + + is(domwindow.document.location.href, "chrome://mozapps/content/downloads/unknownContentType.xul", "Download page appeared"); + resolve(domwindow); + } + + var domwindow = aXULWindow.QueryInterface(Ci.nsIInterfaceRequestor) + .getInterface(Ci.nsIDOMWindow); + domwindow.addEventListener("load", downloadOnLoad, true); + }, + onCloseWindow: aXULWindow => {}, + onWindowTitleChange: (aXULWindow, aNewTitle) => {} + } + + Services.wm.addListener(listener); + }); +} + +async function testLink(link, name) { + info("Checking " + link + " with name: " + name); + + let winPromise = waitForNewWindow(); + + ContentTask.spawn(gBrowser.selectedBrowser, link, contentLink => { + content.document.getElementById(contentLink).click(); + }); + + let win = await winPromise; + + await ContentTask.spawn(gBrowser.selectedBrowser, null, () => { + Assert.equal(content.document.getElementById("unload-flag").textContent, + "Okay", "beforeunload shouldn't have fired"); + }); + + is(win.document.getElementById("location").value, name, "file name should match"); + + await BrowserTestUtils.closeWindow(win); +} + +async function testLocation(link, url) { + let tabPromise = BrowserTestUtils.waitForNewTab(gBrowser); + + ContentTask.spawn(gBrowser.selectedBrowser, link, contentLink => { + content.document.getElementById(contentLink).click(); + }); + + let tab = await tabPromise; + await BrowserTestUtils.removeTab(tab); +} + +async function runTest(url) { + let tab = BrowserTestUtils.addTab(gBrowser, url); + gBrowser.selectedTab = tab; + + let browser = gBrowser.getBrowserForTab(tab); + await BrowserTestUtils.browserLoaded(browser); + + await testLink("link1", "test.txt"); + await testLink("link2", "video.ogg"); + await testLink("link3", "just some video"); + await testLink("link4", "with-target.txt"); + await testLink("link5", "javascript.txt"); + await testLink("link6", "test.blob"); + await testLocation("link7", "http://example.com/"); + + await BrowserTestUtils.removeTab(tab); +} + +add_task(async function() { requestLongerTimeout(3); waitForExplicitFinish(); - var isHTTPS = false; - - function loadListener() { - function testLocation(link, url, next) { - new TabOpenListener(url, function() { - gBrowser.removeTab(this.tab); - }, function() { - next(); - }); - - ContentTask.spawn(gBrowser.selectedBrowser, link, contentLink => { - content.document.getElementById(contentLink).click(); - }); - } - - function testLink(link, name, next) { - addWindowListener("chrome://mozapps/content/downloads/unknownContentType.xul", function(win) { - ContentTask.spawn(gBrowser.selectedBrowser, null, () => { - Assert.equal(content.document.getElementById("unload-flag").textContent, - "Okay", "beforeunload shouldn't have fired"); - }).then(() => { - is(win.document.getElementById("location").value, name, "file name should match"); - win.close(); - next(); - }); - }); - - ContentTask.spawn(gBrowser.selectedBrowser, link, contentLink => { - content.document.getElementById(contentLink).click(); - }); - } - - testLink("link1", "test.txt", - testLink.bind(null, "link2", "video.ogg", - testLink.bind(null, "link3", "just some video", - testLink.bind(null, "link4", "with-target.txt", - testLink.bind(null, "link5", "javascript.txt", - testLink.bind(null, "link6", "test.blob", - testLocation.bind(null, "link7", "http://example.com/", - function() { - if (isHTTPS) { - finish(); - } else { - // same test again with https: - isHTTPS = true; - gBrowser.loadURI("https://example.com:443/browser/browser/base/content/test/general/download_page.html"); - } - }))))))); - - } - - BrowserTestUtils.browserLoaded(gBrowser.selectedBrowser).then(() => { - loadListener(); - BrowserTestUtils.browserLoaded(gBrowser.selectedBrowser).then(loadListener); - }); - - gBrowser.loadURI("http://mochi.test:8888/browser/browser/base/content/test/general/download_page.html"); -} - - -function addWindowListener(aURL, aCallback) { - Services.wm.addListener({ - onOpenWindow(aXULWindow) { - info("window opened, waiting for focus"); - Services.wm.removeListener(this); - - var domwindow = aXULWindow.QueryInterface(Ci.nsIInterfaceRequestor) - .getInterface(Ci.nsIDOMWindow); - waitForFocus(function() { - is(domwindow.document.location.href, aURL, "should have seen the right window open"); - aCallback(domwindow); - }, domwindow); - }, - onCloseWindow(aXULWindow) { }, - onWindowTitleChange(aXULWindow, aNewTitle) { } - }); -} - -// This listens for the next opened tab and checks it is of the right url. -// opencallback is called when the new tab is fully loaded -// closecallback is called when the tab is closed -function TabOpenListener(url, opencallback, closecallback) { - this.url = url; - this.opencallback = opencallback; - this.closecallback = closecallback; - - gBrowser.tabContainer.addEventListener("TabOpen", this); -} - -TabOpenListener.prototype = { - url: null, - opencallback: null, - closecallback: null, - tab: null, - browser: null, - - handleEvent(event) { - if (event.type == "TabOpen") { - gBrowser.tabContainer.removeEventListener("TabOpen", this); - this.tab = event.originalTarget; - this.browser = this.tab.linkedBrowser; - BrowserTestUtils.browserLoaded(this.browser, false, this.url).then(() => { - this.tab.addEventListener("TabClose", this); - var url = this.browser.currentURI.spec; - is(url, this.url, "Should have opened the correct tab"); - this.opencallback(); - }); - } else if (event.type == "TabClose") { - if (event.originalTarget != this.tab) - return; - this.tab.removeEventListener("TabClose", this); - this.opencallback = null; - this.tab = null; - this.browser = null; - // Let the window close complete - executeSoon(this.closecallback); - this.closecallback = null; - } - } -}; + await runTest("http://mochi.test:8888/browser/browser/base/content/test/general/download_page.html"); + await runTest("https://example.com:443/browser/browser/base/content/test/general/download_page.html"); +});
--- a/dom/base/Element.cpp +++ b/dom/base/Element.cpp @@ -4329,29 +4329,43 @@ Element::ClearDataset() slots->mDataset = nullptr; } enum nsPreviousIntersectionThreshold { eUninitialized = -2, eNonIntersecting = -1 }; +static void +IntersectionObserverPropertyDtor(void* aObject, nsAtom* aPropertyName, + void* aPropertyValue, void* aData) +{ + Element* element = static_cast<Element*>(aObject); + IntersectionObserverList* observers = + static_cast<IntersectionObserverList*>(aPropertyValue); + for (auto iter = observers->Iter(); !iter.Done(); iter.Next()) { + DOMIntersectionObserver* observer = iter.Key(); + observer->UnlinkElement(*element); + } + delete observers; +} + void Element::RegisterIntersectionObserver(DOMIntersectionObserver* aObserver) { IntersectionObserverList* observers = static_cast<IntersectionObserverList*>( GetProperty(nsGkAtoms::intersectionobserverlist) ); if (!observers) { observers = new IntersectionObserverList(); observers->Put(aObserver, eUninitialized); SetProperty(nsGkAtoms::intersectionobserverlist, observers, - nsINode::DeleteProperty<IntersectionObserverList>); + IntersectionObserverPropertyDtor, true); return; } observers->LookupForAdd(aObserver).OrInsert([]() { // If element is being observed, value can be: // -2: Makes sure next calculated threshold always differs, leading to a // notification task being scheduled. // -1: Non-intersecting.
--- a/dom/base/nsNodeUtils.cpp +++ b/dom/base/nsNodeUtils.cpp @@ -300,22 +300,16 @@ nsNodeUtils::LastRelease(nsINode* aNode) if (aNode->IsNodeOfType(nsINode::eDOCUMENT)) { // Delete all properties before tearing down the document. Some of the // properties are bound to nsINode objects and the destructor functions of // the properties may want to use the owner document of the nsINode. static_cast<nsIDocument*>(aNode)->DeleteAllProperties(); } else { if (aNode->HasProperties()) { - if (aNode->IsElement()) { - Element* elem = aNode->AsElement(); - elem->UnlinkIntersectionObservers(); - elem->DeleteProperty(nsGkAtoms::intersectionobserverlist); - } - // Strong reference to the document so that deleting properties can't // delete the document. nsCOMPtr<nsIDocument> document = aNode->OwnerDoc(); document->DeleteAllPropertiesFor(aNode); } // I wonder whether it's faster to do the HasFlag check first.... if (aNode->IsNodeOfType(nsINode::eHTML_FORM_CONTROL) &&
--- a/dom/security/nsMixedContentBlocker.cpp +++ b/dom/security/nsMixedContentBlocker.cpp @@ -553,17 +553,20 @@ nsMixedContentBlocker::ShouldLoad(bool a // received data. // // TYPE_XMLHTTPREQUEST: XHR requires either same origin or CORS, so most // mixed-content XHR will already be blocked by that check. This will also // block HTTPS-to-HTTP XHR with CORS. The same security concerns mentioned // above for WebSockets apply to XHR, and XHR should have the same security // properties as WebSockets w.r.t. mixed content. XHR's handling of redirects // amplifies these concerns. - + // + // TYPE_SAVEAS_DOWNLOAD: Save-link-as feature is used to download a resource + // without involving a docShell. This kind of loading must be always be + // allowed. static_assert(TYPE_DATAREQUEST == TYPE_XMLHTTPREQUEST, "TYPE_DATAREQUEST is not a synonym for " "TYPE_XMLHTTPREQUEST"); switch (aContentType) { // The top-level document cannot be mixed content by definition case TYPE_DOCUMENT:
--- a/js/src/builtin/Promise.cpp +++ b/js/src/builtin/Promise.cpp @@ -2507,16 +2507,23 @@ js::CreatePromiseObjectForAsync(JSContex if (!promise) return nullptr; AddPromiseFlags(*promise, PROMISE_FLAG_ASYNC); promise->setFixedSlot(PromiseSlot_AwaitGenerator, generatorVal); return promise; } +bool +js::IsPromiseForAsync(JSObject* promise) +{ + return promise->is<PromiseObject>() && + PromiseHasAnyFlag(promise->as<PromiseObject>(), PROMISE_FLAG_ASYNC); +} + // ES 2018 draft 25.5.5.2 steps 3.f, 3.g. MOZ_MUST_USE bool js::AsyncFunctionThrown(JSContext* cx, Handle<PromiseObject*> resultPromise) { // Step 3.f. RootedValue exc(cx); if (!MaybeGetAndClearException(cx, &exc)) return false;
--- a/js/src/builtin/Promise.h +++ b/js/src/builtin/Promise.h @@ -133,16 +133,19 @@ OriginalPromiseThen(JSContext* cx, Handl MOZ_MUST_USE JSObject* PromiseResolve(JSContext* cx, HandleObject constructor, HandleValue value); MOZ_MUST_USE PromiseObject* CreatePromiseObjectForAsync(JSContext* cx, HandleValue generatorVal); MOZ_MUST_USE bool +IsPromiseForAsync(JSObject* promise); + +MOZ_MUST_USE bool AsyncFunctionReturned(JSContext* cx, Handle<PromiseObject*> resultPromise, HandleValue value); MOZ_MUST_USE bool AsyncFunctionThrown(JSContext* cx, Handle<PromiseObject*> resultPromise); MOZ_MUST_USE bool AsyncFunctionAwait(JSContext* cx, Handle<PromiseObject*> resultPromise, HandleValue value);
--- a/js/src/builtin/TestingFunctions.cpp +++ b/js/src/builtin/TestingFunctions.cpp @@ -2049,16 +2049,21 @@ ResolvePromise(JSContext* cx, unsigned a mozilla::Maybe<AutoCompartment> ac; if (IsWrapper(promise)) { promise = UncheckedUnwrap(promise); ac.emplace(cx, promise); if (!cx->compartment()->wrap(cx, &resolution)) return false; } + if (IsPromiseForAsync(promise)) { + JS_ReportErrorASCII(cx, "async function's promise shouldn't be manually resolved"); + return false; + } + bool result = JS::ResolvePromise(cx, promise, resolution); if (result) args.rval().setUndefined(); return result; } static bool RejectPromise(JSContext* cx, unsigned argc, Value* vp) @@ -2076,16 +2081,21 @@ RejectPromise(JSContext* cx, unsigned ar mozilla::Maybe<AutoCompartment> ac; if (IsWrapper(promise)) { promise = UncheckedUnwrap(promise); ac.emplace(cx, promise); if (!cx->compartment()->wrap(cx, &reason)) return false; } + if (IsPromiseForAsync(promise)) { + JS_ReportErrorASCII(cx, "async function's promise shouldn't be manually rejected"); + return false; + } + bool result = JS::RejectPromise(cx, promise, reason); if (result) args.rval().setUndefined(); return result; } static bool StreamsAreEnabled(JSContext* cx, unsigned argc, Value* vp)
--- a/security/manager/ssl/StaticHPKPins.h +++ b/security/manager/ssl/StaticHPKPins.h @@ -1154,9 +1154,9 @@ static const TransportSecurityPreload kP { "za.search.yahoo.com", false, true, false, -1, &kPinset_yahoo }, { "zh.search.yahoo.com", false, true, false, -1, &kPinset_yahoo }, }; // Pinning Preload List Length = 481; static const int32_t kUnknownId = -1; -static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1519501065193000); +static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1519587456099000);
--- a/security/manager/ssl/nsSTSPreloadList.errors +++ b/security/manager/ssl/nsSTSPreloadList.errors @@ -8,64 +8,56 @@ 1q365a.com: could not connect to host 24hrs.shopping: could not connect to host 47tech.com: could not connect to host 4loc.us: could not connect to host 4vf.de: could not connect to host 4x4.lk: could not connect to host 68277.me: could not connect to host 692b8c32.de: could not connect to host 8560.be: could not connect to host -86metro.ru: could not connect to host 87577.com: could not connect to host 8887999.com: could not connect to host -888msc.vip: could not connect to host 8ack.de: could not connect to host 8ballbombom.uk: could not connect to host 8t88.biz: could not connect to host 91-freedom.com: could not connect to host 9ss6.com: could not connect to host aaronmcguire.me: could not connect to host abloop.com: could not connect to host abolition.co: could not connect to host accwing.com: could not connect to host -acecerts.co.uk: could not connect to host acrossgw.com: could not connect to host adamgold.net: could not connect to host aevpn.org: could not connect to host affily.io: could not connect to host -agowa338.de: could not connect to host -aimeeandalec.com: could not connect to host akiba-server.info: could not connect to host akita-stream.com: could not connect to host akoww.de: could not connect to host akul.co.in: could not connect to host al-f.net: could not connect to host alamgir.works: could not connect to host alasta.info: could not connect to host alauda-home.de: could not connect to host -alecpap.com: could not connect to host -alecpapierniak.com: could not connect to host alexey-shamara.ru: could not connect to host alexhaydock.co.uk: could not connect to host alexmol.tk: could not connect to host alexperry.io: could not connect to host +almstrom.org: could not connect to host alphie.me: could not connect to host altahrim.net: could not connect to host -alvicom.hu: could not connect to host ameho.me: could not connect to host +americandistribuidora.com: could not connect to host amua.fr: could not connect to host anastasia-shamara.ru: could not connect to host andreas-kluge.eu: could not connect to host andreaskluge.eu: could not connect to host andrei-coman.com: could not connect to host angrydragonproductions.com: could not connect to host -ankaraprofesyonelwebtasarim.com: could not connect to host annetaan.fi: could not connect to host annonasoftware.com: could not connect to host -answers-online.ru: could not connect to host anticopyright.com: could not connect to host anttitenhunen.com: could not connect to host aojiao.org: could not connect to host apkoyunlar.club: could not connect to host apothes.is: could not connect to host apparels24.com: could not connect to host appdrinks.com: could not connect to host apple.ax: could not connect to host @@ -77,29 +69,27 @@ arksan.com.tr: could not connect to host artisense.de: could not connect to host artyland.ru: could not connect to host aseith.com: could not connect to host askmagicconch.com: could not connect to host assdecoeur.org: could not connect to host asthon.cn: could not connect to host at1.co: could not connect to host athi.pl: could not connect to host -atisoft.com.tr: could not connect to host -atisoft.net.tr: could not connect to host -atisoft.web.tr: could not connect to host ausec.ch: could not connect to host austinsutphin.com: could not connect to host australiancattle.dog: could not connect to host autostop-occasions.be: could not connect to host autozane.com: could not connect to host awan.tech: could not connect to host awf0.xyz: could not connect to host b8a.me: could not connect to host -baconate.com: could not connect to host badbee.cc: could not connect to host +baka.network: could not connect to host +baka.org.cn: could not connect to host balonmano.co: could not connect to host bandally.net: could not connect to host bandarifamily.com: could not connect to host bannisbierblog.de: could not connect to host barbate.fr: could not connect to host bbdos.ru: could not connect to host bearden.io: could not connect to host beasel.biz: could not connect to host @@ -116,77 +106,79 @@ billdestler.com: could not connect to ho bingcheung.com: could not connect to host binimo.com: could not connect to host bip.gov.sa: could not connect to host bitmessage.ch: could not connect to host bizeau.ch: could not connect to host bjtxl.cn: could not connect to host blackdiam.net: could not connect to host blackgamelp.de: could not connect to host +blackonion.com: could not connect to host blackscytheconsulting.com: could not connect to host blinkenlight.co.uk: could not connect to host blinkenlight.com.au: could not connect to host blog.gparent.org: could not connect to host blumen-garage.de: could not connect to host bm-i.ch: could not connect to host bodrumfarm.com: could not connect to host bolwerk.com.br: could not connect to host bonesserver.com: could not connect to host bookluk.com: could not connect to host boomsaki.com: could not connect to host boomsakis.com: could not connect to host borisbesemer.com: could not connect to host botserver.de: could not connect to host +boyfriendhusband.men: could not connect to host brage.info: could not connect to host braintensive.com: could not connect to host brettabel.com: could not connect to host brookframework.org: could not connect to host bsagan.fr: could not connect to host bsdfreak.dk: could not connect to host bsktweetup.info: could not connect to host bsuess.de: could not connect to host -budgetlovers.nl: could not connect to host buka.jp: could not connect to host burlesquemakeup.com: could not connect to host businessfurs.info: could not connect to host businessmodeler.se: could not connect to host buyingsellingflorida.com: could not connect to host buyshoe.org: could not connect to host bvexplained.co.uk: could not connect to host by1898.com: could not connect to host bypass.kr: could not connect to host c16t.uk: could not connect to host cafesg.net: could not connect to host +caipai.fm: could not connect to host calculatoaresecondhand.xyz: could not connect to host callabs.net: could not connect to host callsigns.ca: could not connect to host cancelmyprofile.com: could not connect to host carlandfaith.com: could not connect to host carloshmm.stream: could not connect to host carringtonrealtygroup.com: could not connect to host casinoreal.com: could not connect to host catcontent.cloud: could not connect to host +catgirl.pics: could not connect to host caughtredhanded.co.nz: could not connect to host cctld.com: could not connect to host cee.io: could not connect to host cencalvia.org: could not connect to host centos.pub: could not connect to host challengeskins.com: could not connect to host chaouby.com: could not connect to host charmyadesara.com: could not connect to host charonsecurity.com: could not connect to host cheah.xyz: could not connect to host cheesefusion.com: could not connect to host -cheltik.ru: could not connect to host childrendeservebetter.org: could not connect to host china-line.org: could not connect to host chosenplaintext.org: could not connect to host +christopherpritchard.co.uk: could not connect to host cio.gov: could not connect to host cjtkfan.club: could not connect to host -ckcameron.net: could not connect to host clearchatsandbox.com: could not connect to host clearviewwealthprojector.com.au: could not connect to host cloudbleed.info: could not connect to host cloudbolin.es: could not connect to host cloudimproved.com: could not connect to host cloudimprovedtest.com: could not connect to host clycat.ru: could not connect to host cnlic.com: could not connect to host @@ -214,69 +206,67 @@ criticalaim.com: could not connect to ho cryptopartynewcastle.org: could not connect to host crystalmachine.net: could not connect to host csgo77.com: could not connect to host ctj.im: could not connect to host cubela.tech: could not connect to host customfilmworks.com: could not connect to host cyber-computer.club: could not connect to host cyberpeace.nl: could not connect to host -cyclisjumper.gallery: could not connect to host cypherpunk.ws: could not connect to host d-bood.site: could not connect to host -daemon.xin: could not connect to host dahlberg.cologne: could not connect to host daniel-stahl.net: could not connect to host danielmarquard.com: could not connect to host dannyrohde.de: could not connect to host darkdestiny.ch: could not connect to host -darlastudio66.com: could not connect to host data-detox.com: could not connect to host datorb.com: could not connect to host davidscherzer.at: could not connect to host davros.eu: could not connect to host davros.ru: could not connect to host dawnsonb.com: could not connect to host days.one: could not connect to host dbcom.ru: could not connect to host dbox.ga: could not connect to host de-servers.de: could not connect to host decoyrouting.com: could not connect to host -dee.pe: could not connect to host +def-pos.ru: could not connect to host deloittequant.com: could not connect to host demotivatorbi.ru: could not connect to host derchris.me: could not connect to host derivativeshub.pro: could not connect to host dermacarecomplex.com: could not connect to host detecte-fuite.ch: could not connect to host detecte.ch: could not connect to host detectefuite.ch: could not connect to host dev-talk.eu: could not connect to host devafterdark.com: could not connect to host devkid.net: could not connect to host devops.moe: could not connect to host devpsy.info: could not connect to host +dhub.xyz: could not connect to host dick.red: could not connect to host digioccumss.ddns.net: could not connect to host digiworks.se: could not connect to host diguass.us: could not connect to host dijks.com: could not connect to host dirtycat.ru: could not connect to host disadattamentolavorativo.it: could not connect to host disco-crazy-world.de: could not connect to host ditch.ch: could not connect to host djangogolf.com: could not connect to host dlyl888.com: could not connect to host dmdre.com: could not connect to host dojifish.space: could not connect to host -dolcevitatech.education: could not connect to host dolphin-hosting.com: could not connect to host domengrad.ru: could not connect to host dostavkakurierom.ru: could not connect to host doyoulyft.com: could not connect to host +doze-cloud.tech: could not connect to host dreamaholic.club: could not connect to host dreaming.solutions: could not connect to host drighes.com: could not connect to host drizz.com.br: could not connect to host drlazarina.net: could not connect to host dronexpertos.com: could not connect to host droomhuis-in-zuid-holland-kopen.nl: could not connect to host dubrovskiy.net: could not connect to host @@ -285,24 +275,24 @@ duch.cloud: could not connect to host duelsow.eu: could not connect to host duks.com.br: could not connect to host duo.money: could not connect to host e-wishlist.net: could not connect to host eagleridgecampground.com: could not connect to host eatfitoutlet.com.br: could not connect to host ebonyriddle.com: could not connect to host eeb98.com: could not connect to host -eez.ee: could not connect to host +egbert.net: could not connect to host ehuber.info: could not connect to host elaxy-online.de: could not connect to host +elefantevoador.com: could not connect to host elia.cloud: could not connect to host elisabeth-strunz.de: could not connect to host elonbase.com: could not connect to host elsword.moe: could not connect to host -emeraldonion.org: could not connect to host endspamwith.us: could not connect to host engg.ca: could not connect to host enginx.net: could not connect to host er-music.com: could not connect to host erspro.net: could not connect to host estan.cn: could not connect to host etzi.myds.me: could not connect to host eurostrategy.vn.ua: could not connect to host @@ -357,26 +347,28 @@ frodriguez.xyz: could not connect to hos frolov.net: could not connect to host fromlemaytoz.com: could not connect to host frosty-gaming.xyz: could not connect to host fsfi.is: could not connect to host fugle.de: could not connect to host fuitedeau.ch: could not connect to host fukuko.biz: could not connect to host fukuko.xyz: could not connect to host +fukuoka-cityliner.jp: could not connect to host funfunmstdn.tokyo: could not connect to host funksteckdosen24.de: could not connect to host futbolvivo.tv: could not connect to host futos.de: could not connect to host g4w.co: could not connect to host gabriele-kluge.de: could not connect to host gaiserik.com: could not connect to host gala.kiev.ua: could not connect to host gam3rs.de: could not connect to host game-gentle.com: could not connect to host +gamepad.com.br: could not connect to host gamishou.fr: could not connect to host gasbarkenora.com: could not connect to host gasnews.net: could not connect to host gayforgenji.com: could not connect to host gaygeeks.de: could not connect to host gdevpenze.ru: could not connect to host gdhzcgs.com: could not connect to host geeks.berlin: could not connect to host @@ -391,44 +383,43 @@ getgeek.fi: could not connect to host getgeek.fr: could not connect to host getgeek.io: could not connect to host getgeek.no: could not connect to host getgeek.nu: could not connect to host getgeek.pl: could not connect to host getwarden.net: could not connect to host gevaulug.fr: could not connect to host gfoss.gr: could not connect to host -ggss.cf: could not connect to host ggx.us: could not connect to host girlsgonesporty.com: could not connect to host glasner.photo: could not connect to host glbg.eu: could not connect to host gmantra.org: could not connect to host gnom.me: could not connect to host -goapunks.net: could not connect to host godrive.ga: could not connect to host goiaspropaganda.com.br: could not connect to host google: could not connect to host google.ax: could not connect to host +goranrango.ch: could not connect to host gottfridsberg.org: could not connect to host goukon.ru: could not connect to host gozadentro.com: could not connect to host gozel.com.tr: could not connect to host gradsm-ci.net: could not connect to host granth.io: could not connect to host gratisonlinesex.com: could not connect to host greboid.co.uk: could not connect to host greboid.com: could not connect to host greenroach.ru: could not connect to host gregmartyn.com: could not connect to host greuel.online: could not connect to host gritte.net: could not connect to host grizzlys.com: could not connect to host +grossberger-ge.org: could not connect to host gugaltika-ipb.org: could not connect to host -gvatas.in: could not connect to host gvt2.com: could not connect to host gvt3.com: could not connect to host hackerchai.com: could not connect to host halcyonsbastion.com: could not connect to host hasabig.wang: could not connect to host hasalittle.wang: could not connect to host hashi.dk: could not connect to host haze.network: could not connect to host @@ -436,39 +427,39 @@ hdy.nz: could not connect to host hearty.ink: could not connect to host heisenberg.co: could not connect to host hellomouse.tk: could not connect to host helsingfors.guide: could not connect to host henriknoerr.com: could not connect to host hentaimaster.net: could not connect to host here.ml: could not connect to host heroin.org.uk: could not connect to host -hethely.ch: could not connect to host hexobind.com: could not connect to host hg881.com: could not connect to host hintermeier-rae.at: could not connect to host hiraku.me: could not connect to host hirte-digital.de: could not connect to host hjes.com.ve: could not connect to host hobaugh.social: could not connect to host hoodoo.io: could not connect to host hoodoo.tech: could not connect to host hopesb.org: could not connect to host horvathd.eu: could not connect to host -horza.org: could not connect to host +hr98.tk: could not connect to host hserver.top: could not connect to host hudingyuan.cn: could not connect to host hukkatavara.com: could not connect to host huwjones.me: could not connect to host hydra.zone: could not connect to host hydrante.ch: could not connect to host -iacono.com.br: could not connect to host ibase.com: could not connect to host +icarlos.net: could not connect to host ictpro.info: could not connect to host idcrane.com: could not connect to host +ideaweb.de: could not connect to host idid.tk: could not connect to host ifoss.me: could not connect to host ifxnet.com: could not connect to host ikenmeyer.com: could not connect to host ikenmeyer.eu: could not connect to host ileat.com: could not connect to host imlinan.cn: could not connect to host imlinan.com: could not connect to host @@ -479,16 +470,18 @@ inexpensivecomputers.net: could not conn informatik.zone: could not connect to host injust.me: could not connect to host inondation.ch: could not connect to host inscript.pl: could not connect to host installgentoo.net: could not connect to host investorloanshub.com: could not connect to host is-sw.net: could not connect to host isamiok.com: could not connect to host +isistomie.com: could not connect to host +issuesofconcern.in: could not connect to host itpro-mg.de: could not connect to host itproject.guru: could not connect to host ivanpolchenko.com: could not connect to host jaaxypro.com: could not connect to host jakincode.army: could not connect to host japan4you.org: could not connect to host jaredfraser.com: could not connect to host javascriptlab.fr: could not connect to host @@ -506,26 +499,26 @@ jonathansanchez.pro: could not connect t joostbovee.nl: could not connect to host jorovik.com: could not connect to host juliawebber.co.za: could not connect to host just-pools.co.za: could not connect to host justmy.website: could not connect to host juventusmania1897.com: could not connect to host kaika-facilitymanagement.de: could not connect to host kamikaichimaru.com: could not connect to host -kanaanonline.org: could not connect to host kapo.info: could not connect to host karanlyons.com: could not connect to host karuneshjohri.com: could not connect to host kawaiiku.com: could not connect to host kawaiiku.de: could not connect to host kelm.me: could not connect to host kenrogers.co: could not connect to host kenvix.com: could not connect to host kieranweightman.me: could not connect to host +kikuzuki.org: could not connect to host kinepolis-studio.ga: could not connect to host kitchenaccessories.pro: could not connect to host kj1396.net: could not connect to host kjchernov.info: could not connect to host kjoglum.me: could not connect to host klausbrinch.dk: could not connect to host kngk-azs.ru: could not connect to host knownsec.cf: could not connect to host @@ -540,64 +533,66 @@ kriptosec.com: could not connect to host kteen.info: could not connect to host kylling.io: could not connect to host l18.io: could not connect to host laboutiquemarocaineduconvoyeur.ma: could not connect to host lacasa.fr: could not connect to host lachawoj.de: could not connect to host ladylikeit.com: could not connect to host lanonfire.com: could not connect to host -laraeph.com: could not connect to host lathamlabs.com: could not connect to host lathamlabs.net: could not connect to host lathamlabs.org: could not connect to host lavapot.com: could not connect to host lazulu.com: could not connect to host lcht.ch: could not connect to host lcti.biz: could not connect to host ldcraft.pw: could not connect to host lebal.se: could not connect to host +leedev.org: could not connect to host legaltip.eu: could not connect to host legitaxi.com: could not connect to host leifdreizler.com: could not connect to host leninalbertop.com.ve: could not connect to host leonardcamacho.me: could not connect to host leticiagomeztagle.com: could not connect to host leveredge.net: could not connect to host lezdomsm.com: could not connect to host lheinrich.org: could not connect to host lianwen.kim: could not connect to host lianye1.cc: could not connect to host lianye2.cc: could not connect to host lianye3.cc: could not connect to host lianye4.cc: could not connect to host lianye5.cc: could not connect to host lianye6.cc: could not connect to host +libertas-tech.com: could not connect to host lifenexto.com: could not connect to host likenosis.com: could not connect to host lingerieonline.com.br: could not connect to host -linkmauve.fr: could not connect to host linksanitizer.com: could not connect to host linksextremist.at: could not connect to host linuxcommand.ru: could not connect to host linuxwebservertips.in: could not connect to host linvx.org: could not connect to host lissabon.guide: could not connect to host littleservice.cn: could not connect to host +litvideoserver.de: could not connect to host litz.ca: could not connect to host litzenberger.ca: could not connect to host liukang.tech: could not connect to host livnev.me: could not connect to host liyinjia.com: could not connect to host lobosdomain.no-ip.info: could not connect to host locker3.com: could not connect to host logcat.info: could not connect to host logic8.ml: could not connect to host lovelytimes.net: could not connect to host luav.org: could not connect to host +lubot.net: could not connect to host lukasunger.cz: could not connect to host lukasunger.net: could not connect to host luxonetwork.com: could not connect to host m4g.ru: could not connect to host maartenterpstra.xyz: could not connect to host macedopesca.com.br: could not connect to host madrants.net: could not connect to host magnacumlaude.co: could not connect to host @@ -610,17 +605,19 @@ martin-mattel.com: could not connect to marxist.party: could not connect to host mastd.me: could not connect to host mastodon.host: could not connect to host mastodon.my: could not connect to host mathijskingma.nl: could not connect to host mattwb65.com: could not connect to host maxhoechtl.at: could not connect to host maynardnetworks.com: could not connect to host +mbdrogenbos-usedcars.be: could not connect to host mcdanieldevelopmentservices.com: could not connect to host +mcsnovatamabayan.com: could not connect to host me-dc.com: could not connect to host meanevo.com: could not connect to host meathealth.com: could not connect to host mecanicadom.com: could not connect to host mediadandy.com: could not connect to host medtankers.management: could not connect to host melhorproduto.com.br: could not connect to host melonstudios.net: could not connect to host @@ -632,23 +629,21 @@ metrix-money-ptc.com: could not connect metrobriefs.com: could not connect to host mhjuma.com: could not connect to host michaelsulzer.com: could not connect to host michaelsulzer.eu: could not connect to host migueldominguez.ch: could not connect to host mikek.work: could not connect to host mingy.ddns.net: could not connect to host minitruckin.net: could not connect to host -mirodasilva.be: could not connect to host miyugirls.com: could not connect to host -mjec.net: could not connect to host mkfs.fr: could not connect to host -mmstick.tk: could not connect to host modded-minecraft-server-list.com: could not connect to host moe-max.jp: could not connect to host +moellers.systems: could not connect to host moobo.xyz: could not connect to host mooselook.de: could not connect to host moparcraft.com: could not connect to host moparcraft.org: could not connect to host morotech.com.br: could not connect to host mosaique-lachenaie.fr: could not connect to host moskva.guide: could not connect to host motomorgen.com: could not connect to host @@ -656,29 +651,27 @@ motorbiketourhanoi.com: could not connec mountainadventureseminars.com: could not connect to host mowalls.net: could not connect to host mozzilla.cz: could not connect to host mpserver12.org: could not connect to host mremallin.ca: could not connect to host mrliu.me: could not connect to host mtn.cc: could not connect to host munduch.cz: could not connect to host -munpanel.com: could not connect to host muslimbanter.co.za: could not connect to host mybeautyjobs.de: could not connect to host mycustomwriting.com: could not connect to host myfappening.org: could not connect to host mygeneral.org: could not connect to host mytravelblog.de: could not connect to host naphex.rocks: could not connect to host narodsovety.ru: could not connect to host nba2k.cn: could not connect to host nba2k.com.cn: could not connect to host nbalive.cn: could not connect to host -nc99.co: could not connect to host ncdesigns-studio.com: could not connect to host nedcf.org.uk: could not connect to host neer.io: could not connect to host nephy.jp: could not connect to host netica.fr: could not connect to host netscaler.expert: could not connect to host netulo.com: could not connect to host nevadafiber.net: could not connect to host @@ -689,28 +682,29 @@ nienfun.com: could not connect to host nikksno.io: could not connect to host nikolasbradshaw.com: could not connect to host ninux.ch: could not connect to host niouininon.eu: could not connect to host nirada.info: could not connect to host nishikino-maki.com: could not connect to host niva.synology.me: could not connect to host nkb.in.th: could not connect to host -nocs.cn: could not connect to host +nodefoo.com: could not connect to host noodleyum.com: could not connect to host notesforpebble.com: could not connect to host novascan.net: could not connect to host novelabs.eu: could not connect to host nowremindme.com: could not connect to host nsdev.cn: could not connect to host nsmail.cn: could not connect to host nup.pw: could not connect to host nyanpasu.tv: could not connect to host obdolbacca.ru: could not connect to host oberhof.co: could not connect to host +octal.es: could not connect to host off-the-clock.us: could not connect to host offgames.pro: could not connect to host office-ruru.com: could not connect to host oliverspringer.eu: could not connect to host onewebdev.info: could not connect to host onstud.com: could not connect to host onwie.fr: could not connect to host opengg.me: could not connect to host @@ -724,40 +718,40 @@ oxygaming.com: could not connect to host oxymc.com: could not connect to host oyesunn.com: could not connect to host p4chivtac.com: could not connect to host pammbook.com: could not connect to host panj.ws: could not connect to host pardnoy.com: could not connect to host passrhce.com: could not connect to host passrhcsa.com: could not connect to host +pasta-factory.co.il: could not connect to host patrickbusch.net: could not connect to host patrickneuro.de: could not connect to host paulshir.com: could not connect to host paulshir.is: could not connect to host -paymon.tj: could not connect to host pbytes.com: could not connect to host pcvirusclear.com: could not connect to host +pdfconvert.me: could not connect to host pear2pear.de: could not connect to host pearbloom.com: could not connect to host perkbrian.com: could not connect to host persjrp.ca: could not connect to host persoform.ch: could not connect to host peykezamin.ir: could not connect to host pgmann.cf: could not connect to host pgpmail.cc: could not connect to host phdwuda.com: could not connect to host philippa.cool: could not connect to host picallo.es: could not connect to host picone.com.au: could not connect to host pinebaylibrary.org: could not connect to host plaasprodukte.com: could not connect to host placefade.com: could not connect to host planbox.info: could not connect to host -playsoundevents.be: could not connect to host plussizereviews.com: could not connect to host pnsc.is: could not connect to host pointagri.com: could not connect to host pokalsocial.de: could not connect to host polit.im: could not connect to host poolinstallers.co.za: could not connect to host pouets.ovh: could not connect to host powerentertainment.tv: could not connect to host @@ -809,56 +803,58 @@ reth.ch: could not connect to host retube.ga: could not connect to host reykjavik.guide: could not connect to host ribopierre.fr: could not connect to host richeza.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 119" data: no] robomonkey.org: could not connect to host robust.ga: could not connect to host roguesignal.net: could not connect to host rohanbassett.com: could not connect to host -romainmuller.xyz: could not connect to host +rool.me: could not connect to host roolevoi.ru: could not connect to host rs-devdemo.host: could not connect to host rsldb.com: could not connect to host rubyist.today: could not connect to host ruhr3.de: could not connect to host runcarina.com: could not connect to host rundumcolumn.xyz: could not connect to host runementors.com: could not connect to host ruudkoot.nl: could not connect to host sa.net: could not connect to host saferedirectlink.com: could not connect to host sallysubs.com: could not connect to host salzamt.tk: could not connect to host samaritan.tech: could not connect to host sanandreasstories.com: could not connect to host sanatrans.com: could not connect to host +santojuken.co.jp: could not connect to host sarndipity.com: could not connect to host sbiewald.de: could not connect to host sciencemonster.co.uk: could not connect to host scm-2017.org: could not connect to host +scorobudem.ru: could not connect to host sctm.at: could not connect to host seanstrout.com: could not connect to host seaplayhomes.com: could not connect to host secitem.de: could not connect to host sectest.ml: could not connect to host security.xn--q9jyb4c: could not connect to host securitysoapbox.com: could not connect to host securon.io: could not connect to host securoswiss.ch: could not connect to host seleondar.ru: could not connect to host sellmoretires.com: could not connect to host -seproco.com: could not connect to host server-essentials.com: could not connect to host servfefe.com: could not connect to host sesha.co.za: could not connect to host shadex.net: could not connect to host shadowplus.net: could not connect to host shadowrocket.net: could not connect to host sharevari.com: could not connect to host +sharperedgecomputers.com: could not connect to host shavingks.com: could not connect to host shellday.cc: could not connect to host sheratan.web.id: could not connect to host sheying.tm: could not connect to host shirakaba-cc.com: could not connect to host shopifycloud.com: could not connect to host shoppingreview.org: could not connect to host shred.ch: could not connect to host @@ -869,29 +865,30 @@ simplerses.com: could not connect to hos siqi.wang: could not connect to host skarox.com: could not connect to host skarox.net: could not connect to host skarox.ru: could not connect to host sky-aroma.com: could not connect to host skylocker.net: could not connect to host skylocker.nl: could not connect to host sl1pkn07.wtf: could not connect to host +slimmerbouwen.be: could not connect to host slovoice.org: could not connect to host slytech.ch: could not connect to host smartrade.tech: could not connect to host smith.is: could not connect to host sml.lc: could not connect to host socialworkout.com: could not connect to host socialworkout.net: could not connect to host socialworkout.org: could not connect to host socialworkout.tv: could not connect to host socketize.com: could not connect to host sojingle.net: could not connect to host +solariiknight.org: could not connect to host solos.im: could not connect to host -somali-derp.com: could not connect to host soundhunter.xyz: could not connect to host sowingseasons.com: could not connect to host spicywombat.com: could not connect to host split.is: could not connect to host sportsmanadvisor.com: could not connect to host square-gaming.org: could not connect to host srvonfire.com: could not connect to host sss3s.com: could not connect to host @@ -912,40 +909,42 @@ sudo.im: could not connect to host sulek.eu: could not connect to host suneilpatel.com: could not connect to host sunjaydhama.com: could not connect to host superpase.com: could not connect to host suspiciousdarknet.xyz: could not connect to host sussexwebdesigns.com: could not connect to host swuosa.org: could not connect to host sysdb.io: could not connect to host +systemreboot.net: could not connect to host t3rror.net: could not connect to host tacticalsquare.com: could not connect to host takusan.ru: could not connect to host talktwincities.com: could not connect to host tangzhao.net: could not connect to host +tcpweb.net: could not connect to host tdelmas.eu: could not connect to host tdelmas.ovh: could not connect to host tdsb.cf: could not connect to host tdsbhack.tk: could not connect to host techask.it: could not connect to host +techpit.us: could not connect to host telekollektiv.org: could not connect to host telugu4u.net: could not connect to host tenispopular.com: could not connect to host tequilazor.com: could not connect to host terra-x.net: could not connect to host terrax.net: could not connect to host tetsai.com: could not connect to host +teulon.eu: could not connect to host thefox.co: could not connect to host theprivacysolution.com: could not connect to host thermique.ch: could not connect to host thesehighsandlows.com: could not connect to host -theserver201.tk: could not connect to host thinkcash.nl: could not connect to host -tianxicaipiao.com: could not connect to host timysewyn.be: could not connect to host todosrv.com: could not connect to host tokaido.com: could not connect to host tokkee.org: could not connect to host topdetoxcleanse.com: could not connect to host topnotchendings.com: could not connect to host totallynotaserver.com: could not connect to host totch.de: could not connect to host @@ -973,51 +972,53 @@ ubicv.com: could not connect to host udo-luetkemeier.de: could not connect to host umsapi.com: could not connect to host unefuite.ch: could not connect to host unhu.fr: could not connect to host unicorn.li: could not connect to host unirenter.ru: could not connect to host unmonito.red: could not connect to host urbackups.com: could not connect to host -uscp8.com: could not connect to host +urcentral.org: could not connect to host usportsgo.com: could not connect to host uwesander.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 119" data: no] vadik.me: could not connect to host vanderstraeten.dynv6.net: could not connect to host vapehour.com: could not connect to host varela-electricite.fr: could not connect to host venmos.com: could not connect to host versfin.net: could not connect to host vgatest.nl: could not connect to host vieaw.com: could not connect to host vimeosucks.nyc: could not connect to host vinetalk.net: could not connect to host +visionthroughknowledge.com: could not connect to host visiontree.eu: could not connect to host visudira.com: could not connect to host -vladimiroff.org: could not connect to host +vkino.com: could not connect to host vlogge.com: could not connect to host vmug.pl: could not connect to host votresiteweb.ch: could not connect to host vrtouring.org: could not connect to host vsx.ch: could not connect to host +vumetric.com: could not connect to host vxapps.com: could not connect to host w4.no: could not connect to host waixingrenfuli.vip: could not connect to host wanashi.com: could not connect to host warlions.info: could not connect to host watchweasel.com: could not connect to host we.serveftp.net: could not connect to host weareincognito.org: could not connect to host +web-wave.jp: could not connect to host webart-factory.de: could not connect to host webcatechism.com: could not connect to host webdesigneauclaire.com: could not connect to host webfox.com.br: could not connect to host webhackspro.com: could not connect to host -webtasarim.pw: could not connect to host webtech.com.br: could not connect to host webthings.com.br: could not connect to host wecanvisit.com: could not connect to host weed.ren: could not connect to host weiler.xyz: could not connect to host welby.cat: could not connect to host werhatunsverraten.eu: could not connect to host werkkrew.xyz: could not connect to host @@ -1033,39 +1034,42 @@ wireframesoftware.com: could not connect wissl.org: could not connect to host wizznab.tk: could not connect to host wjglerum.nl: could not connect to host wolfemg.com: could not connect to host wolfenland.net: could not connect to host woomu.me: could not connect to host wooplagaming.com: could not connect to host workemy.com: could not connect to host -worldfree4.org: could not connect to host wp-fastsearch.de: could not connect to host wp6.pw: could not connect to host +wwv-8522.com: could not connect to host www-68277.com: could not connect to host www-8887999.com: could not connect to host www.re: could not connect to host www.sb: could not connect to host www.simbolo.co.uk: could not connect to host +xeonlab.com: could not connect to host +xeonlab.de: could not connect to host xia100.xyz: could not connect to host xing.ml: could not connect to host -xmiui.com: could not connect to host xn--8mr166hf6s.xn--fiqs8s: could not connect to host xn--d1acj9c.xn--90ais: could not connect to host xn--yj8h0m.ws: could not connect to host xps2pdf.co.uk: could not connect to host xqin.net: could not connect to host xtremenutrition.com.br: could not connect to host xwaretech.info: could not connect to host yabrt.cn: could not connect to host yahoo.ax: could not connect to host yaucy.win: could not connect to host ybresson.com: could not connect to host yffengshi.ml: could not connect to host +yhori.xyz: could not connect to host +yiz96.com: could not connect to host yoga.is-an-engineer.com: could not connect to host yogananda-roma.org: could not connect to host youftp.tk: could not connect to host yousite.by: could not connect to host yum.beer: could not connect to host yuna.tg: could not connect to host yux.fr: could not connect to host yvesx.com: could not connect to host @@ -1085,17 +1089,17 @@ zuehlcke.de: could not connect to host zulu7.com: could not connect to host zuviel.space: could not connect to host zyx.im: could not connect to host zzw.ca: could not connect to host 0005.com: could not connect to host 0005aa.com: could not connect to host 007sascha.de: did not receive HSTS header 020wifi.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 119" data: no] -0222aa.com: did not receive HSTS header +0222aa.com: could not connect to host 048.ag: could not connect to host 050508.com: could not connect to host 0f.io: could not connect to host 0fl.com: did not receive HSTS header 0g.org.uk: could not connect to host 0o0.ooo: could not connect to host 0p.no: did not receive HSTS header 0w0.vc: could not connect to host @@ -1172,25 +1176,26 @@ 300651.ru: did not receive HSTS header 300m.com: did not receive HSTS header 300mbmovie24.com: did not receive HSTS header 300mbmovies4u.cc: could not connect to host 301.website: could not connect to host 302.nyc: could not connect to host 314166.com: could not connect to host 32ph.com: could not connect to host 33drugstore.com: did not receive HSTS header -341.mg: did not receive HSTS header +341.mg: could not connect to host 3555aa.com: could not connect to host 35792.de: could not connect to host 360gradus.com: did not receive HSTS header 365.or.jp: could not connect to host 368mibn.com: could not connect to host 3778xl.com: did not receive HSTS header 38sihu.com: could not connect to host 39sihu.com: could not connect to host +3ags.de: did not receive HSTS header 3chit.cf: could not connect to host 3click-loan.com: could not connect to host 3d-bastler.de: could not connect to host 3dcart.com: did not receive HSTS header 3delivered.com: could not connect to host 3dproteinimaging.com: did not receive HSTS header 3fl.com: did not receive HSTS header 3sreporting.com: did not receive HSTS header @@ -1288,16 +1293,17 @@ aboutyou-deals.de: could not connect to absinthium.ch: could not connect to host abt.de: did not receive HSTS header abtom.de: did not receive HSTS header abury.fr: did not receive HSTS header abury.me: did not receive HSTS header acabadosboston.com: could not connect to host academialowcost.com.br: could not connect to host academicenterprise.org: could not connect to host +acadianapatios.com: did not receive HSTS header acbc.ie: max-age too low: 0 accelerole.com: did not receive HSTS header accelight.co.jp: did not receive HSTS header accelight.jp: did not receive HSTS header access-sofia.org: did not receive HSTS header accommodation-berry.com.au: max-age too low: 300 accountradar.com: could not connect to host accounts-p.com: could not connect to host @@ -1391,16 +1397,17 @@ ahoynetwork.com: did not receive HSTS he ahri.ovh: could not connect to host ahwatukeefoothillsmontessori.com: did not receive HSTS header aicial.co.uk: could not connect to host aicial.com.au: could not connect to host aidanwoods.com: did not receive HSTS header aids.gov: did not receive HSTS header aifreeze.ru: could not connect to host aify.eu: could not connect to host +aimeeandalec.com: did not receive HSTS header ainrb.com: could not connect to host aip-marine.com: could not connect to host aiponne.com: could not connect to host airlea.com: could not connect to host airlinecheckins.com: did not receive HSTS header airproto.com: did not receive HSTS header aishnair.com: could not connect to host aisle3.space: could not connect to host @@ -1412,32 +1419,35 @@ aka.my: did not receive HSTS header akboy.pw: could not connect to host akclinics.org: did not receive HSTS header akerek.hu: could not connect to host akgundemirbas.com: could not connect to host akhilindurti.com: could not connect to host akkadia.cc: could not connect to host akombakom.net: could not connect to host akselimedia.fi: did not receive HSTS header +akstudentsfirst.org: did not receive HSTS header aktivist.in: did not receive HSTS header al-shami.net: could not connect to host aladdin.ie: did not receive HSTS header alanlee.net: could not connect to host alanrickmanflipstable.com: could not connect to host alariel.de: did not receive HSTS header alarme-gps.ch: could not connect to host alarmegps.ch: could not connect to host alarmsystemreviews.com: did not receive HSTS header alaundeil.xyz: could not connect to host albanien.guide: could not connect to host alberguecimballa.es: could not connect to host albertbogdanowicz.pl: did not receive HSTS header albertopimienta.com: did not receive HSTS header alcatraz.online: could not connect to host alcazaar.com: could not connect to host +alecpap.com: did not receive HSTS header +alecpapierniak.com: did not receive HSTS header alecvannoten.be: did not receive HSTS header alenan.org: could not connect to host alessandro.pw: did not receive HSTS header alessandroz.pro: could not connect to host alethearose.com: did not receive HSTS header alexandre.sh: did not receive HSTS header alexbaker.org: did not receive HSTS header alexdodge.ca: could not connect to host @@ -1448,17 +1458,17 @@ alistairpialek.com: max-age too low: 864 alittlebitcheeky.com: did not receive HSTS header aljmz.com: could not connect to host alkami.com: did not receive HSTS header all-subtitles.com: could not connect to host all.tf: could not connect to host all4os.com: did not receive HSTS header alldaymonitoring.com: could not connect to host allegro-inc.com: did not receive HSTS header -allemobieleproviders.nl: did not receive HSTS header +allemobieleproviders.nl: max-age too low: 0 allinnote.com: could not connect to host allmbw.com: could not connect to host allmystery.de: did not receive HSTS header allo-symo.fr: did not receive HSTS header allods-zone.ru: could not connect to host alloffice.com.ua: did not receive HSTS header alloinformatique.net: could not connect to host allrealty.co.za: could not connect to host @@ -1528,16 +1538,17 @@ andreastoneman.com: could not connect to andreigec.net: did not receive HSTS header andrerose.ca: did not receive HSTS header andrew.london: did not receive HSTS header andrewbroekman.com: could not connect to host andrewmichaud.beer: could not connect to host andrewregan.me: could not connect to host andrewx.net: could not connect to host andreypopp.com: could not connect to host +andro2id.com: did not receive HSTS header androidprosmart.com: could not connect to host androoz.se: could not connect to host andyclark.io: could not connect to host andymartin.cc: could not connect to host anfsanchezo.co: could not connect to host anfsanchezo.me: could not connect to host angeloroberto.ch: did not receive HSTS header anghami.com: did not receive HSTS header @@ -1552,18 +1563,18 @@ animurecs.com: did not receive HSTS head aniplus.cf: could not connect to host aniplus.gq: could not connect to host aniplus.ml: could not connect to host anisekai.com: max-age too low: 2592000 anitklib.ml: could not connect to host ankakaak.com: could not connect to host ankaraprofesyonelnakliyat.com: did not receive HSTS header ankaraprofesyonelnakliyat.com.tr: did not receive HSTS header -ankarayilmaznakliyat.com: could not connect to host -ankarayucelnakliyat.com: could not connect to host +ankarayilmaznakliyat.com: did not receive HSTS header +ankarayucelnakliyat.com: did not receive HSTS header annabellaw.com: did not receive HSTS header anomaly.ws: did not receive HSTS header anongoth.pl: could not connect to host anonymo.co.uk: could not connect to host anonymo.uk: could not connect to host anonymousstatecollegelulzsec.com: could not connect to host anook.com: max-age too low: 0 another.ch: could not connect to host @@ -1592,17 +1603,16 @@ aozora.moe: could not connect to host apachelounge.com: did not receive HSTS header apadrinaunolivo.org: did not receive HSTS header apaginastore.com.br: could not connect to host apeasternpower.com: could not connect to host api.mega.co.nz: could not connect to host apibot.de: could not connect to host apis.google.com: did not receive HSTS header (error ignored - included regardless) apis.world: could not connect to host -apisyouwonthate.com: did not receive HSTS header apm.com.tw: did not receive HSTS header apmg-certified.com: did not receive HSTS header apmg-cyber.com: did not receive HSTS header apnakliyat.com: did not receive HSTS header apolloyl.com: could not connect to host aponkral.site: could not connect to host aponkralsunucu.com: could not connect to host aponow.de: did not receive HSTS header @@ -1673,17 +1683,16 @@ as.se: could not connect to host as9178.net: could not connect to host asahikoji.net: could not connect to host asasuou.pw: could not connect to host asc16.com: could not connect to host ascamso.com: could not connect to host aschaefer.net: could not connect to host asdpress.cn: could not connect to host ashlane-cottages.com: could not connect to host -ashmportfolio.com: did not receive HSTS header asianodor.com: could not connect to host ask.pe: did not receive HSTS header askfit.cz: did not receive HSTS header asm-x.com: could not connect to host asmui.ga: could not connect to host asmui.ml: could not connect to host ass.org.au: could not connect to host assekuranzjobs.de: could not connect to host @@ -2185,17 +2194,16 @@ buyaccessible.gov: did not receive HSTS buybaby.eu: did not receive HSTS header buyfox.de: did not receive HSTS header buzzconcert.com: could not connect to host buzztelco.com.au: did not receive HSTS header bw81.xyz: could not connect to host bwear4all.de: could not connect to host by4cqb.cn: could not connect to host bydisk.com: could not connect to host -bynet.cz: could not connect to host bynumlaw.net: did not receive HSTS header bypassed.bid: could not connect to host bypassed.cc: could not connect to host bypassed.club: could not connect to host bypassed.date: could not connect to host bypassed.download: could not connect to host bypassed.faith: could not connect to host bypassed.host: could not connect to host @@ -2293,22 +2301,23 @@ cartesunicef.be: did not receive HSTS he cartoonhd.cc: did not receive HSTS header carwashvapeur.be: could not connect to host casc.cz: did not receive HSTS header casedi.org: max-age too low: 0 casefall.com: could not connect to host cash-pos.com: could not connect to host cashmyphone.ch: could not connect to host casino-cashflow.ru: did not receive HSTS header +casinolegal.pt: did not receive HSTS header casinostest.com: could not connect to host casioshop.eu: did not receive HSTS header casovi.cf: could not connect to host castagnonavocats.com: did not receive HSTS header cata.ga: could not connect to host -catalin.pw: did not receive HSTS header +catalin.pw: could not connect to host catarsisvr.com: could not connect to host catinmay.com: did not receive HSTS header catnapstudios.com: could not connect to host cavaleria.ro: did not receive HSTS header caveclan.org: did not receive HSTS header cavedevs.de: could not connect to host cavedroid.xyz: could not connect to host cbengineeringinc.com: could not connect to host @@ -2323,16 +2332,17 @@ cdnb.co: could not connect to host cdndepo.com: could not connect to host cdreporting.co.uk: did not receive HSTS header cdt.org: did not receive HSTS header celebphotos.blog: did not receive HSTS header celeirorural.com.br: did not receive HSTS header celina-reads.de: did not receive HSTS header cellsites.nz: could not connect to host centennialrewards.com: did not receive HSTS header +centillien.com: did not receive HSTS header centralpoint.be: did not receive HSTS header centralpoint.nl: did not receive HSTS header centralvacsunlimited.net: could not connect to host centralync.com: did not receive HSTS header centrepoint-community.com: could not connect to host centsforchange.net: could not connect to host ceresia.ch: could not connect to host ceritamalam.net: could not connect to host @@ -2384,17 +2394,17 @@ cheesetart.my: could not connect to host cheetah85.de: could not connect to host chefgalles.com.br: could not connect to host chejianer.cn: could not connect to host chenfengyi.com: could not connect to host chensir.net: could not connect to host chepaofen.com: did not receive HSTS header cherekerry.com: could not connect to host cherysunzhang.com: did not receive HSTS header -chesterbrass.uk: did not receive HSTS header +chesterbrass.uk: could not connect to host chestnut.cf: did not receive HSTS header chiamata-aiuto.ch: could not connect to host chib.chat: could not connect to host chihiro.xyz: did not receive HSTS header chijiokeindustries.co.uk: could not connect to host childcaresolutionscny.org: did not receive HSTS header chirgui.eu: could not connect to host chlouis.net: could not connect to host @@ -2434,17 +2444,17 @@ cigarblogs.net: could not connect to hos cigi.site: could not connect to host ciicutini.ro: did not receive HSTS header cim2b.de: could not connect to host cimalando.eu: could not connect to host cinartelorgu.com: did not receive HSTS header cintdirect.com: could not connect to host cioconference.co.nz: could not connect to host ciplanutrition.com: did not receive HSTS header -cirrohost.com: max-age too low: 7776000 +cirrohost.com: could not connect to host ciscohomeanalytics.com: could not connect to host ciscommerce.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 119" data: no] citiagent.cz: could not connect to host cityoflaurel.org: did not receive HSTS header cium.ru: could not connect to host cjcaron.org: could not connect to host cktennis.com: did not receive HSTS header claimit.ml: could not connect to host @@ -2630,17 +2640,16 @@ cormilu.com.br: did not receive HSTS hea coroasdefloresonline.com.br: could not connect to host corozanu.ro: did not receive HSTS header corpoatletico.com.br: could not connect to host corporateencryption.com: could not connect to host correctpaardbatterijnietje.nl: did not receive HSTS header corruption-mc.net: could not connect to host corruption-rsps.net: could not connect to host corruption-server.net: could not connect to host -cortisolsupplement.com: did not receive HSTS header costow.club: could not connect to host count.sh: could not connect to host couponcodeq.com: could not connect to host couragewhispers.ca: could not connect to host coursdeprogrammation.com: could not connect to host coursella.com: did not receive HSTS header covenantbank.net: could not connect to host coverduck.ru: could not connect to host @@ -2695,17 +2704,16 @@ cruzr.xyz: could not connect to host crypt.guru: could not connect to host crypticshell.co.uk: could not connect to host cryptify.eu: could not connect to host cryptobin.org: could not connect to host cryptodash.net: could not connect to host cryptojar.io: did not receive HSTS header cryptolab.pro: could not connect to host cryptolab.tk: could not connect to host -cryptolosophy.io: did not receive HSTS header cryptopartyatx.org: could not connect to host cryptophobia.nl: did not receive HSTS header cryptopush.com: did not receive HSTS header crysadm.com: could not connect to host crystalclassics.co.uk: did not receive HSTS header crystalmate.eu: did not receive HSTS header cs-ubladego.pl: could not connect to host csapak.com: did not receive HSTS header @@ -2812,16 +2820,17 @@ darkanzali.pl: max-age too low: 0 darkfriday.ddns.net: could not connect to host darkhole.cn: did not receive HSTS header darkkeepers.dk: max-age too low: 172800 darknebula.space: could not connect to host darkpony.ru: could not connect to host darksideof.it: could not connect to host darkstance.org: could not connect to host darktree.in: could not connect to host +darlastudio66.com: max-age too low: 7889238 daropia.org: could not connect to host darrenellis.xyz: did not receive HSTS header dash-board.jp: did not receive HSTS header dash.rocks: max-age too low: 0 dashburst.com: did not receive HSTS header dashnimorad.com: did not receive HSTS header data-abundance.com: could not connect to host data.haus: could not connect to host @@ -2849,16 +2858,17 @@ dbx.ovh: could not connect to host dcaracing.nl: could not connect to host dccode.gov: could not connect to host dccraft.net: could not connect to host dcl.re: did not receive HSTS header dcuofriends.net: could not connect to host dcurt.is: did not receive HSTS header dcw.io: did not receive HSTS header ddatsh.com: did not receive HSTS header +ddepot.us: did not receive HSTS header debank.tv: did not receive HSTS header debatch.se: could not connect to host debian-vhost.de: did not receive HSTS header debiton.dk: could not connect to host debtkit.co.uk: did not receive HSTS header debtprotectionreporting.com: did not receive HSTS header decafu.co: could not connect to host decesus.com: could not connect to host @@ -2867,17 +2877,17 @@ decloverly.com: did not receive HSTS hea deco.me: could not connect to host dedicatutiempo.es: could not connect to host deepcovelabs.net: could not connect to host deepcreampie.com: did not receive HSTS header deepearth.uk: could not connect to host deeprecce.com: did not receive HSTS header deeprecce.link: could not connect to host deeprecce.tech: could not connect to host -deepvalley.tech: did not receive HSTS header +deepvision.com.ua: did not receive HSTS header deetz.nl: did not receive HSTS header deetzen.de: did not receive HSTS header defiler.tk: could not connect to host deflumeri.com: did not receive HSTS header degroetenvanrosaline.nl: did not receive HSTS header deight.co: could not connect to host deinserverhost.de: did not receive HSTS header dekasan.ru: could not connect to host @@ -2918,17 +2928,16 @@ destom.be: could not connect to host detector.exposed: could not connect to host detest.org: could not connect to host detutorial.com: did not receive HSTS header deuxvia.com: could not connect to host dev: could not connect to host dev-aegon.azurewebsites.net: did not receive HSTS header dev-bluep.pantheonsite.io: did not receive HSTS header develop.fitness: could not connect to host -devh.net: could not connect to host devincrow.me: could not connect to host devisonline.ch: could not connect to host devmsg.com: did not receive HSTS header devnsec.com: could not connect to host devnull.team: could not connect to host devopps.me: did not receive HSTS header devopsconnected.com: could not connect to host devtub.com: did not receive HSTS header @@ -2958,16 +2967,17 @@ digired.xyz: could not connect to host digitalbank.kz: could not connect to host digitaldaddy.net: could not connect to host digitaldashboard.gov: did not receive HSTS header digitalero.rip: did not receive HSTS header digitaljungle.net: could not connect to host digitalnonplus.com: could not connect to host digitalquery.com: did not receive HSTS header digitalriver.tk: did not receive HSTS header +digitalrxcloud.com: did not receive HSTS header digitalskillswap.com: could not connect to host dim.lighting: could not connect to host dinamoelektrik.com: could not connect to host dingcc.me: could not connect to host dingcc.org: could not connect to host dingcc.xyz: could not connect to host dinkum.online: could not connect to host dipconsultants.com: could not connect to host @@ -3247,17 +3257,17 @@ elan-organics.com: did not receive HSTS elanguest.pl: could not connect to host elanguest.ro: could not connect to host elanguest.ru: could not connect to host elastic7.uk: could not connect to host elblein.de: did not receive HSTS header electricant.com: did not receive HSTS header electricant.nl: did not receive HSTS header electricianforum.co.uk: did not receive HSTS header -electricoperaduo.com: could not connect to host +electricoperaduo.com: did not receive HSTS header electromc.com: could not connect to host eleicoes2016.com.br: did not receive HSTS header elektronring.com: could not connect to host elementarywave.com: could not connect to host elemenx.com: could not connect to host elemprendedor.com.ve: could not connect to host elenag.ga: could not connect to host elenagherta.ga: could not connect to host @@ -3491,17 +3501,16 @@ fam-weyer.de: did not receive HSTS heade fame-agency.net: could not connect to host famep.gov: could not connect to host familie-sprink.de: could not connect to host familie-zimmermann.at: could not connect to host famio.cn: could not connect to host fanflow.com: did not receive HSTS header fant.dk: did not receive HSTS header fantasticgardenersmelbourne.com.au: did not receive HSTS header -fantasyescortsbirmingham.co.uk: did not receive HSTS header fantasyfootballpundit.com: did not receive HSTS header fanyl.cn: could not connect to host farces.com: did not receive HSTS header farwat.ru: did not receive HSTS header fashion.net: did not receive HSTS header fashioncare.cz: did not receive HSTS header fashionholic.my: did not receive HSTS header fashionoutfits24.com: did not receive HSTS header @@ -3618,17 +3627,17 @@ florianlillpopp.de: max-age too low: 10 floridaescapes.co.uk: did not receive HSTS header flouartistique.ch: could not connect to host flow.pe: could not connect to host flowersandclouds.com: could not connect to host floweslawncare.com: did not receive HSTS header flowlo.me: could not connect to host fluidojobs.com: could not connect to host flukethoughts.com: could not connect to host -flurrybridge.com: could not connect to host +flurrybridge.com: did not receive HSTS header flushstudios.com: did not receive HSTS header flyaces.com: could not connect to host fm83.nl: could not connect to host fmi.gov: did not receive HSTS header fnvsecurity.com: could not connect to host fobc-usa.org: did not receive HSTS header fojtova.cz: did not receive HSTS header fojtovi.cz: did not receive HSTS header @@ -3776,17 +3785,16 @@ gakkainavi4.com: could not connect to ho gakkainavi4.net: did not receive HSTS header galardi.org: could not connect to host galena.io: could not connect to host galenskap.eu: could not connect to host galeriadobimba.com.br: could not connect to host gallery44.org: did not receive HSTS header galoisvpn.xyz: could not connect to host gambitcloud.net: could not connect to host -game-files.net: could not connect to host game.yt: could not connect to host gamecave.de: could not connect to host gamechasm.com: could not connect to host gamefund.me: did not receive HSTS header gamehacks.me: could not connect to host gameink.net: max-age too low: 0 gamek.es: could not connect to host gamenected.com: could not connect to host @@ -3802,17 +3810,17 @@ gamesdepartment.co.uk: did not receive H gameserver-sponsor.de: did not receive HSTS header gamesurferapp.com: could not connect to host gamingmedia.eu: did not receive HSTS header gaptek.id: could not connect to host garageon.net: did not receive HSTS header garciamartin.me: could not connect to host garcinia--cambogia.com: could not connect to host garden.trade: could not connect to host -gardencarezone.com: did not receive HSTS header +gardencarezone.com: could not connect to host garfieldairlines.net: did not receive HSTS header gatapro.net: could not connect to host gatorsa.es: did not receive HSTS header gaussorgues.me: could not connect to host gdegem.org: did not receive HSTS header gebn.co.uk: did not receive HSTS header gebn.uk: could not connect to host gedankenbude.info: could not connect to host @@ -3874,17 +3882,16 @@ gfm.tech: could not connect to host gfournier.ca: could not connect to host gfwsb.ml: could not connect to host ggss.ml: could not connect to host gheorghe-sarcov.ga: could not connect to host gheorghesarcov.ga: could not connect to host gheorghesarcov.tk: could not connect to host ghkim.net: could not connect to host ghostcir.com: could not connect to host -ghrelinblocker.org: did not receive HSTS header giakki.eu: could not connect to host gianlucapartengo.photography: did not receive HSTS header gibraltar-firma.com: did not receive HSTS header gidea.nu: could not connect to host gietvloergarant.nl: did not receive HSTS header giftgofers.com: did not receive HSTS header giftservices.nl: could not connect to host gigacloud.org: max-age too low: 0 @@ -3924,17 +3931,17 @@ gloucesterphotographer.com: did not rece glubbforum.de: did not receive HSTS header glws.org: did not receive HSTS header gm-assicurazioni.it: could not connect to host gmail.com: did not receive HSTS header (error ignored - included regardless) gmat.ovh: could not connect to host gmoes.at: max-age too low: 600000 go.ax: did not receive HSTS header go2sh.de: did not receive HSTS header -go4it.solutions: did not receive HSTS header +go4it.solutions: could not connect to host goabonga.com: could not connect to host goalsetup.com: did not receive HSTS header goaltree.ch: did not receive HSTS header goarmy.eu: could not connect to host goat.chat: did not receive HSTS header goat.xyz: max-age too low: 86400 goben.ch: could not connect to host goblins.net: did not receive HSTS header @@ -4012,17 +4019,16 @@ greatsong.net: did not receive HSTS head greencardtalent.com: could not connect to host greenesting.ch: could not connect to host greenesting.com: could not connect to host greenhillantiques.co.uk: did not receive HSTS header greensolid.biz: could not connect to host greenvines.com.tw: did not receive HSTS header greenvpn.ltd: could not connect to host greenvpn.pro: did not receive HSTS header -greg.red: could not connect to host gregmilton.com: could not connect to host gregmilton.org: could not connect to host gregorytlee.me: could not connect to host grekland.guide: could not connect to host gremots.com: could not connect to host greplin.com: could not connect to host gresb.com: did not receive HSTS header gretchelizartistry.com: did not receive HSTS header @@ -4069,17 +4075,16 @@ gugga.dk: could not connect to host guguke.net: did not receive HSTS header guilde-vindicta.fr: did not receive HSTS header guillaume-leduc.fr: did not receive HSTS header guillaumematheron.fr: did not receive HSTS header guineafruitcorp.com: could not connect to host gulch.in.ua: did not receive HSTS header gulenet.com: could not connect to host gulfcoast-sandbox.com: could not connect to host -guniram.com: did not receive HSTS header gunnarhafdal.com: did not receive HSTS header gunnaro.com: could not connect to host guntbert.net: could not connect to host guoqiang.info: could not connect to host gurom.lv: could not connect to host gurusupe.com: could not connect to host guso.gq: could not connect to host guso.ml: could not connect to host @@ -4373,16 +4378,17 @@ hypa.net.au: did not receive HSTS header hyper69.com: did not receive HSTS header hypnoresults.com.au: did not receive HSTS header hypnos.hu: could not connect to host hysg.me: could not connect to host i-jp.net: could not connect to host i-partners.sk: did not receive HSTS header i-rickroll-n.pw: could not connect to host i10z.com: could not connect to host +iacono.com.br: did not receive HSTS header iamjoshellis.com: could not connect to host iamokay.nl: did not receive HSTS header iamreubin.co.uk: did not receive HSTS header iamveto.com: could not connect to host iapws.com: did not receive HSTS header iban.is: could not connect to host ibarf.nl: did not receive HSTS header ibnuwebhost.com: could not connect to host @@ -4505,17 +4511,16 @@ inforichjapan.com: did not receive HSTS informaticapremium.com: did not receive HSTS header infosec.rip: could not connect to host infosoph.org: did not receive HSTS header infotics.es: did not receive HSTS header infura.co.th: could not connect to host ingeeibach.de: could not connect to host ingesol.fr: did not receive HSTS header inhelix.com: could not connect to host -inishbofin.ie: did not receive HSTS header injertoshorticolas.com: did not receive HSTS header injigo.com: did not receive HSTS header injust.cf: could not connect to host injust.ga: could not connect to host injust.gq: could not connect to host injust.ml: could not connect to host injust.tk: could not connect to host inked-guy.de: could not connect to host @@ -4614,17 +4619,17 @@ isdf.me: could not connect to host isef-eg.com: did not receive HSTS header iseulde.com: did not receive HSTS header ishadowsocks.ltd: could not connect to host ishangirdhar.com: could not connect to host ishillaryclintoninprisonyet.com: could not connect to host isitamor.pm: could not connect to host iskaz.rs: did not receive HSTS header islandzero.net: did not receive HSTS header -islief.com: could not connect to host +islief.com: did not receive HSTS header ismetroonfiretoday.com: could not connect to host isogen5.com: could not connect to host isogram.nl: could not connect to host istanbultravelguide.info: could not connect to host istaspirtslietas.lv: did not receive HSTS header it-cave.com: could not connect to host it-go.net: did not receive HSTS header it-schwerin.de: could not connect to host @@ -4632,16 +4637,17 @@ itechgeek.com: max-age too low: 0 items.lv: did not receive HSTS header itemton.com: could not connect to host ithakama.com: did not receive HSTS header ithakama.cz: did not receive HSTS header itinsight.hu: did not receive HSTS header itos.asia: did not receive HSTS header itos.pl: did not receive HSTS header itpol.dk: did not receive HSTS header +itrack.in.th: did not receive HSTS header itriskltd.com: did not receive HSTS header itsadog.co.uk: did not receive HSTS header itsagadget.com: did not receive HSTS header itsamurai.ru: max-age too low: 2592000 itsecurityassurance.pw: could not connect to host itsg-faq.de: could not connect to host itshost.ru: could not connect to host itu2015.de: could not connect to host @@ -4670,17 +4676,16 @@ jackalworks.com: could not connect to ho jackdoan.com: did not receive HSTS header jackfahnestock.com: could not connect to host jacobparry.ca: did not receive HSTS header jagido.de: did not receive HSTS header jahliveradio.com: could not connect to host jamanji.com.ng: could not connect to host james-parker.com: did not receive HSTS header james.je: could not connect to host -jamesachambers.com: could not connect to host jamesandpame.la: could not connect to host jamesburton.london: could not connect to host jamesbywater.co.uk: could not connect to host jamesbywater.com: could not connect to host jamesbywater.me: could not connect to host jamesbywater.me.uk: could not connect to host jamesbywater.uk: could not connect to host jamesconroyfinn.com: did not receive HSTS header @@ -5056,17 +5061,16 @@ kriegt.es: did not receive HSTS header kristjanrang.eu: did not receive HSTS header kristofferkoch.com: could not connect to host krizevackapajdasija.hr: could not connect to host krizevci.info: did not receive HSTS header krmela.com: did not receive HSTS header kroetenfuchs.de: could not connect to host kromonos.net: did not receive HSTS header kroodle.nl: did not receive HSTS header -krsn.de: did not receive HSTS header kruegerrand-wert.de: did not receive HSTS header krugermillions.org: did not receive HSTS header krunut.com: did not receive HSTS header krypteia.org: could not connect to host kryptomech.com: could not connect to host ksfh-mail.de: could not connect to host kstan.me: could not connect to host ksukelife.com: did not receive HSTS header @@ -5283,31 +5287,32 @@ linuxmint.cz: could not connect to host linuxmonitoring.net: did not receive HSTS header liquid.solutions: did not receive HSTS header liquorsanthe.in: could not connect to host lisaco.de: could not connect to host lisbongold.com: did not receive HSTS header lisgade.dk: did not receive HSTS header listafirmelor.com: could not connect to host listage.ovh: did not receive HSTS header +litcomphonors.com: did not receive HSTS header litespeed.io: could not connect to host little.pw: could not connect to host littlefreelibrary.org: did not receive HSTS header littleqiu.net: could not connect to host liujunyang.com: could not connect to host livecards.co.uk: did not receive HSTS header livedemo.io: could not connect to host livej.am: could not connect to host liverewrite.com: could not connect to host liviababynet.com.br: could not connect to host lixiang.one: could not connect to host lixingcong.com: could not connect to host lkp111138.me: could not connect to host llamasweet.tech: could not connect to host -loacg.com: did not receive HSTS header +loacg.com: could not connect to host loadingdeck.com: did not receive HSTS header loadso.me: could not connect to host loafbox.com: could not connect to host loansonline.today: could not connect to host lobste.rs: did not receive HSTS header localchum.com: could not connect to host localdrive.me: could not connect to host localnetwork.nz: could not connect to host @@ -5499,16 +5504,17 @@ manifestbin.com: did not receive HSTS he manitasicily.com: did not receive HSTS header manningbrothers.com: did not receive HSTS header mansfieldplacevt.com: did not receive HSTS header manshop24.com: could not connect to host mansion-note.com: did not receive HSTS header manududu.com.br: did not receive HSTS header maomaofuli.vip: could not connect to host maple5.com: did not receive HSTS header +marakovits.net: did not receive HSTS header marcaudefroy.com: did not receive HSTS header marcelparra.com: could not connect to host marchagen.nl: did not receive HSTS header marco01809.net: could not connect to host marcoececilia.it: did not receive HSTS header marcofinke.de: could not connect to host marcontrol.com: did not receive HSTS header marcosteixeira.tk: could not connect to host @@ -5571,17 +5577,16 @@ matchneedle.com: could not connect to ho maternalsafety.org: did not receive HSTS header mateusmeyer.com.br: did not receive HSTS header mathers.ovh: did not receive HSTS header matillat.ovh: did not receive HSTS header matlabjo.ir: did not receive HSTS header matomeplus.co: could not connect to host matrict.com: could not connect to host matrip.de: could not connect to host -matrix.ac: could not connect to host matrixcheats.net: could not connect to host matsuz.com: could not connect to host matt.tf: did not receive HSTS header mattandreko.com: did not receive HSTS header mattberryman.com: max-age too low: 43200 matterconcern.com: could not connect to host mattfin.ch: could not connect to host matthewohare.com: did not receive HSTS header @@ -5625,29 +5630,27 @@ meadowfen.farm: could not connect to hos meadowfenfarm.com: could not connect to host meamod.com: max-age too low: 0 meat-education.com: could not connect to host mebio.us: did not receive HSTS header mecenat-cassous.com: did not receive HSTS header mechmk1.me: did not receive HSTS header medallia.io: could not connect to host mediacru.sh: could not connect to host -mediaexpert.fr: did not receive HSTS header mediafinancelab.org: did not receive HSTS header mediamag.am: max-age too low: 0 mediastorm.us: could not connect to host mediawikicn.org: could not connect to host medienservice-fritz.de: did not receive HSTS header medirich.co: could not connect to host meditek-dv.ru: could not connect to host medm-test.com: could not connect to host medzinenews.com: did not receive HSTS header meedoennoordkop.nl: did not receive HSTS header meedoenzaanstad.nl: did not receive HSTS header -meehle.com: did not receive HSTS header meetfinch.com: could not connect to host meetings2.com: did not receive HSTS header meetscompany.jp: did not receive HSTS header megakiste.de: could not connect to host megashur.se: did not receive HSTS header meghudson.com: could not connect to host meifrench.com: could not connect to host meillard-auto-ecole.ch: could not connect to host @@ -5704,16 +5707,17 @@ mhdsyarif.com: did not receive HSTS head mhealthdemocamp.com: could not connect to host mhertel.com: did not receive HSTS header mhict.nl: could not connect to host mht-travel.com: could not connect to host mhx.pw: could not connect to host mi80.com: could not connect to host mia.to: did not receive HSTS header mianfei-vpn.com: did not receive HSTS header +miboulot.com: did not receive HSTS header michaeldemuth.com: could not connect to host michaelfitzpatrickruth.com: could not connect to host michaelmorpurgo.com: did not receive HSTS header michaeln.net: did not receive HSTS header michaelscrivo.com: did not receive HSTS header michaelwaite.org: could not connect to host michal-kral.cz: could not connect to host michalborka.cz: could not connect to host @@ -5725,17 +5729,17 @@ microme.ga: could not connect to host micropple.net: could not connect to host microtalk.org: could not connect to host midirs.org: did not receive HSTS header midonet.org: did not receive HSTS header midriversmotorsllc.com: did not receive HSTS header midwestwomenworkers.org: could not connect to host miegl.cz: could not connect to host miemie.jp: could not connect to host -migeeks.de: did not receive HSTS header +migeeks.de: could not connect to host mightydicks.io: could not connect to host mightydicks.tech: could not connect to host mightysounds.cz: max-age too low: 0 migrator.co: could not connect to host miguksaram.com: could not connect to host mijcorijneveld.nl: did not receive HSTS header mijn-email.org: could not connect to host mijnetickets.nl: did not receive HSTS header @@ -5777,16 +5781,17 @@ minecraftforums.gq: could not connect to minecraftforums.ml: could not connect to host minecraftserverz.com: could not connect to host minecraftvoter.com: could not connect to host mineover.es: could not connect to host mingo.nl: max-age too low: 2592000 minh.at: could not connect to host mini-piraten.de: did not receive HSTS header minikneet.nl: could not connect to host +minimaliston.com: did not receive HSTS header minimoo.se: could not connect to host minnesotadata.com: could not connect to host minora.io: could not connect to host minoris.se: could not connect to host miragrow.com: could not connect to host mirindadomo.ru: did not receive HSTS header mironized.com: did not receive HSTS header mirrorx.com: did not receive HSTS header @@ -5844,17 +5849,17 @@ moderatortv.de: did not receive HSTS hea modx.by: max-age too low: 31536 modx.io: did not receive HSTS header modydev.club: could not connect to host moe4sale.in: did not receive HSTS header moebel-nagel.de: did not receive HSTS header moegirl.org: did not receive HSTS header moellers.it: could not connect to host moelord.org: could not connect to host -moen.io: did not receive HSTS header +moen.io: could not connect to host mogry.net: did not receive HSTS header moho.kr: could not connect to host mohs.es: could not connect to host moitur.com: could not connect to host mokhtarmial.com: did not receive HSTS header mols.me: could not connect to host mommel.com: could not connect to host mommelonline.de: could not connect to host @@ -5905,18 +5910,18 @@ motocyklovedily.cz: did not receive HSTS mottvd.com: could not connect to host moudicat.com: max-age too low: 6307200 moula.com.au: did not receive HSTS header mountainmusicpromotions.com: did not receive HSTS header moviedollars.com: did not receive HSTS header moviesabout.net: could not connect to host moy-gorod.od.ua: did not receive HSTS header mozoa.net: could not connect to host -mp3donusturucu.com: did not receive HSTS header -mp3donusturucu.net: did not receive HSTS header +mp3donusturucu.com: could not connect to host +mp3donusturucu.net: could not connect to host mp3juices.is: could not connect to host mpkossen.com: did not receive HSTS header mqas.net: could not connect to host mr-hosting.com: could not connect to host mrawe.com: could not connect to host mrdani.net: could not connect to host mredsanders.net: did not receive HSTS header mrettich.org: did not receive HSTS header @@ -5996,23 +6001,23 @@ mynetblog.com: did not receive HSTS head myni.io: could not connect to host mynigma.org: did not receive HSTS header mypagella.com: could not connect to host mypagella.eu: could not connect to host mypagella.it: could not connect to host mypension.ca: could not connect to host myphonebox.de: could not connect to host myraytech.net: did not receive HSTS header -myrig.com: did not receive HSTS header myrig.net: could not connect to host myrsa.in: did not receive HSTS header mysecretrewards.com: could not connect to host myspa.asia: did not receive HSTS header mystery-science-theater-3000.de: could not connect to host mysteryblog.de: did not receive HSTS header +mysupboard.de: did not receive HSTS header mythlogic.com: did not receive HSTS header mythslegendscollection.com: did not receive HSTS header myweb360.de: did not receive HSTS header myzone.com: did not receive HSTS header n-rickroll-e.pw: could not connect to host n0psled.nl: could not connect to host n2x.in: could not connect to host n4l.pw: could not connect to host @@ -6041,17 +6046,16 @@ nan.zone: could not connect to host nandex.org: could not connect to host naniki.co.uk: did not receive HSTS header nanogeneinc.com: could not connect to host nanokamo.com: did not receive HSTS header nanrenba.net: could not connect to host nansay.cn: could not connect to host nanto.eu: could not connect to host narodniki.com: did not receive HSTS header -narviz.com: did not receive HSTS header nashira.cz: did not receive HSTS header nasralmabrooka.com: did not receive HSTS header natalia-fadeeva.ru: could not connect to host natalia.io: could not connect to host natalieandjoshua.com: could not connect to host natalt.org: did not receive HSTS header nathan.io: did not receive HSTS header nathanmfarrugia.com: did not receive HSTS header @@ -6084,16 +6088,17 @@ neftaly.com: did not receive HSTS header negativzinsen.info: did not receive HSTS header neilgreen.net: did not receive HSTS header neko-life.com: did not receive HSTS header neko-system.com: did not receive HSTS header nemno.de: could not connect to host nemovement.org: could not connect to host neoani.me: did not receive HSTS header neofelhz.space: could not connect to host +neokobe.city: did not receive HSTS header neonisi.com: could not connect to host neonnuke.tech: did not receive HSTS header neosolution.ca: did not receive HSTS header nepustil.net: did not receive HSTS header nerd42.de: could not connect to host neris.io: could not connect to host nestedquotes.ca: could not connect to host net-navi.cc: did not receive HSTS header @@ -6166,17 +6171,16 @@ niklaslindblad.se: did not receive HSTS niloxy.com: did not receive HSTS header nilrem.org: did not receive HSTS header ninchisho-online.com: did not receive HSTS header ninhs.org: could not connect to host ninjaspiders.com: did not receive HSTS header nippler.org: could not connect to host nippombashi.net: did not receive HSTS header nipponcareers.com: did not receive HSTS header -nitropanel.com: did not receive HSTS header nixien.fr: could not connect to host nixmag.net: could not connect to host nkautoservice.nl: could not connect to host nll.fi: could not connect to host nmadda.com: could not connect to host nmctest.net: could not connect to host nmueller.at: could not connect to host nnote.net: did not receive HSTS header @@ -6893,16 +6897,17 @@ proxyrox.com: could not connect to host prxio.date: could not connect to host prxio.site: could not connect to host ps4all.nl: did not receive HSTS header pscleaningsolutions.co.uk: could not connect to host pshostpk.com: did not receive HSTS header psicologia.co.ve: could not connect to host psw.academy: could not connect to host psw.consulting: could not connect to host +psycho-lobby.com: did not receive HSTS header ptn.moscow: could not connect to host ptonet.com: could not connect to host pubkey.is: could not connect to host publications.qld.gov.au: did not receive HSTS header publicidadnovagrass.com.mx: could not connect to host publicspeakingcamps.com: could not connect to host puentes.info: did not receive HSTS header pugliese.fr: could not connect to host @@ -7037,16 +7042,17 @@ rbhighinc.org: could not connect to host rbose.org: could not connect to host rbqcloud.com: did not receive HSTS header rbti.me: could not connect to host rc-rp.com: could not connect to host rc4.io: could not connect to host rcafox.com: could not connect to host rcorporation.be: did not receive HSTS header rcpcbd.com: could not connect to host +rcraigmurphy.net: did not receive HSTS header rcvd.io: did not receive HSTS header rdns.im: did not receive HSTS header rdyrda.fr: could not connect to host re-customer.net: did not receive HSTS header reachr.com: could not connect to host reader.ga: could not connect to host readmeeatmedrinkme.com: could not connect to host readr.pw: could not connect to host @@ -7089,16 +7095,17 @@ reikiqueen.uk: could not connect to host reisyukaku.org: did not receive HSTS header reithguard-it.de: did not receive HSTS header rejo.in: could not connect to host rejuvemedspa.com: did not receive HSTS header relayawards.com: could not connect to host reldoc.com.mx: did not receive HSTS header reliable-mail.de: did not receive HSTS header relisten.nl: did not receive HSTS header +relvan.com: did not receive HSTS header rem.pe: could not connect to host rema.site: could not connect to host remaimodern.org: did not receive HSTS header remedica.fr: did not receive HSTS header remedium.de: did not receive HSTS header rememberthis.co.za: could not connect to host remitatm.com: did not receive HSTS header remodela.com.ve: could not connect to host @@ -7125,27 +7132,26 @@ res-rheingau.de: did not receive HSTS he res42.com: could not connect to host reserve-online.net: did not receive HSTS header residentsinsurance.co.uk: did not receive HSTS header resl20.servehttp.com: could not connect to host respice.xyz: could not connect to host respostas.com.br: did not receive HSTS header restaurace-klokocka.cz: did not receive HSTS header restchart.com: did not receive HSTS header -restrealitaet.de: did not receive HSTS header retroarms.com: did not receive HSTS header retroarms.cz: did not receive HSTS header returnofwar.com: could not connect to host revapost.ch: could not connect to host revealdata.com: did not receive HSTS header revelaciones.tv: could not connect to host revello.org: did not receive HSTS header reverie.pw: could not connect to host review.info: did not receive HSTS header -reviewjust.com: did not receive HSTS header +reviewjust.com: could not connect to host reviews.anime.my: max-age too low: 5184000 revtut.net: could not connect to host rewardstock.com: max-age too low: 0 rewopit.net: did not receive HSTS header rhapsodhy.hu: could not connect to host rhdigital.pro: could not connect to host rhering.de: could not connect to host rhodosdreef.nl: could not connect to host @@ -7180,17 +7186,16 @@ rivlo.com: could not connect to host rix.ninja: could not connect to host rizon.me: could not connect to host rj.gg: could not connect to host rk6.cz: could not connect to host rkkhok.hu: did not receive HSTS header rkmantpur.org: did not receive HSTS header rmaqequipamentos.com.br: did not receive HSTS header rme.li: did not receive HSTS header -rngmeme.com: could not connect to host roadfeast.com: could not connect to host roan24.pl: did not receive HSTS header robertglastra.com: could not connect to host robigalia.org: did not receive HSTS header robteix.com: did not receive HSTS header robtex.com: did not receive HSTS header robtex.net: did not receive HSTS header robtex.org: did not receive HSTS header @@ -7208,16 +7213,17 @@ roesemann.email: could not connect to ho roguelikecenter.fr: did not receive HSTS header rolandreed.cn: did not receive HSTS header rolandslate.com: did not receive HSTS header rolemaster.net: could not connect to host roleplayhome.com: could not connect to host rolroer.co.za: could not connect to host romab.com: did not receive HSTS header romaimperator.com: did not receive HSTS header +romainmuller.xyz: did not receive HSTS header romans-place.me.uk: could not connect to host romarin.es: did not receive HSTS header romeoferraris.com: did not receive HSTS header romulusapp.com: could not connect to host ron2k.za.net: could not connect to host rondoniatec.com.br: did not receive HSTS header ronvandordt.info: could not connect to host ronwo.de: max-age too low: 1 @@ -7496,17 +7502,17 @@ seq.tf: did not receive HSTS header serathius.ovh: could not connect to host serbien.guide: could not connect to host serenitycreams.com: did not receive HSTS header serfdom.io: did not receive HSTS header serized.pw: could not connect to host serverangels.co.uk: could not connect to host servercode.ca: did not receive HSTS header serverdensity.io: did not receive HSTS header -servergno.me: could not connect to host +servergno.me: did not receive HSTS header servermonkey.nl: could not connect to host servicevie.com: did not receive HSTS header servious.org: could not connect to host servu.de: did not receive HSTS header seryo.moe: could not connect to host seryo.net: could not connect to host sessionslogning.dk: could not connect to host setphaserstostun.org: could not connect to host @@ -7616,16 +7622,17 @@ simon.butcher.name: max-age too low: 262 simongong.net: did not receive HSTS header simonsaxon.com: did not receive HSTS header simpan.id: did not receive HSTS header simpleai.net: max-age too low: 600 simplelearner.com: could not connect to host simplepractice.com: did not receive HSTS header simplixos.org: could not connect to host simplyenak.com: did not receive HSTS header +simplyfixit.co.uk: did not receive HSTS header sin30.net: could not connect to host sincai666.com: could not connect to host sincron.org: could not connect to host sinful.pw: could not connect to host singul4rity.com: could not connect to host sinneserweiterung.de: could not connect to host sinosky.org: did not receive HSTS header sipc.org: did not receive HSTS header @@ -7789,16 +7796,17 @@ sparsa.army: could not connect to host sparta-trade.com: could not connect to host spauted.com: could not connect to host spdysync.com: could not connect to host specialedesigns.com: could not connect to host speculor.net: could not connect to host spedition-transport-umzug.de: did not receive HSTS header speed-mailer.com: could not connect to host speedcounter.net: did not receive HSTS header +speeds.vip: did not receive HSTS header speedy.lt: max-age too low: 0 speedyprep.com: did not receive HSTS header speidel.com.tr: did not receive HSTS header spencerbaer.com: could not connect to host sperohub.io: could not connect to host spiegels.nl: could not connect to host spielcasinos.com: did not receive HSTS header spikeykc.me: did not receive HSTS header @@ -7806,16 +7814,17 @@ spillmaker.no: did not receive HSTS head spilsbury.io: could not connect to host spirit-dev.net: max-age too low: 0 spisoggrin.dk: did not receive HSTS header spitefultowel.com: did not receive HSTS header spititout.it: could not connect to host spittersberger.recipes: did not receive HSTS header spokonline.com: could not connect to host sponsortobias.com: could not connect to host +sport-socken.net: did not receive HSTS header sportchirp-internal.azurewebsites.net: did not receive HSTS header sporthit.ru: did not receive HSTS header sportifik.com: did not receive HSTS header sportingoods.com.br: could not connect to host sportscollection.com.br: could not connect to host sportwette.eu: did not receive HSTS header spot-events.com: could not connect to host spotifyripper.tk: could not connect to host @@ -8046,16 +8055,17 @@ t-complex.space: could not connect to ho t-ken.xyz: could not connect to host t-tz.com: could not connect to host t0dd.eu: could not connect to host t2i.nl: max-age too low: 3600 t4c-rebirth.com: could not connect to host t4x.org: could not connect to host taabe.xyz: could not connect to host taberu-fujitsubo.com: did not receive HSTS header +tabithawebb.co.uk: did not receive HSTS header tadigitalstore.com: could not connect to host tafoma.com: did not receive HSTS header tageau.com: could not connect to host taglondon.org: did not receive HSTS header tailify.com: did not receive HSTS header tails.com.ar: did not receive HSTS header takumi-s.net: did not receive HSTS header talado.gr: could not connect to host @@ -8325,20 +8335,19 @@ ticktock.today: did not receive HSTS hea tictactux.de: could not connect to host tidmore.us: could not connect to host tiendschuurstraat.nl: could not connect to host tiensnet.com: could not connect to host tierrarp.com: could not connect to host tightlineproductions.com: did not receive HSTS header tikutiku.pl: could not connect to host tildebot.com: could not connect to host -tiliaze.eu: did not receive HSTS header tilient.eu: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 119" data: no] tilikum.io: did not receive HSTS header -tilkah.com.au: did not receive HSTS header +tilkah.com.au: could not connect to host tillcraft.com: could not connect to host timbeilby.com: could not connect to host timbuktutimber.com: did not receive HSTS header timcamara.com: could not connect to host time-river.xyz: could not connect to host timesavingplugins.com: could not connect to host timesavingplugins.net: could not connect to host timeserver0.de: could not connect to host @@ -8365,16 +8374,17 @@ titanleaf.com: could not connect to host titouan.co: did not receive HSTS header tittarpuls.se: could not connect to host titties.ml: could not connect to host tjc.wiki: could not connect to host tjeckien.guide: could not connect to host tkappertjedemetamorfose.nl: could not connect to host tkarstens.de: did not receive HSTS header tkonstantopoulos.tk: could not connect to host +tlach.cz: did not receive HSTS header tlcdn.net: could not connect to host tlo.hosting: could not connect to host tlo.link: could not connect to host tlo.network: could not connect to host tls.li: could not connect to host tlsbv.nl: did not receive HSTS header tlshost.net: could not connect to host tm-solutions.eu: did not receive HSTS header @@ -8589,17 +8599,17 @@ tyroremotes.no: did not receive HSTS hea tyskland.guide: could not connect to host tzappa.net: could not connect to host u-blox.com: max-age too low: 0 uadp.pw: did not receive HSTS header uber.com.au: did not receive HSTS header uberfunction.com: did not receive HSTS header ubicloud.de: did not receive HSTS header ublox.com: did not receive HSTS header -ucppe.org: could not connect to host +ucppe.org: did not receive HSTS header uega.net: did not receive HSTS header uevan.com: did not receive HSTS header ufgaming.com: did not receive HSTS header ufotable.uk: did not receive HSTS header ugo.ninja: could not connect to host ugosadventures.com: could not connect to host uhm.io: could not connect to host ukas.com: did not receive HSTS header @@ -8643,16 +8653,17 @@ unblockmy.tech: did not receive HSTS hea unblockmy.xyz: did not receive HSTS header unblockmyproxy.site: could not connect to host unblockthe.site: did not receive HSTS header unblockthe.top: could not connect to host unccdesign.club: could not connect to host unclegen.xyz: could not connect to host under30stravelinsurance.com.au: did not receive HSTS header underkin.com: could not connect to host +underlined.fr: did not receive HSTS header unfiltered.nyc: could not connect to host ungern.guide: could not connect to host uni-games.com: could not connect to host unicefkaarten.be: did not receive HSTS header unicooo.com: could not connect to host unifei.edu.br: did not receive HSTS header uniformecomgas.com.br: could not connect to host uniformehumboldt.com.br: did not receive HSTS header @@ -8755,16 +8766,17 @@ vampirism.eu: could not connect to host vanacht.co.za: did not receive HSTS header vanajahosting.com: did not receive HSTS header vanderkley.it: could not connect to host vanestack.com: could not connect to host vanetv.com: could not connect to host vanitas.xyz: could not connect to host vanitynailworkz.com: could not connect to host vansieleghem.com: could not connect to host +vanvoro.us: did not receive HSTS header vapordepot.jp: did not receive HSTS header vasa-webstranka.sk: did not receive HSTS header vasanth.org: could not connect to host vbest.net: could not connect to host vbhelp.org: could not connect to host vbulletin-russia.com: could not connect to host vbulletinrussia.com: could not connect to host vcdove.com: could not connect to host @@ -8846,16 +8858,17 @@ vision-painting.com: did not receive HST visitbroadstairs.com: could not connect to host vissanum.com: did not receive HSTS header vissersgrootboek.nl: did not receive HSTS header vistarait.com: could not connect to host visualvotes.co.uk: could not connect to host vitagenda.nl: could not connect to host vitalita.cz: did not receive HSTS header vitalorange.com: max-age too low: 7889238 +vitamaxxi.com.br: did not receive HSTS header vitta.me: did not receive HSTS header viva-french.com: did not receive HSTS header vivasports.com.br: could not connect to host vivocloud.com: could not connect to host vivremoinscher.fr: did not receive HSTS header vizeat.com: did not receive HSTS header vizional.com: max-age too low: 0 vjeff.com: could not connect to host @@ -8937,18 +8950,16 @@ wangqiliang.org: did not receive HSTS he wangqiliang.xn--fiqs8s: could not connect to host wangzuan168.cc: could not connect to host wapjt.cn: could not connect to host wapt.fr: did not receive HSTS header warandpeace.xyz: could not connect to host wardsegers.be: did not receive HSTS header warehost.de: did not receive HSTS header warhistoryonline.com: max-age too low: 0 -warp-radio.com: did not receive HSTS header -warp-radio.tv: did not receive HSTS header warped.com: did not receive HSTS header warrencreative.com: did not receive HSTS header warsentech.com: could not connect to host warsh.moe: did not receive HSTS header watchium.com: did not receive HSTS header waterforlife.net.au: did not receive HSTS header waterpoint.com.br: could not connect to host watersportmarkt.net: did not receive HSTS header @@ -9032,18 +9043,18 @@ wetoxic.com: did not receive HSTS header wettbonus.info: max-age too low: 0 wettbuero.de: did not receive HSTS header wetten.eu: did not receive HSTS header wettertoertchen.com: could not connect to host wetttipps.com: could not connect to host wetttipps.de: could not connect to host wevahoo.com: could not connect to host wevolver.com: did not receive HSTS header -wewillgo.com: did not receive HSTS header -wewillgo.org: did not receive HSTS header +wewillgo.com: could not connect to host +wewillgo.org: could not connect to host wewlad.me: did not receive HSTS header wftda.com: did not receive HSTS header wg3k.us: did not receive HSTS header whatnext.limited: did not receive HSTS header whats.io: could not connect to host whatsstalk.me: could not connect to host whatsyouroffer.co.uk: did not receive HSTS header wheresben.today: could not connect to host @@ -9170,17 +9181,17 @@ www-1117.com: could not connect to host www-39988.com: did not receive HSTS header www-507.net: did not receive HSTS header www-746.com: could not connect to host www-771122.com: did not receive HSTS header www-8003.com: did not receive HSTS header www-88599.com: did not receive HSTS header www-9995.com: did not receive HSTS header www-djbet.com: did not receive HSTS header -www-jinshavip.com: did not receive HSTS header +www-jinshavip.com: could not connect to host www.braintreepayments.com: did not receive HSTS header www.calyxinstitute.org: max-age too low: 500 www.cueup.com: could not connect to host www.cyveillance.com: did not receive HSTS header www.developer.mydigipass.com: could not connect to host www.elanex.biz: did not receive HSTS header www.gamesdepartment.co.uk: did not receive HSTS header www.gmail.com: did not receive HSTS header (error ignored - included regardless) @@ -9346,16 +9357,17 @@ yoga-in-aying.de: did not receive HSTS h yohanesmario.com: could not connect to host yoiyado.info: did not receive HSTS header yokeepo.com: max-age too low: 0 yoloboatrentals.com: did not receive HSTS header yoloprod.fr: could not connect to host yoloseo.com: could not connect to host yomepre.com: could not connect to host yoru.me: did not receive HSTS header +yoshitsugu.net: did not receive HSTS header youcontrol.ru: could not connect to host youfencun.com: did not receive HSTS header youlog.net: could not connect to host youngandunited.nl: did not receive HSTS header youon.tokyo: could not connect to host yourbapp.ch: could not connect to host yourcomputer.expert: did not receive HSTS header yoursecondphone.co: could not connect to host @@ -9463,16 +9475,17 @@ zolotoy-standart.com.ua: did not receive zomiac.pp.ua: could not connect to host zoneminder.com: did not receive HSTS header zoners.si: could not connect to host zonky.io: could not connect to host zoo24.de: did not receive HSTS header zoofaeth.de: did not receive HSTS header zoomingin.net: max-age too low: 5184000 zoommailing.com: did not receive HSTS header +zoorigin.com: did not receive HSTS header zorasvobodova.cz: did not receive HSTS header zortium.report: could not connect to host zoznamrealit.sk: did not receive HSTS header zqhong.com: could not connect to host zqjs.tk: could not connect to host ztan.tk: could not connect to host ztcaoll222.cn: did not receive HSTS header zubel.it: did not receive HSTS header
--- a/security/manager/ssl/nsSTSPreloadList.inc +++ b/security/manager/ssl/nsSTSPreloadList.inc @@ -3,17 +3,17 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ /*****************************************************************************/ /* This is an automatically generated file. If you're not */ /* nsSiteSecurityService.cpp, you shouldn't be #including it. */ /*****************************************************************************/ #include <stdint.h> -const PRTime gPreloadListExpirationTime = INT64_C(1521920252656000); +const PRTime gPreloadListExpirationTime = INT64_C(1522006643897000); %% 0-1.party, 1 0.me.uk, 1 00001.am, 1 00002.am, 1 0005pay.com, 1 0010100.net, 1 00220022.net, 1 @@ -276,17 +276,16 @@ 365healthworld.com, 1 365maya.com, 1 365skulls.com, 1 3778vip.com, 1 379700.com, 1 38888msc.com, 1 38blog.com, 1 393335.ml, 1 398.info, 1 -3ags.de, 1 3bakayottu.com, 1 3bigking.com, 1 3c-d.de, 1 3chat.org, 1 3circlefunding.ch, 1 3countiescastlehire.co.uk, 1 3cs.ch, 1 3dm.audio, 1 @@ -623,17 +622,16 @@ abyssproject.net, 1 ac-admin.pl, 1 ac-epmservices.com, 1 ac-town.com, 1 ac0g.dyndns.org, 1 academicexperts.us, 1 academie-de-police.ch, 1 academy4.net, 1 academytv.com.au, 1 -acadianapatios.com, 1 acampar.com.br, 1 acaonegocios.com.br, 1 acara-yoga.de, 1 acat.io, 1 acbrussels-used.be, 1 accbay.com, 1 accelaway.com, 1 accelerate.network, 1 @@ -1038,17 +1036,16 @@ aiicy.org, 1 aiida.se, 1 aijsk.com, 1 aikenorganics.com, 1 aikenpromotions.com, 1 aikido-club-limburg.de, 1 aikido-linz.at, 1 aikido-wels.at, 1 aim-consultants.com, 1 -aimeeandalec.com, 1 aimgroup.co.tz, 1 aimotive.com, 1 aintevenmad.ch, 1 aioboot.com, 1 aiois.com, 1 aiphyron.com, 1 air-craftglass.com, 1 air-shots.ch, 1 @@ -1119,17 +1116,16 @@ akostecki.de, 1 akovana.com, 1 akoww.de, 1 akoya.fi, 1 akpwebdesign.com, 1 akr.io, 1 akritikos.info, 1 akropolis-ravensburg.de, 1 akselinurmio.fi, 1 -akstudentsfirst.org, 1 aktiv-naturheilmittel.at, 1 aktiv-naturheilmittel.ch, 1 aktiv-naturheilmittel.de, 1 aktivace.eu, 1 aktivierungscenter.de, 1 akul.co.in, 1 akutun.cl, 1 akvorrat.at, 1 @@ -1164,18 +1160,16 @@ alchemia.co.il, 1 alchimic.ch, 1 alcnutrition.com, 1 alcorao.org, 1 aldes.co.za, 1 aldien.com.br, 1 aldorr.net, 1 aldous-huxley.com, 1 aleax.me, 1 -alecpap.com, 1 -alecpapierniak.com, 1 alecrust.com, 1 aleksejjocic.tk, 1 aleksib.fi, 1 alela.fr, 1 aleph.land, 1 alertaenlinea.gov, 1 alertboxx.com, 1 alertonline.nl, 1 @@ -1582,17 +1576,16 @@ andrewrdaws.com, 1 andrewrgoss.com, 1 andrewryno.com, 1 andrewsun.com, 1 andrewtebert.com, 1 andrewthelott.net, 1 andrewvoce.com, 1 andrewyg.net, 1 andrezadnik.com, 1 -andro2id.com, 1 andro4all.com, 1 android.re, 1 androide.com, 1 androidhry.cz, 1 androidkatalog.cz, 1 androidnovinky.cz, 1 androidtamer.com, 1 androidtelefony.cz, 1 @@ -1822,16 +1815,17 @@ apiary.store, 1 apiary.supplies, 1 apiary.supply, 1 apience.com, 1 apila.care, 1 apila.us, 1 apis.blue, 1 apis.google.com, 1 apis.moe, 1 +apisyouwonthate.com, 1 apk.li, 1 apk4fun.com, 1 apkoyunlar.club, 1 apl2bits.net, 1 aplikaceproandroid.cz, 1 aplis-online.de, 0 aplpackaging.co.uk, 1 aplu.fr, 1 @@ -2151,16 +2145,17 @@ asec01.net, 1 aseith.com, 1 asepms.com, 1 aserver.co, 1 asge-handel.de, 1 ashleakunowski.com, 1 ashleyadum.com, 1 ashleyfoley.photography, 1 ashleymedway.com, 1 +ashmportfolio.com, 1 ashutoshmishra.org, 1 asia-gazette.com, 1 asia.dating, 1 asialeonding.at, 1 asianbet77.net, 1 asianshops.net, 1 asinetasima.com, 1 asisee.co.il, 1 @@ -4521,16 +4516,17 @@ byatte.com, 1 byeskille.no, 1 bygningsregistrering.dk, 1 byiu.info, 1 byji.com, 1 byken.cn, 1 bymark.co, 1 bymike.co, 1 bynder.com, 1 +bynet.cz, 1 bypass.kr, 1 bypass.sh, 1 bypassed.st, 1 byrko.cz, 1 byrko.sk, 1 byronr.com, 1 byronwade.com, 1 byrtz.de, 1 @@ -4614,17 +4610,17 @@ caferagazzi.de, 1 cafesg.net, 1 caffeinatedcode.com, 1 cainhosting.com, 0 caipai.fm, 1 cairnterrier.com.br, 1 cais.de, 1 caitcs.com, 1 caja-pdf.es, 1 -cajio.ru, 0 +cajio.ru, 1 cajunuk.co.uk, 1 cake-time.co.uk, 1 cakestart.net, 1 caketoindia.com, 1 cakingandbaking.com, 1 cal.goip.de, 1 cal9000.com, 1 calaad.net, 1 @@ -4888,17 +4884,16 @@ cashati.com, 1 cashew3d.com, 1 cashfortulsahouses.com, 1 cashless.fr, 1 cashlink.de, 1 cashlink.io, 1 cashlogic.ch, 1 cashmaxtexas.com, 1 cashplk.com, 1 -casinolegal.pt, 1 casinolistings.com, 1 casinoreal.com, 1 casjay.cloud, 1 casjay.com, 1 casjay.info, 1 casjay.us, 1 casjaygames.com, 1 casperpanel.com, 1 @@ -5037,17 +5032,16 @@ cencalvia.org, 1 censurfridns.dk, 1 censurfridns.nu, 1 censys.io, 1 centaur.de, 1 centennialradon.com, 1 centerforpolicy.org, 1 centerpereezd.ru, 0 centerpoint.ovh, 1 -centillien.com, 0 centio.bg, 1 centos.pub, 1 centos.tips, 1 central4.me, 1 centralcountiesservices.org, 1 centralfor.me, 1 centrallead.net, 1 centralstatecu.org, 1 @@ -6300,16 +6294,17 @@ corpulantcoffee.com, 1 corpulent.coffee, 1 corpulentcoffee.com, 1 correct.horse, 1 correiodovale.com.br, 1 corrupted.io, 1 corsa-b.uk, 1 cortexitrecruitment.com, 1 cortis-consulting.ch, 1 +cortisolsupplement.com, 1 corvus.eu.org, 1 coryadum.com, 1 corytyburski.com, 1 corzntin.fr, 1 cosirex.com, 1 coslinker.com, 1 cosmeticappraisal.com, 1 cosmeticasimple.com, 1 @@ -6568,16 +6563,17 @@ cryptobin.co, 1 cryptocon.org, 1 cryptofan.org, 1 cryptography.ch, 1 cryptography.io, 1 cryptoisnotacrime.org, 1 cryptojourney.com, 1 cryptoki.fr, 1 cryptology.ch, 1 +cryptolosophy.io, 1 cryptolosophy.org, 1 cryptonom.org, 1 cryptonym.com, 1 cryptoparty.at, 1 cryptoparty.dk, 1 cryptopartynewcastle.org, 1 cryptopartyutah.org, 1 cryptorival.com, 1 @@ -7004,17 +7000,16 @@ darknode.in, 1 darkserver.fedoraproject.org, 1 darkserver.stg.fedoraproject.org, 1 darkshop.nl, 1 darkside.re, 1 darkspacelab.com, 1 darktime.ru, 1 darkwater.info, 1 darkx.me, 1 -darlastudio66.com, 1 darlo.co.uk, 0 darom.jp, 1 darookee.net, 1 darrenm.net, 1 darrienworth.com, 1 darshnam.com, 1 dart-tanke.com, 1 dart-tanke.de, 1 @@ -7185,17 +7180,16 @@ dcmt.co, 1 dcpower.eu, 1 dcrdev.com, 1 dctxf.com, 1 dd.art.pl, 1 ddel.de, 1 dden.ca, 0 dden.website, 1 dden.xyz, 1 -ddepot.us, 1 ddfreedish.site, 0 ddhosted.com, 1 ddmeportal.com, 1 ddns-anbieter.de, 1 ddocu.me, 1 ddos-mitigation.co.uk, 1 ddos-mitigation.info, 1 ddracepro.net, 1 @@ -7285,17 +7279,17 @@ dee.su, 1 deegeeinflatables.co.uk, 1 deep.club, 1 deeparamaraj.com, 1 deepbluecrafting.co.uk, 1 deephill.com, 1 deepserve.info, 1 deepsouthsounds.com, 1 deepspace.dedyn.io, 1 -deepvision.com.ua, 1 +deepvalley.tech, 1 deepzz.com, 1 deer.team, 1 deezeno.com, 1 def-pos.ru, 1 defcon.org, 1 defendas.com, 1 defender-pro.com, 1 defendinnovation.org, 1 @@ -7540,16 +7534,17 @@ developers.facebook.com, 0 developersclub.website, 1 developfx.com, 1 developmentaid.org, 1 developmentsites.melbourne, 1 develux.com, 1 develux.net, 1 devenney.io, 1 devh.de, 1 +devh.net, 1 deviant.email, 1 devillers-occasions.be, 1 devilshakerz.com, 1 deviltracks.net, 1 deviltraxxx.de, 1 devinfo.net, 0 devisnow.fr, 1 devistravaux.org, 1 @@ -7731,17 +7726,16 @@ digitaleoverheid.nl, 1 digitalewelten.de, 1 digitalgov.gov, 1 digitalhurricane.io, 1 digitalimpostor.co.uk, 1 digitallocker.com, 0 digitalmarketingindallas.com, 1 digitalrights.center, 1 digitalrights.fund, 1 -digitalrxcloud.com, 1 digitalsurge.io, 1 digitaltechnologies.ltd.uk, 1 digitalunite.de, 1 digitkon.com, 1 digiworks.se, 1 digminecraft.com, 1 diguass.us, 1 digwp.com, 1 @@ -9383,17 +9377,17 @@ espace-gestion.fr, 1 espace.network, 1 espacetemps.ch, 1 espacetheosophie.fr, 1 espacio-cultural.com, 1 espanol.search.yahoo.com, 0 espanova.com, 1 espci.fr, 1 especificosba.com.ar, 1 -espenandersen.no, 0 +espenandersen.no, 1 espgg.org, 1 esphigmenou.gr, 1 espigol.org, 1 esports-network.de, 1 esprit-cloture.fr, 1 espritrait.com, 1 esquirou-trieves.fr, 1 esquisse.fr, 1 @@ -9885,16 +9879,17 @@ fandomservices.com, 1 fanfareunion.ch, 1 fangs.ink, 1 fanjoe.be, 1 fantasiapainter.com, 1 fantasticcleaners.com.au, 1 fantastichandymanmelbourne.com.au, 1 fantasticpestcontrolmelbourne.com.au, 1 fantasycastles.co.uk, 1 +fantasyescortsbirmingham.co.uk, 1 fantasypartyhire.com.au, 1 fantasyspectrum.com, 1 fantopia.club, 1 fanvoice.com, 1 fanyue123.tk, 1 fanz.pro, 1 fanzlive.com, 1 fap.no, 1 @@ -11108,16 +11103,17 @@ gam3rs.de, 1 gamajo.com, 1 gamberorosso.menu, 1 gambetti.fr, 1 gambit.pro, 1 gambitnash.co.uk, 1 gambitnash.com, 1 gambitprint.com, 1 gamblersgaming.eu, 1 +game-files.net, 0 game-gentle.com, 1 game7.de, 1 gamebits.net, 1 gamebrott.com, 1 gamecard-shop.nl, 1 gameclue.jp, 1 gamecollector.be, 1 gameconservation.org.uk, 1 @@ -11498,16 +11494,17 @@ ggx.us, 1 gh16.com.ar, 1 gha.st, 1 ghaglund.se, 1 ghcif.de, 1 ghi.gov, 1 ghislainphu.fr, 1 ghostblog.info, 1 ghrelinblocker.info, 1 +ghrelinblocker.org, 1 ghuntley.com, 1 giacomodrago.com, 1 giacomodrago.it, 1 giacomopelagatti.it, 1 gianproperties.com, 1 giant-panda.com, 1 giant-powerfit.co.uk, 1 giant-tortoise.com, 1 @@ -11940,16 +11937,17 @@ greenpartyofnewmilford.org, 1 greenpeace-magazin.de, 1 greenpeace.berlin, 1 greenroach.ru, 1 greensdictofslang.com, 1 greensquare.tk, 1 greenteamtwente.nl, 1 greenville.ag, 1 greenwithdecor.com, 1 +greg.red, 1 greger.me, 1 greggsfoundation.org.uk, 1 gregmartyn.com, 1 gregoirow.be, 1 gregorians.org, 1 gregorkofler.com, 1 gregorykelleher.com, 1 gregoryrealestategroup.com, 1 @@ -12107,16 +12105,17 @@ gulchuk.com, 1 gulenbase.no, 1 gulfstream.ru, 1 gulleyperformancecenter.com, 1 gulshankumar.net, 1 gume4you.com, 1 gumi.ca, 1 gummibande.noip.me, 1 gunhunter.com, 1 +guniram.com, 1 gunwatch.co.uk, 1 guochang.xyz, 1 guoke.com, 1 guphi.net, 0 gurkan.in, 1 gurmel.ru, 1 gurochan.ch, 1 guru-naradi.cz, 1 @@ -13343,17 +13342,16 @@ i-verbi.it, 1 i1314.gdn, 1 i1place.com, 1 i28s.com, 1 i496.eu, 1 i4m1k0su.com, 1 i5y.co.uk, 1 i95.me, 0 iaco.li, 1 -iacono.com.br, 1 iactu.info, 1 iadttaveras.com, 1 iaeste.no, 1 iainsimms.me, 1 ialis.me, 1 iamcarrico.com, 1 iamsoareyou.se, 1 iamtheib.me, 1 @@ -13855,16 +13853,17 @@ ingoschlueter.de, 1 ingresscode.cn, 1 inhaltsangabe.de, 1 inheritestate.com, 1 inhive.group, 1 inhouseents.co.uk, 1 iniiter.com, 1 inima.org, 1 inios.fr, 0 +inishbofin.ie, 1 initq.net, 1 initramfs.io, 1 initrd.net, 1 injust.eu.org, 1 injust.me, 1 ink.horse, 1 inkable.com.au, 1 inkbunny.net, 0 @@ -14333,17 +14332,16 @@ itmanie.cz, 1 itneeds.tech, 1 itnews-bg.com, 1 itnota.com, 1 itochan.jp, 1 itooky.com, 1 itpro-mg.de, 1 itpro.ua, 1 itproject.guru, 1 -itrack.in.th, 1 itraveille.fr, 1 itring.pl, 1 itruss.com.tw, 1 its-future.com, 1 its-gutachten.de, 1 its-schindler.de, 1 its-v.de, 1 its4living.com, 1 @@ -14503,16 +14501,17 @@ jaksi.io, 1 jakub-boucek.cz, 1 jakubboucek.cz, 1 jakubtopic.cz, 1 jakubvrba.cz, 1 jamaat.hk, 1 jamberrynails.co.uk, 1 james-bell.co.uk, 1 james-loewen.com, 1 +jamesachambers.com, 1 jamesaimonetti.com, 1 jamesbillingham.com, 1 jamesbradach.com, 0 jamescostian.com, 1 jamesdorf.com, 1 jamesevans.is, 1 jamesforman.co.nz, 1 jamesgreenfield.com, 1 @@ -15748,17 +15747,17 @@ kitchen-profi.kz, 1 kitchenaccessories.pro, 1 kitchenpunx.com, 0 kiteadventure.nl, 1 kitegarage.eu, 1 kiteschoolamsterdam.nl, 1 kiteschooledam.nl, 1 kiteschoolijmuiden.nl, 1 kiteschoolkatwijk.nl, 1 -kiteschoolnoordwijk.nl, 1 +kiteschoolnoordwijk.nl, 0 kiteschoolschellinkhout.nl, 1 kiteschoolwijkaanzee.nl, 1 kiteschoolzandvoort.nl, 1 kittmedia.com, 1 kittpress.com, 1 kittyhacker101.tk, 1 kiwi.digital, 1 kiwi.global, 1 @@ -16075,16 +16074,17 @@ krmeni.cz, 1 krokedil.se, 1 krokodent.de, 1 kromamoveis.com.br, 1 kronaw.it, 1 krony.de, 1 kroon.email, 1 kropkait.pl, 1 krouzkyliduska.cz, 1 +krsn.de, 1 krugoval.hr, 1 kruin.net, 1 kruk.co, 1 krumberconsulting.com, 1 krupa.net.pl, 0 krutka.cz, 1 kruu.de, 1 kry.no, 1 @@ -17032,17 +17032,16 @@ lissabon.guide, 1 listahu.org, 1 listen.dk, 1 lister-kirchweg.de, 1 listminut.be, 1 lists.fedoraproject.org, 1 lists.mayfirst.org, 0 lists.stg.fedoraproject.org, 1 litchidova.nl, 1 -litcomphonors.com, 1 litebits.com, 1 litemind.com, 1 litevault.net, 1 litfin.name, 1 lithan.com, 1 lithesalar.se, 1 lithianissaneugeneparts.com, 1 litsovet.com, 1 @@ -17855,17 +17854,16 @@ mapasmundi.com.br, 1 mapblender.com, 1 maplanetebeaute.fr, 1 mapletime.com, 1 mapresidentielle.fr, 1 maquettage.com, 1 maquillage-permanent-tatoo.com, 1 maquinariaspesadas.org, 1 marabumadrid.com, 1 -marakovits.net, 1 marbinvest.com, 1 marble.com, 1 marbogardenlidkoping.se, 1 marc-schlagenhauf.de, 1 marcbuehlmann.com, 1 marcdorka.de, 1 marceau.ovh, 1 marcel-preuss.de, 1 @@ -18087,16 +18085,17 @@ mathieui.net, 1 mathijskingma.nl, 1 maths.network, 1 mathspace.co, 1 matildajaneclothing.com, 1 matjaz.it, 1 matlss.com, 1 matomeathena.com, 1 matriterie-sdv.ro, 1 +matrix.ac, 0 matrixmedia.ro, 1 matrixreq.com, 1 matsu-semi.com, 1 mattandyana.com, 1 mattbsg.xyz, 1 mattcarr.net, 0 mattcoles.io, 1 matteomarescotti.it, 1 @@ -18301,16 +18300,17 @@ media-courses.com, 1 media-credit.eu, 1 media-instance.ru, 1 media-pi.com, 1 mediaarea.net, 1 mediablaster.com, 1 mediaburst.co.uk, 1 mediadandy.com, 1 mediadex.be, 1 +mediaexpert.fr, 1 mediafocus.biz, 1 mediagenic.ch, 1 mediagrand.net, 1 mediajurnal.com, 1 medialab.nrw, 1 mediamarkt.pl, 1 mediapart.fr, 1 mediaselection.eu, 1 @@ -18340,16 +18340,17 @@ medtalents.ch, 1 medtankers.management, 1 medtehnika.ua, 1 medusa.wtf, 1 meduza.io, 1 medwaybouncycastlehire.co.uk, 1 medy-me.com, 1 medyotan.ga, 1 meedoenhartvanwestbrabant.nl, 1 +meehle.com, 1 meeko.cc, 1 meerutcake.com, 1 meet.google.com, 1 meetbot.fedoraproject.org, 1 meetingfriends.ch, 1 meetingmanage.nl, 1 meetingmanager.ovh, 1 meetmibaby.co.uk, 1 @@ -18593,17 +18594,16 @@ mhjuma.com, 1 mhmfoundationrepair.com, 1 mi-beratung.de, 1 mi-so-ji.com, 1 miagexport.com, 1 miamicityballet.org, 1 miaoubox.com, 1 miaowo.org, 1 miasarafina.de, 1 -miboulot.com, 1 micado-software.com, 1 micaiahparker.com, 1 micalodeal.ch, 1 micasamgmt.com, 1 micbase.com, 1 michael-rigart.be, 1 michael-schefczyk.de, 1 michael-schilling.de, 1 @@ -18791,17 +18791,16 @@ mingyueli.com, 1 minhanossasenhora.com.br, 1 mini2.fi, 1 minigames.com, 1 minigolf-reisinger.com, 1 minigolfandgames.co.uk, 1 minikidz.es, 1 minikneet.com, 1 minilions.fr, 1 -minimaliston.com, 1 minimaltimer.com, 1 minimayhemsoftplay.co.uk, 1 minimbah.com.au, 1 minimvc.com, 1 minipainting.net, 1 minis-hip.de, 1 miniskipper.at, 1 minitruckin.net, 1 @@ -19696,16 +19695,17 @@ mypup.nl, 1 myrandomtips.com, 1 myranicol.com, 1 myrealestatemate.com.au, 1 myrekber.co.id, 1 myrent.quebec, 1 myrepublic.co.id, 1 myresearchapp.com, 1 myriadof.com, 1 +myrig.com, 1 myrig.com.ua, 1 myrig.io, 1 myrig.ru, 1 myrotvorets.center, 1 myruststats.com, 1 myschoolphoto.org, 1 myseatime.com, 1 mysecretcase.com, 1 @@ -19726,17 +19726,16 @@ mysterymind.ch, 1 mysterysear.ch, 1 mystic-welten.de, 1 mystickphysick.com, 1 mysticplumes.com, 1 mystorymonster.com, 1 mystown.org, 1 mystudy.me, 1 mystudycart.com, 1 -mysupboard.de, 1 myswissmailaddress.com, 1 mytc.fr, 1 mythengay.ch, 1 mythicdelirium.com, 1 mytraiteurs.com, 1 mytravelblog.de, 1 mytripcar.co.uk, 1 mytripcar.com, 1 @@ -19867,16 +19866,17 @@ narindal.ch, 1 narko.space, 1 narmos.ch, 1 naro.se, 1 narodsovety.ru, 1 naroska.name, 1 narrativasdigitais.pt, 1 narrenverein-wolkenschieber.de, 1 narthollis.net, 1 +narviz.com, 1 nasarawanewsonline.com, 1 nasbi.pl, 1 nasbnation.com, 1 nascher.org, 0 nasmocopati.com, 1 nasrsolar.com, 1 nassi.me, 1 nastoletni.pl, 1 @@ -20084,17 +20084,16 @@ nemo.run, 1 nemopan.com, 1 nemumu.com, 1 nemunai.re, 1 neo2shyalien.eu, 0 neobits.nl, 1 neocities.org, 1 neoclick.io, 1 neojo.org, 1 -neokobe.city, 1 neolaudia.es, 1 neons.org, 1 neophilus.net, 1 neosdesignstudio.co.uk, 1 neostralis.com, 1 neowlan.net, 1 neoxcrf.com, 1 neoz.com.br, 1 @@ -20450,16 +20449,17 @@ nishaswonderland.be, 1 nishaswonderland.nl, 1 nishikino-maki.com, 1 nishisbma.com, 1 nissanofbismarckparts.com, 1 nitaonline.org, 1 nitifilter.com, 1 nitrix.me, 1 nitrokey.com, 1 +nitropanel.com, 1 nitropur.com, 1 nitropur.de, 1 nitrous-networks.com, 1 niu.moe, 1 niva.synology.me, 1 nivi.ca, 1 nix.black, 1 nix.org.ua, 0 @@ -23100,17 +23100,16 @@ psw-group.de, 1 psw.net, 1 psxtr.com, 1 psyao.ch, 1 psychedelia.com, 1 psychedelics.org, 1 psychiatrie-betreuung.ch, 1 psychic-healer-mariya-i-petrova-boyankinska-b-borovan-bg.com, 1 psychintervention.com, 1 -psycho-lobby.com, 1 psycho.space, 1 psychoactive.com, 1 psychoco.net, 1 psychotherapie-kp.de, 1 psydix.org, 1 psyk.yt, 1 psylab.cc, 1 psylab.re, 1 @@ -23586,17 +23585,16 @@ rc7.ch, 1 rca.fr, 1 rcdocuments.com, 1 rchrdsn.uk, 1 rclsm.net, 1 rcmurphy.com, 1 rcnitrotalk.com, 1 rcoliveira.com, 1 rcraigmurphy.com, 1 -rcraigmurphy.net, 1 rcx.io, 1 rdfz.tech, 1 rdh.asia, 1 rdl.at, 0 rdns.cc, 1 re-curi.com, 1 re-wilding.com, 1 reachrss.com, 1 @@ -23848,17 +23846,16 @@ relax.hn, 1 relaxdom.net, 1 relaxhavefun.com, 1 relaxpointhyncice.cz, 1 relaybox.io, 1 release-monitoring.org, 1 reliancebank.bank, 1 religiousforums.com, 1 relsak.cz, 1 -relvan.com, 1 rem0te.net, 1 remambo.jp, 1 remedioparaherpes.com, 1 remedioscaserosparalacistitis.com, 1 remedioskaseros.com, 0 remedyrehab.com, 1 rememberthemilk.com, 0 remodelwithlegacy.com, 1 @@ -23964,16 +23961,17 @@ restaurantmangal.ch, 1 restauranttester.at, 1 rester-a-domicile.ch, 1 rester-autonome-chez-soi.ch, 1 restioson.me, 1 restoran-radovce.me, 1 restoreresearchstudy.com, 1 restoruns.com, 1 restoruns.xyz, 1 +restrealitaet.de, 0 restrito.org, 1 resursedigitale.ro, 1 retcor.net, 1 retetenoi.net, 1 reth.ch, 1 reto.ch, 1 reto.com, 1 reto.io, 1 @@ -24176,16 +24174,17 @@ rmmanfredi.com, 1 rmpsolution.de, 1 rmrig.org, 1 rms.sexy, 1 rmsides.com, 1 rmstudio.tw, 1 rmsupply.nl, 1 rnag.ie, 1 rnb-storenbau.ch, 1 +rngmeme.com, 1 rnt.cl, 1 ro.search.yahoo.com, 0 roadguard.nl, 1 roadtopgm.com, 1 roave.com, 1 rob.uk.com, 1 rob006.net, 1 robandjanine.com, 1 @@ -24298,17 +24297,16 @@ rokki.ch, 1 rokort.dk, 1 rokudenashi.de, 1 roland.io, 1 rolandkolodziej.com, 1 rolandszabo.com, 1 rolliwelt.de, 1 rolodato.com, 1 roma-servizi.it, 1 -romainmuller.xyz, 1 roman-pavlik.cz, 1 romande-entretien.ch, 1 romanpavlodar.kz, 1 romantelychko.com, 1 romantic-quotes.co.uk, 1 romanticschemer.com, 1 romanticschemermovie.com, 1 romanticvillas.com.au, 1 @@ -25994,17 +25992,16 @@ simplexgame.net, 1 simplexsupport.com, 0 simplia.cz, 1 simplicitypvp.net, 1 simplidesigns.nl, 1 simplifylivelove.com, 1 simply.scot, 1 simplycharlottemason.com, 1 simplycloud.de, 1 -simplyfixit.co.uk, 1 simplyhelen.de, 1 simplylovejesus.com, 1 simplymozzo.se, 1 simplystudio.com, 1 simpte.com, 1 simpul.nl, 1 sims4hub.ga, 1 simsnieuws.nl, 1 @@ -26686,17 +26683,16 @@ spearfishingmx.com, 1 speciesism.com, 1 spectrosoftware.de, 1 spedplus.com.br, 0 speech-balloon.com, 1 speechmate.com, 1 speechndraw.com, 1 speeddate.it, 0 speedracer.ca, 1 -speeds.vip, 1 speedsportofhull.co.uk, 1 speedtailors.com, 1 speedtest-russia.com, 1 speedychat.it, 1 speerpunt.info, 1 speich.net, 1 spek.tech, 1 spellcheck24.net, 1 @@ -26761,17 +26757,16 @@ spoofhaus.com, 1 spookbook.net, 1 spookquest.com, 1 spoopy.link, 1 sporcard.com, 1 spornkuller.de, 1 sport-in-sundern.de, 1 sport-potreby.cz, 1 sport-potreby.sk, 1 -sport-socken.net, 1 sporter.com, 1 sportflash.info, 1 sportnesia.com, 1 sportovnidum.cz, 1 sportressofblogitude.com, 1 sports.dating, 1 sportsmanadvisor.com, 1 sportsmansblog.com, 1 @@ -27668,17 +27663,16 @@ ta-65.com, 1 ta-sports.net, 1 ta65.com, 1 taabe.net, 1 taartenfeesies.nl, 1 tab.watch, 1 tabelfirme.ro, 1 tabernadovinho.com.br, 1 tabino.top, 1 -tabithawebb.co.uk, 1 tabla-periodica.com, 1 tablescraps.com, 1 tablet.facebook.com, 0 tablotv.com, 0 taboragroup.com, 0 taborsky.cz, 1 tac-volley.com, 1 tacklog.com, 1 @@ -28607,16 +28601,17 @@ tijden.nu, 1 tijo.ch, 1 tik.edu.ee, 1 tik.help, 1 tiki-god.co.uk, 1 tiledailyshop.com, 1 tileyourvisit.pt, 1 tiliaze.be, 1 tiliaze.biz, 1 +tiliaze.eu, 1 tiliaze.info, 1 tiliaze.net, 1 till.im, 1 tillberg.us, 1 tilleysbouncycastles.co.uk, 1 tillseasyscore.com, 1 tiltedwindmillcrafts.com, 1 timbarlotta.com, 1 @@ -28710,17 +28705,16 @@ tkanemoto.com, 1 tkat.ch, 1 tkgpm.com, 1 tkjg.fi, 1 tkn.me, 1 tkn.tokyo, 1 tkts.cl, 1 tkusano.jp, 1 tkw01536.de, 1 -tlach.cz, 1 tlca.org, 1 tlcnet.info, 1 tlehseasyads.com, 1 tlo.xyz, 1 tloxygen.com, 1 tls.builders, 1 tls.care, 1 tls1914.org, 1 @@ -29664,17 +29658,16 @@ unblockedbay.info, 1 unblockweb.co, 1 uncensoreddns.dk, 1 uncensoreddns.org, 1 undeadbrains.de, 1 undecidable.de, 1 underbridgeleisure.co.uk, 1 undercovercondoms.co.uk, 1 undercovercondoms.com, 1 -underlined.fr, 1 undernet.uy, 0 underskatten.tk, 1 undo.co.il, 1 undone.me, 1 unearaigneeauplafond.fr, 0 unefuite.ch, 1 unerosesurlalune.fr, 1 unexpected.nu, 1 @@ -30016,17 +30009,16 @@ vanlaanen.com, 1 vanmalland.com, 1 vannaos.com, 1 vannaos.net, 1 vanohaker.ru, 1 vanouwerkerk.net, 1 vante.me, 1 vantien.com, 1 vantru.is, 1 -vanvoro.us, 1 vanwunnik.com, 1 vapecraftinc.com, 1 vapehour.com, 1 vapemania.eu, 1 vaperolles.ch, 1 vapesense.co.uk, 1 vapeshopsupply.com, 0 vaphone.co, 1 @@ -30381,17 +30373,16 @@ vitahook.pw, 1 vital-tel.co.uk, 1 vitalamin.at, 1 vitalamin.ch, 1 vitalamin.com, 1 vitalamin.de, 1 vitalismaatjes.nl, 1 vitalthings.de, 1 vitalyzhukphoto.com, 1 -vitamaxxi.com.br, 1 vitaminler.com, 1 vitapingu.de, 1 vitastic.nl, 1 viteoscrm.ch, 1 vitkausk.as, 1 vitkutny.cz, 1 vitoye.com, 1 vitra-vcare.co.uk, 1 @@ -30674,16 +30665,18 @@ warekon.dk, 1 warenits.at, 1 warezaddict.com, 1 wargameexclusive.com, 1 warhaggis.com, 1 warlions.info, 0 warmestwishes.ca, 1 warmlyyours.com, 0 warmservers.com, 1 +warp-radio.com, 1 +warp-radio.tv, 1 warr.ath.cx, 1 warringtonkidsbouncycastles.co.uk, 1 warschild.org, 1 wartorngalaxy.com, 1 warumsuchen.at, 1 wasatchconstables.com, 1 waschpark-hantschel.de, 1 wasema.com, 1 @@ -32152,17 +32145,16 @@ yorcool.nl, 1 yorkshiredalesinflatables.co.uk, 1 yorkshireinflatables.co.uk, 1 yorkshireterrier.com.br, 1 yorname.ml, 1 yosbeda.com, 1 yosemo.de, 1 yosheenetwork.fr, 1 yoshibaworks.com, 1 -yoshitsugu.net, 1 yospos.org, 1 yoticonnections.com, 1 yotilab.com, 1 yotilabs.com, 1 yotta-zetta.com, 1 yotubaiotona.net, 1 youcancraft.de, 1 youcanfuckoff.xyz, 1 @@ -32543,17 +32535,16 @@ zoofit.com.au, 1 zooish.net, 1 zoola.io, 1 zoological-gardens.eu, 1 zoom.earth, 1 zoomek.com, 1 zooom.azurewebsites.net, 1 zooom2.azurewebsites.net, 1 zooparadies.eu, 1 -zoorigin.com, 1 zootime.net, 1 zootime.org, 1 zoowiki.us, 1 zooxdata.com, 1 zopy.com.br, 1 zopyx.com, 1 zor.com, 1 zorgclustertool.nl, 1