author | Sebastian Hengst <archaeopteryx@coole-files.de> |
Mon, 16 Oct 2017 10:58:45 +0200 | |
changeset 680876 | a52b7ea3d0d4fb3c91bc8d7c3b72d5057fbfb250 |
parent 680875 | dc626eeea39a20c3d81375583965014c572c034a (current diff) |
parent 680782 | c6a2643362a67cdf7a87ac165454fce4b383debb (diff) |
child 680877 | ee969734750ace337d13515b00c92703f6577550 |
push id | 84661 |
push user | bmo:ttromey@mozilla.com |
push date | Mon, 16 Oct 2017 14:19:39 +0000 |
reviewers | merge, merge |
milestone | 58.0a1 |
--- a/devtools/client/netmonitor/src/components/statistics-panel.js +++ b/devtools/client/netmonitor/src/components/statistics-panel.js @@ -1,15 +1,16 @@ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ "use strict"; const ReactDOM = require("devtools/client/shared/vendor/react-dom"); +const { FILTER_TAGS } = require("../constants"); const { createClass, createFactory, DOM, PropTypes, } = require("devtools/client/shared/vendor/react"); const { connect } = require("devtools/client/shared/vendor/react-redux"); const { Chart } = require("devtools/client/shared/widgets/Chart"); @@ -162,19 +163,17 @@ const StatisticsPanel = createClass({ while (container.hasChildNodes()) { container.firstChild.remove(); } container.appendChild(chart.node); }, sanitizeChartDataSource(requests, emptyCache) { - const data = [ - "html", "css", "js", "xhr", "fonts", "images", "media", "flash", "ws", "other" - ].map((type) => ({ + const data = FILTER_TAGS.map((type) => ({ cached: 0, count: 0, label: type, size: 0, transferredSize: 0, time: 0, }));
--- a/devtools/client/netmonitor/src/components/toolbar.js +++ b/devtools/client/netmonitor/src/components/toolbar.js @@ -8,17 +8,17 @@ const Services = require("Services"); const { createClass, createFactory, DOM, PropTypes, } = require("devtools/client/shared/vendor/react"); const { connect } = require("devtools/client/shared/vendor/react-redux"); const Actions = require("../actions/index"); -const { FILTER_SEARCH_DELAY } = require("../constants"); +const { FILTER_SEARCH_DELAY, FILTER_TAGS } = require("../constants"); const { getDisplayedRequestsSummary, getRequestFilterTypes, getTypeFilteredRequests, isNetworkDetailsToggleButtonDisabled, } = require("../selectors/index"); const { autocompleteProvider } = require("../utils/filter-autocomplete-provider"); @@ -32,16 +32,24 @@ const { button, div, input, label, span const COLLPASE_DETAILS_PANE = L10N.getStr("collapseDetailsPane"); const EXPAND_DETAILS_PANE = L10N.getStr("expandDetailsPane"); const SEARCH_KEY_SHORTCUT = L10N.getStr("netmonitor.toolbar.filterFreetext.key"); const SEARCH_PLACE_HOLDER = L10N.getStr("netmonitor.toolbar.filterFreetext.label"); const TOOLBAR_CLEAR = L10N.getStr("netmonitor.toolbar.clear"); const DEVTOOLS_DISABLE_CACHE_PREF = "devtools.cache.disabled"; const DEVTOOLS_ENABLE_PERSISTENT_LOG_PREF = "devtools.netmonitor.persistlog"; +const TOOLBAR_FILTER_LABELS = FILTER_TAGS.concat("all").reduce((o, tag) => + Object.assign(o, { [tag]: L10N.getStr(`netmonitor.toolbar.filter.${tag}`) }), {}); +const ENABLE_PERSISTENT_LOGS_TOOLTIP = + L10N.getStr("netmonitor.toolbar.enablePersistentLogs.tooltip"); +const ENABLE_PERSISTENT_LOGS_LABEL = + L10N.getStr("netmonitor.toolbar.enablePersistentLogs.label"); +const DISABLE_CACHE_TOOLTIP = L10N.getStr("netmonitor.toolbar.disableCache.tooltip"); +const DISABLE_CACHE_LABEL = L10N.getStr("netmonitor.toolbar.disableCache.label"); /* * Network monitor toolbar component * Toolbar contains a set of useful tools to control network requests */ const Toolbar = createClass({ displayName: "Toolbar", @@ -93,57 +101,57 @@ const Toolbar = createClass({ button({ className: classList.join(" "), key: type, onClick: this.toggleRequestFilterType, onKeyDown: this.toggleRequestFilterType, "aria-pressed": checked, "data-key": type, }, - L10N.getStr(`netmonitor.toolbar.filter.${type}`) + TOOLBAR_FILTER_LABELS[type] ) ); }); return ( span({ className: "devtools-toolbar devtools-toolbar-container" }, span({ className: "devtools-toolbar-group" }, button({ className: "devtools-button devtools-clear-icon requests-list-clear-button", title: TOOLBAR_CLEAR, onClick: clearRequests, }), div({ className: "requests-list-filter-buttons" }, buttons), label( { className: "devtools-checkbox-label", - title: L10N.getStr("netmonitor.toolbar.enablePersistentLogs.tooltip"), + title: ENABLE_PERSISTENT_LOGS_TOOLTIP, }, input({ id: "devtools-persistlog-checkbox", className: "devtools-checkbox", type: "checkbox", checked: persistentLogsEnabled, onClick: togglePersistentLogs, }), - L10N.getStr("netmonitor.toolbar.enablePersistentLogs.label"), + ENABLE_PERSISTENT_LOGS_LABEL ), label( { className: "devtools-checkbox-label", - title: L10N.getStr("netmonitor.toolbar.disableCache.tooltip"), + title: DISABLE_CACHE_TOOLTIP, }, input({ id: "devtools-cache-checkbox", className: "devtools-checkbox", type: "checkbox", checked: browserCacheDisabled, onClick: toggleBrowserCache, }), - L10N.getStr("netmonitor.toolbar.disableCache.label"), + DISABLE_CACHE_LABEL, ), ), span({ className: "devtools-toolbar-group" }, SearchBox({ delay: FILTER_SEARCH_DELAY, keyShortcut: SEARCH_KEY_SHORTCUT, placeholder: SEARCH_PLACE_HOLDER, type: "filter",
--- a/devtools/client/netmonitor/src/constants.js +++ b/devtools/client/netmonitor/src/constants.js @@ -260,16 +260,29 @@ const FILTER_FLAGS = [ "mime-type", "larger-than", "transferred-larger-than", "is", "has-response-header", "regexp", ]; +const FILTER_TAGS = [ + "html", + "css", + "js", + "xhr", + "fonts", + "images", + "media", + "flash", + "ws", + "other", +]; + const REQUESTS_WATERFALL = { BACKGROUND_TICKS_MULTIPLE: 5, // ms BACKGROUND_TICKS_SCALES: 3, BACKGROUND_TICKS_SPACING_MIN: 10, // px BACKGROUND_TICKS_COLOR_RGB: [128, 136, 144], // 8-bit value of the alpha component of the tick color BACKGROUND_TICKS_OPACITY_MIN: 32, BACKGROUND_TICKS_OPACITY_ADD: 32, @@ -287,15 +300,16 @@ const REQUESTS_WATERFALL = { const general = { ACTIVITY_TYPE, EVENTS, FILTER_SEARCH_DELAY: 200, UPDATE_PROPS, HEADERS, RESPONSE_HEADERS, FILTER_FLAGS, + FILTER_TAGS, SOURCE_EDITOR_SYNTAX_HIGHLIGHT_MAX_SIZE: 51200, // 50 KB in bytes REQUESTS_WATERFALL, PANELS, }; // flatten constants module.exports = Object.assign({}, general, actionTypes);
--- a/devtools/client/netmonitor/src/reducers/filters.js +++ b/devtools/client/netmonitor/src/reducers/filters.js @@ -4,31 +4,23 @@ "use strict"; const I = require("devtools/client/shared/vendor/immutable"); const { ENABLE_REQUEST_FILTER_TYPE_ONLY, TOGGLE_REQUEST_FILTER_TYPE, SET_REQUEST_FILTER_TEXT, + FILTER_TAGS } = require("../constants"); -const FilterTypes = I.Record({ - all: false, - html: false, - css: false, - js: false, - xhr: false, - fonts: false, - images: false, - media: false, - flash: false, - ws: false, - other: false, -}); +const FilterTypes = I.Record(["all"] + .concat(FILTER_TAGS) + .reduce((o, tag) => Object.assign(o, { [tag]: false }), {}) +); const Filters = I.Record({ requestFilterTypes: new FilterTypes({ all: true }), requestFilterText: "", }); function toggleRequestFilterType(state, action) { let { filter } = action;
--- a/dom/events/IMEContentObserver.cpp +++ b/dom/events/IMEContentObserver.cpp @@ -23,17 +23,16 @@ #include "nsIContent.h" #include "nsIDocument.h" #include "nsIDOMDocument.h" #include "nsIDOMRange.h" #include "nsIFrame.h" #include "nsINode.h" #include "nsIPresShell.h" #include "nsISelectionController.h" -#include "nsISelectionPrivate.h" #include "nsISupports.h" #include "nsIWidget.h" #include "nsPresContext.h" #include "nsRefreshDriver.h" #include "nsWeakReference.h" #include "WritingModes.h" namespace mozilla { @@ -344,24 +343,23 @@ IMEContentObserver::InitWithEditor(nsPre // mEditableNode is a document selCon = do_QueryInterface(presShell); } if (NS_WARN_IF(!selCon)) { return false; } - selCon->GetSelection(nsISelectionController::SELECTION_NORMAL, - getter_AddRefs(mSelection)); + mSelection = + selCon->GetDOMSelection(nsISelectionController::SELECTION_NORMAL); if (NS_WARN_IF(!mSelection)) { return false; } - auto selection = static_cast<mozilla::dom::Selection*>(mSelection.get()); - if (nsRange* selRange = selection->GetRangeAt(0)) { + if (nsRange* selRange = mSelection->GetRangeAt(0)) { if (NS_WARN_IF(!selRange->GetStartContainer())) { return false; } mRootContent = selRange->GetStartContainer()-> GetSelectionRootContent(presShell); } else { mRootContent = mEditableNode->GetSelectionRootContent(presShell); @@ -400,18 +398,18 @@ IMEContentObserver::InitWithPlugin(nsPre if (NS_WARN_IF(!frame)) { return false; } nsCOMPtr<nsISelectionController> selCon; frame->GetSelectionController(aPresContext, getter_AddRefs(selCon)); if (NS_WARN_IF(!selCon)) { return false; } - selCon->GetSelection(nsISelectionController::SELECTION_NORMAL, - getter_AddRefs(mSelection)); + mSelection = + selCon->GetDOMSelection(nsISelectionController::SELECTION_NORMAL); if (NS_WARN_IF(!mSelection)) { return false; } mEditorBase = nullptr; mEditableNode = aContent; mRootContent = aContent; // Should be safe to clear mDocumentObserver here even though it *might* @@ -475,19 +473,17 @@ IMEContentObserver::ObserveEditableNode( if (mEditorBase) { mEditorBase->AddEditorObserver(this); } if (!WasInitializedWithPlugin()) { // Add selection change listener only when this starts to observe // non-plugin content since we cannot detect selection changes in // plugins. - nsCOMPtr<nsISelectionPrivate> selPrivate(do_QueryInterface(mSelection)); - NS_ENSURE_TRUE_VOID(selPrivate); - nsresult rv = selPrivate->AddSelectionListener(this); + nsresult rv = mSelection->AddSelectionListener(this); NS_ENSURE_SUCCESS_VOID(rv); // Add text change observer only when this starts to observe // non-plugin content since we cannot detect text changes in // plugins. mRootContent->AddMutationObserver(this); // If it's in a document (should be so), we can use document observer to // reduce redundant computation of text change offsets. nsIDocument* doc = mRootContent->GetComposedDoc(); @@ -551,20 +547,17 @@ IMEContentObserver::UnregisterObservers( } mIsObserving = false; if (mEditorBase) { mEditorBase->RemoveEditorObserver(this); } if (mSelection) { - nsCOMPtr<nsISelectionPrivate> selPrivate(do_QueryInterface(mSelection)); - if (selPrivate) { - selPrivate->RemoveSelectionListener(this); - } + mSelection->RemoveSelectionListener(this); mSelectionData.Clear(); mFocusedWidget = nullptr; } if (mRootContent) { mRootContent->RemoveMutationObserver(this); }
--- a/dom/events/IMEContentObserver.h +++ b/dom/events/IMEContentObserver.h @@ -4,16 +4,17 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #ifndef mozilla_IMEContentObserver_h_ #define mozilla_IMEContentObserver_h_ #include "mozilla/Attributes.h" #include "mozilla/EditorBase.h" +#include "mozilla/dom/Selection.h" #include "nsCOMPtr.h" #include "nsCycleCollectionParticipant.h" #include "nsIDocShell.h" // XXX Why does only this need to be included here? #include "nsIEditorObserver.h" #include "nsIReflowObserver.h" #include "nsISelectionListener.h" #include "nsIScrollObserver.h" #include "nsIWidget.h" @@ -304,17 +305,17 @@ private: */ bool UpdateSelectionCache(); nsCOMPtr<nsIWidget> mWidget; // mFocusedWidget has the editor observed by the instance. E.g., if the // focused editor is in XUL panel, this should be the widget of the panel. // On the other hand, mWidget is its parent which handles IME. nsCOMPtr<nsIWidget> mFocusedWidget; - nsCOMPtr<nsISelection> mSelection; + RefPtr<dom::Selection> mSelection; nsCOMPtr<nsIContent> mRootContent; nsCOMPtr<nsINode> mEditableNode; nsCOMPtr<nsIDocShell> mDocShell; RefPtr<EditorBase> mEditorBase; /** * Helper classes to notify IME. */
--- a/editor/libeditor/EditorBase.cpp +++ b/editor/libeditor/EditorBase.cpp @@ -3715,34 +3715,16 @@ EditorBase::GetTag(nsIDOMNode* aNode) if (!content) { NS_ASSERTION(aNode, "null node passed to EditorBase::GetTag()"); return nullptr; } return content->NodeInfo()->NameAtom(); } -nsresult -EditorBase::GetTagString(nsIDOMNode* aNode, - nsAString& outString) -{ - if (!aNode) { - NS_NOTREACHED("null node passed to EditorBase::GetTagString()"); - return NS_ERROR_NULL_POINTER; - } - - nsAtom *atom = GetTag(aNode); - if (!atom) { - return NS_ERROR_FAILURE; - } - - atom->ToString(outString); - return NS_OK; -} - bool EditorBase::NodesSameType(nsIDOMNode* aNode1, nsIDOMNode* aNode2) { if (!aNode1 || !aNode2) { NS_NOTREACHED("null node passed to EditorBase::NodesSameType()"); return false; }
--- a/editor/libeditor/EditorBase.h +++ b/editor/libeditor/EditorBase.h @@ -870,17 +870,16 @@ public: * unexpected error, returns -1. */ int32_t NumberOfUndoItems() const; int32_t NumberOfRedoItems() const; /** * From html rules code - migration in progress. */ - static nsresult GetTagString(nsIDOMNode* aNode, nsAString& outString); static nsAtom* GetTag(nsIDOMNode* aNode); bool NodesSameType(nsIDOMNode* aNode1, nsIDOMNode* aNode2); virtual bool AreNodesSameType(nsIContent* aNode1, nsIContent* aNode2); static bool IsTextNode(nsIDOMNode* aNode); static bool IsTextNode(nsINode* aNode) {
--- a/editor/libeditor/HTMLAnonymousNodeEditor.cpp +++ b/editor/libeditor/HTMLAnonymousNodeEditor.cpp @@ -347,21 +347,17 @@ HTMLEditor::CheckSelectionStateForAnonym // If we're not in a document, don't try to add resizers nsCOMPtr<dom::Element> focusElementNode = do_QueryInterface(focusElement); NS_ENSURE_STATE(focusElementNode); if (!focusElementNode->IsInUncomposedDoc()) { return NS_OK; } // what's its tag? - nsAutoString focusTagName; - rv = focusElement->GetTagName(focusTagName); - NS_ENSURE_SUCCESS(rv, rv); - ToLowerCase(focusTagName); - RefPtr<nsAtom> focusTagAtom = NS_Atomize(focusTagName); + nsAtom* focusTagAtom = focusElementNode->NodeInfo()->NameAtom(); nsCOMPtr<nsIDOMElement> absPosElement; if (mIsAbsolutelyPositioningEnabled) { // Absolute Positioning support is enabled, is the selection contained // in an absolutely positioned element ? rv = GetAbsolutelyPositionedSelectionContainer(getter_AddRefs(absPosElement)); NS_ENSURE_SUCCESS(rv, rv);
--- a/editor/libeditor/HTMLEditRules.cpp +++ b/editor/libeditor/HTMLEditRules.cpp @@ -373,17 +373,17 @@ HTMLEditRules::BeforeEdit(EditAction act // Remember current inline styles for deletion and normal insertion ops if (action == EditAction::insertText || action == EditAction::insertIMEText || action == EditAction::deleteSelection || IsStyleCachePreservingAction(action)) { nsCOMPtr<nsINode> selNode = aDirection == nsIEditor::eNext ? selEndNode : selStartNode; - nsresult rv = CacheInlineStyles(GetAsDOMNode(selNode)); + nsresult rv = CacheInlineStyles(selNode); NS_ENSURE_SUCCESS(rv, rv); } // Stabilize the document against contenteditable count changes nsCOMPtr<nsIDOMDocument> doc = htmlEditor->GetDOMDocument(); NS_ENSURE_TRUE(doc, NS_ERROR_NOT_INITIALIZED); nsCOMPtr<nsIHTMLDocument> htmlDoc = do_QueryInterface(doc); NS_ENSURE_TRUE(htmlDoc, NS_ERROR_FAILURE); @@ -7291,31 +7291,31 @@ HTMLEditRules::GetTopEnclosingMailCite(n break; } } return ret; } nsresult -HTMLEditRules::CacheInlineStyles(nsIDOMNode* aNode) +HTMLEditRules::CacheInlineStyles(nsINode* aNode) { NS_ENSURE_TRUE(aNode, NS_ERROR_NULL_POINTER); NS_ENSURE_STATE(mHTMLEditor); nsresult rv = GetInlineStyles(aNode, mCachedStyles); if (NS_WARN_IF(NS_FAILED(rv))) { return rv; } return NS_OK; } nsresult -HTMLEditRules::GetInlineStyles(nsIDOMNode* aNode, +HTMLEditRules::GetInlineStyles(nsINode* aNode, StyleCache aStyleCache[SIZE_STYLE_TABLE]) { MOZ_ASSERT(aNode); MOZ_ASSERT(mHTMLEditor); bool useCSS = mHTMLEditor->IsCSSEnabled(); for (size_t j = 0; j < SIZE_STYLE_TABLE; ++j) { @@ -7331,19 +7331,20 @@ HTMLEditRules::GetInlineStyles(nsIDOMNod } bool isSet = false; nsAutoString outValue; // Don't use CSS for <font size>, we don't support it usefully (bug 780035) if (!useCSS || (aStyleCache[j].tag == nsGkAtoms::font && aStyleCache[j].attr.EqualsLiteral("size"))) { NS_ENSURE_STATE(mHTMLEditor); - mHTMLEditor->IsTextPropertySetByContent(aNode, aStyleCache[j].tag, - &(aStyleCache[j].attr), nullptr, - isSet, &outValue); + isSet = mHTMLEditor->IsTextPropertySetByContent(aNode, aStyleCache[j].tag, + &(aStyleCache[j].attr), + nullptr, + &outValue); } else { NS_ENSURE_STATE(mHTMLEditor); isSet = mHTMLEditor->mCSSEditUtils->IsCSSEquivalentToHTMLInlineStyleSet( aNode, aStyleCache[j].tag, &(aStyleCache[j].attr), outValue, CSSEditUtils::eComputed); } if (isSet) { aStyleCache[j].mPresent = true; @@ -7381,19 +7382,17 @@ HTMLEditRules::ReapplyCachedStyles() do_QueryInterface(selection->GetRangeAt(0)->GetStartContainer()); if (!selNode) { // Nothing to do return NS_OK; } StyleCache styleAtInsertionPoint[SIZE_STYLE_TABLE]; InitStyleCacheArray(styleAtInsertionPoint); - nsCOMPtr<nsIDOMNode> selDOMNode = do_QueryInterface(selNode); - MOZ_ASSERT(selDOMNode); - nsresult rv = GetInlineStyles(selDOMNode, styleAtInsertionPoint); + nsresult rv = GetInlineStyles(selNode, styleAtInsertionPoint); if (NS_WARN_IF(NS_FAILED(rv))) { return NS_OK; } for (size_t i = 0; i < SIZE_STYLE_TABLE; ++i) { if (mCachedStyles[i].mPresent) { bool bFirst, bAny, bAll; bFirst = bAny = bAll = false;
--- a/editor/libeditor/HTMLEditRules.h +++ b/editor/libeditor/HTMLEditRules.h @@ -386,17 +386,17 @@ protected: int32_t& inOutOffset, nsCOMPtr<nsIContent>* inOutChildAtOffset = nullptr); nsresult AddTerminatingBR(nsIDOMNode *aBlock); EditorDOMPoint JoinNodesSmart(nsIContent& aNodeLeft, nsIContent& aNodeRight); Element* GetTopEnclosingMailCite(nsINode& aNode); nsresult PopListItem(nsIContent& aListItem, bool* aOutOfList = nullptr); nsresult RemoveListStructure(Element& aList); - nsresult CacheInlineStyles(nsIDOMNode* aNode); + nsresult CacheInlineStyles(nsINode* aNode); nsresult ReapplyCachedStyles(); void ClearCachedStyles(); void AdjustSpecialBreaks(); nsresult AdjustWhitespace(Selection* aSelection); nsresult PinSelectionToNewBlock(Selection* aSelection); void CheckInterlinePosition(Selection& aSelection); nsresult AdjustSelection(Selection* aSelection, nsIEditor::EDirection aAction); @@ -454,17 +454,17 @@ protected: * GetInlineStyles(). */ void InitStyleCacheArray(StyleCache aStyleCache[SIZE_STYLE_TABLE]); /** * GetInlineStyles() retrieves the style of aNode and modifies each item of * aStyleCache. */ - nsresult GetInlineStyles(nsIDOMNode* aNode, + nsresult GetInlineStyles(nsINode* aNode, StyleCache aStyleCache[SIZE_STYLE_TABLE]); protected: HTMLEditor* mHTMLEditor; RefPtr<nsRange> mDocChangeRange; bool mListenerEnabled; bool mReturnInEmptyLIKillsList; bool mDidDeleteSelection;
--- a/editor/libeditor/HTMLEditor.cpp +++ b/editor/libeditor/HTMLEditor.cpp @@ -3567,78 +3567,45 @@ HTMLEditor::SelectAll() bool HTMLEditor::IsTextPropertySetByContent(nsINode* aNode, nsAtom* aProperty, const nsAString* aAttribute, const nsAString* aValue, nsAString* outValue) { MOZ_ASSERT(aNode && aProperty); - bool isSet; - IsTextPropertySetByContent(aNode->AsDOMNode(), aProperty, aAttribute, aValue, - isSet, outValue); - return isSet; -} - -void -HTMLEditor::IsTextPropertySetByContent(nsIDOMNode* aNode, - nsAtom* aProperty, - const nsAString* aAttribute, - const nsAString* aValue, - bool& aIsSet, - nsAString* outValue) -{ - aIsSet = false; // must be initialized to false for code below to work - nsAutoString propName; - aProperty->ToString(propName); - nsCOMPtr<nsIDOMNode>node = aNode; - - while (node) { - nsCOMPtr<nsIDOMElement>element; - element = do_QueryInterface(node); - if (element) { - nsAutoString tag, value; - element->GetTagName(tag); - if (propName.Equals(tag, nsCaseInsensitiveStringComparator())) { - bool found = false; - if (aAttribute && !aAttribute->IsEmpty()) { - element->GetAttribute(*aAttribute, value); - if (outValue) { - *outValue = value; + + while (aNode) { + if (aNode->IsElement()) { + Element* element = aNode->AsElement(); + if (aProperty == element->NodeInfo()->NameAtom()) { + if (!aAttribute || aAttribute->IsEmpty()) { + return true; + } + nsAutoString value; + element->GetAttribute(*aAttribute, value); + if (outValue) { + *outValue = value; + } + if (!value.IsEmpty()) { + if (!aValue) { + return true; } - if (!value.IsEmpty()) { - if (!aValue) { - found = true; - } else { - nsString tString(*aValue); - if (tString.Equals(value, nsCaseInsensitiveStringComparator())) { - found = true; - } else { - // We found the prop with the attribute, but the value doesn't - // match. - break; - } - } + if (aValue->Equals(value, nsCaseInsensitiveStringComparator())) { + return true; } - } else { - found = true; - } - if (found) { - aIsSet = true; + // We found the prop with the attribute, but the value doesn't + // match. break; } } } - nsCOMPtr<nsIDOMNode>temp; - if (NS_SUCCEEDED(node->GetParentNode(getter_AddRefs(temp))) && temp) { - node = temp; - } else { - node = nullptr; - } - } + aNode = aNode->GetParentNode(); + } + return false; } bool HTMLEditor::SetCaretInTableCell(nsIDOMElement* aElement) { nsCOMPtr<dom::Element> element = do_QueryInterface(aElement); if (!element || !element->IsHTMLElement() || !HTMLEditUtils::IsTableElement(element) ||
--- a/editor/libeditor/HTMLEditor.h +++ b/editor/libeditor/HTMLEditor.h @@ -577,35 +577,28 @@ protected: * * @param aNode The target of the query * @param aProperty The property that we are querying for * @param aAttribute The attribute of aProperty, example: color in * <FONT color="blue"> May be null. * @param aValue The value of aAttribute, example: blue in * <FONT color="blue"> May be null. Ignored if aAttribute * is null. - * @param aIsSet [OUT] true if <aProperty aAttribute=aValue> effects - * aNode. * @param outValue [OUT] the value of the attribute, if aIsSet is true + * @return true if <aProperty aAttribute=aValue> effects + * aNode. * * The nsIContent variant returns aIsSet instead of using an out parameter. */ bool IsTextPropertySetByContent(nsINode* aNode, nsAtom* aProperty, const nsAString* aAttribute, const nsAString* aValue, nsAString* outValue = nullptr); - void IsTextPropertySetByContent(nsIDOMNode* aNode, - nsAtom* aProperty, - const nsAString* aAttribute, - const nsAString* aValue, - bool& aIsSet, - nsAString* outValue = nullptr); - // Methods for handling plaintext quotations NS_IMETHOD PasteAsPlaintextQuotation(int32_t aSelectionType); /** * Insert a string as quoted text, replacing the selected text (if any). * @param aQuotedText The string to insert. * @param aAddCites Whether to prepend extra ">" to each line * (usually true, unless those characters
--- a/editor/libeditor/HTMLTableEditor.cpp +++ b/editor/libeditor/HTMLTableEditor.cpp @@ -1956,18 +1956,18 @@ HTMLEditor::SwitchTableCellHeaderType(ns // Save current selection to restore when done // This is needed so ReplaceContainer can monitor selection // when replacing nodes RefPtr<Selection> selection = GetSelection(); NS_ENSURE_TRUE(selection, NS_ERROR_FAILURE); AutoSelectionRestorer selectionRestorer(selection, this); // Set to the opposite of current type - RefPtr<nsAtom> atom = EditorBase::GetTag(aSourceCell); - nsAtom* newCellType = atom == nsGkAtoms::td ? nsGkAtoms::th : nsGkAtoms::td; + nsAtom* newCellType = + sourceCell->IsHTMLElement(nsGkAtoms::td) ? nsGkAtoms::th : nsGkAtoms::td; // This creates new node, moves children, copies attributes (true) // and manages the selection! nsCOMPtr<Element> newNode = ReplaceContainer(sourceCell, newCellType, nullptr, nullptr, EditorBase::eCloneAttributes); NS_ENSURE_TRUE(newNode, NS_ERROR_FAILURE); // Return the new cell
--- a/modules/libpref/init/all.js +++ b/modules/libpref/init/all.js @@ -5784,20 +5784,24 @@ pref("osfile.reset_worker_delay", 30000) #if !defined(MOZ_WIDGET_ANDROID) pref("dom.webkitBlink.dirPicker.enabled", true); pref("dom.webkitBlink.filesystem.enabled", true); #endif pref("media.block-autoplay-until-in-foreground", true); // Is Stylo CSS support built and enabled? -// Only define this pref if Stylo support is actually built in. +// Only define these prefs if Stylo support is actually built in. #ifdef MOZ_STYLO pref("layout.css.stylo-blocklist.enabled", true); +#ifdef NIGHTLY_BUILD +pref("layout.css.stylo-blocklist.blocked_domains", "arewestyloyet.rs"); +#else pref("layout.css.stylo-blocklist.blocked_domains", ""); +#endif #ifdef MOZ_STYLO_ENABLE pref("layout.css.servo.enabled", true); #else pref("layout.css.servo.enabled", false); #endif #endif // HSTS Priming
--- a/netwerk/build/nsNetModule.cpp +++ b/netwerk/build/nsNetModule.cpp @@ -261,17 +261,17 @@ NS_GENERIC_FACTORY_CONSTRUCTOR_INIT(nsFt #include "nsHttpActivityDistributor.h" #include "ThrottleQueue.h" #include "BackgroundChannelRegistrar.h" #undef LOG #undef LOG_ENABLED namespace mozilla { namespace net { NS_GENERIC_FACTORY_CONSTRUCTOR(nsHttpNTLMAuth) -NS_GENERIC_FACTORY_CONSTRUCTOR_INIT(nsHttpHandler, Init) +NS_GENERIC_FACTORY_SINGLETON_CONSTRUCTOR(nsHttpHandler, nsHttpHandler::GetInstance) NS_GENERIC_FACTORY_CONSTRUCTOR_INIT(nsHttpsHandler, Init) NS_GENERIC_FACTORY_CONSTRUCTOR_INIT(nsHttpAuthManager, Init) NS_GENERIC_FACTORY_CONSTRUCTOR(nsHttpChannelAuthProvider) NS_GENERIC_FACTORY_CONSTRUCTOR(nsHttpActivityDistributor) NS_GENERIC_FACTORY_CONSTRUCTOR(nsHttpBasicAuth) NS_GENERIC_FACTORY_CONSTRUCTOR(nsHttpDigestAuth) NS_GENERIC_FACTORY_CONSTRUCTOR(ThrottleQueue) NS_GENERIC_FACTORY_CONSTRUCTOR(BackgroundChannelRegistrar)
--- a/netwerk/protocol/http/nsHttpHandler.cpp +++ b/netwerk/protocol/http/nsHttpHandler.cpp @@ -25,16 +25,17 @@ #include "nsIPrefService.h" #include "nsIPrefBranch.h" #include "nsIPrefLocalizedString.h" #include "nsISocketProviderService.h" #include "nsISocketProvider.h" #include "nsPrintfCString.h" #include "nsCOMPtr.h" #include "nsNetCID.h" +#include "mozilla/ClearOnShutdown.h" #include "mozilla/Printf.h" #include "mozilla/Sprintf.h" #include "nsAsyncRedirectVerifyHelper.h" #include "nsSocketTransportService2.h" #include "nsAlgorithm.h" #include "ASpdySession.h" #include "EventTokenBucket.h" #include "Tickler.h" @@ -163,17 +164,30 @@ GetDeviceModelId() { return deviceModelId; } #endif //----------------------------------------------------------------------------- // nsHttpHandler <public> //----------------------------------------------------------------------------- -nsHttpHandler *gHttpHandler = nullptr; +StaticRefPtr<nsHttpHandler> gHttpHandler; + +/* static */ already_AddRefed<nsHttpHandler> +nsHttpHandler::GetInstance() +{ + if (!gHttpHandler) { + gHttpHandler = new nsHttpHandler(); + DebugOnly<nsresult> rv = gHttpHandler->Init(); + MOZ_ASSERT(NS_SUCCEEDED(rv)); + ClearOnShutdown(&gHttpHandler); + } + RefPtr<nsHttpHandler> httpHandler = gHttpHandler; + return httpHandler.forget(); +} nsHttpHandler::nsHttpHandler() : mHttpVersion(NS_HTTP_VERSION_1_1) , mProxyHttpVersion(NS_HTTP_VERSION_1_1) , mCapabilities(NS_HTTP_ALLOW_KEEPALIVE) , mReferrerLevel(0xff) // by default we always send a referrer , mSpoofReferrerSource(false) , mHideOnionReferrerSource(false) @@ -266,17 +280,17 @@ nsHttpHandler::nsHttpHandler() , mProcessId(0) , mNextChannelId(1) { LOG(("Creating nsHttpHandler [this=%p].\n", this)); mUserAgentOverride.SetIsVoid(true); MOZ_ASSERT(!gHttpHandler, "HTTP handler already created!"); - gHttpHandler = this; + nsCOMPtr<nsIXULRuntime> runtime = do_GetService("@mozilla.org/xre/runtime;1"); if (runtime) { runtime->GetProcessID(&mProcessId); } SetFastOpenOSSupport(); } void @@ -384,17 +398,16 @@ nsHttpHandler::~nsHttpHandler() } mConnMgr = nullptr; } // Note: don't call NeckoChild::DestroyNeckoChild() here, as it's too late // and it'll segfault. NeckoChild will get cleaned up by process exit. nsHttp::DestroyAtomTable(); - gHttpHandler = nullptr; } nsresult nsHttpHandler::Init() { nsresult rv; LOG(("nsHttpHandler::Init\n"));
--- a/netwerk/protocol/http/nsHttpHandler.h +++ b/netwerk/protocol/http/nsHttpHandler.h @@ -6,16 +6,17 @@ #ifndef nsHttpHandler_h__ #define nsHttpHandler_h__ #include "nsHttp.h" #include "nsHttpAuthCache.h" #include "nsHttpConnectionMgr.h" #include "ASpdySession.h" +#include "mozilla/StaticPtr.h" #include "nsString.h" #include "nsCOMPtr.h" #include "nsWeakReference.h" #include "nsIHttpProtocolHandler.h" #include "nsIObserver.h" #include "nsISpeculativeConnect.h" @@ -60,19 +61,18 @@ class nsHttpHandler final : public nsIHt public: NS_DECL_THREADSAFE_ISUPPORTS NS_DECL_NSIPROTOCOLHANDLER NS_DECL_NSIPROXIEDPROTOCOLHANDLER NS_DECL_NSIHTTPPROTOCOLHANDLER NS_DECL_NSIOBSERVER NS_DECL_NSISPECULATIVECONNECT - nsHttpHandler(); + static already_AddRefed<nsHttpHandler> GetInstance(); - MOZ_MUST_USE nsresult Init(); MOZ_MUST_USE nsresult AddStandardRequestHeaders(nsHttpRequestHead *, bool isSecure); MOZ_MUST_USE nsresult AddConnectionHeader(nsHttpRequestHead *, uint32_t capabilities); bool IsAcceptableEncoding(const char *encoding, bool isSecure); const nsCString& UserAgent(); @@ -398,18 +398,22 @@ public: } bool ActiveTabPriority() const { return mActiveTabPriority; } private: + nsHttpHandler(); + virtual ~nsHttpHandler(); + MOZ_MUST_USE nsresult Init(); + // // Useragent/prefs helper methods // void BuildUserAgent(); void InitUserAgentComponents(); void PrefsChanged(nsIPrefBranch *prefs, const char *pref); MOZ_MUST_USE nsresult SetAccept(const char *); @@ -679,17 +683,17 @@ private: // State for generating channelIds uint32_t mProcessId; uint32_t mNextChannelId; public: MOZ_MUST_USE nsresult NewChannelId(uint64_t& channelId); }; -extern nsHttpHandler *gHttpHandler; +extern StaticRefPtr<nsHttpHandler> gHttpHandler; //----------------------------------------------------------------------------- // nsHttpsHandler - thin wrapper to distinguish the HTTP handler from the // HTTPS handler (even though they share the same impl). //----------------------------------------------------------------------------- class nsHttpsHandler : public nsIHttpProtocolHandler , public nsSupportsWeakReference
--- a/security/manager/ssl/StaticHPKPins.h +++ b/security/manager/ssl/StaticHPKPins.h @@ -1153,9 +1153,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 = 480; static const int32_t kUnknownId = -1; -static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1516555936123000); +static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1516600059754000);
--- a/security/manager/ssl/nsSTSPreloadList.errors +++ b/security/manager/ssl/nsSTSPreloadList.errors @@ -1,17 +1,18 @@ +06se.com: could not connect to host 0day.su: could not connect to host 0i0.nl: could not connect to host 0xaa55.me: could not connect to host +27728522.com: could not connect to host 360live.fr: could not connect to host 47tech.com: could not connect to host 4d2.xyz: could not connect to host 4loc.us: could not connect to host 4x4.lk: could not connect to host -68277.me: could not connect to host 724go.com: could not connect to host 7trade8.com: could not connect to host 8560.be: could not connect to host 87577.com: could not connect to host 8887999.com: could not connect to host 8ack.de: could not connect to host 8t88.biz: could not connect to host 91-freedom.com: could not connect to host @@ -28,112 +29,112 @@ akiba-server.info: could not connect to akoww.de: could not connect to host akul.co.in: could not connect to host alexmol.tk: could not connect to host alrait.com: could not connect to host altahrim.net: could not connect to host ameho.me: could not connect to host amua.fr: could not connect to host anoneko.com: could not connect to host +anthropoid.ca: could not connect to host +anti-bible.com: could not connect to host arent.kz: could not connect to host arksan.com.tr: could not connect to host artisense.de: could not connect to host askmagicconch.com: could not connect to host assdecoeur.org: could not connect to host asta-bar.de: could not connect to host astral.gq: could not connect to host autostop-occasions.be: could not connect to host auvernet.org: could not connect to host avi9526.pp.ua: could not connect to host awan.tech: could not connect to host awf0.xyz: could not connect to host azabani.com: could not connect to host baitulongbaycruises.com: could not connect to host balonmano.co: could not connect to host bbdos.ru: could not connect to host -bbimarketing.com: could not connect to host beasel.biz: could not connect to host bellavistaoutdoor.com: could not connect to host bencorby.com: could not connect to host benjamin-horvath.com: could not connect to host berna.fr: could not connect to host +billaud.eu.org: could not connect to host bip.gov.sa: could not connect to host +blieque.co.uk: could not connect to host blumen-garage.de: could not connect to host blumiges-fischbachtal.de: could not connect to host bodrumfarm.com: could not connect to host bowlsheet.com: could not connect to host brettabel.com: could not connect to host +bsc01.dyndns.org: could not connect to host businessfurs.info: could not connect to host buyshoe.org: could not connect to host by1898.com: could not connect to host cais.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] cajio.ru: could not connect to host cake-time.co.uk: could not connect to host calculatoaresecondhand.xyz: could not connect to host callabs.net: could not connect to host cannarobotics.com: could not connect to host capekeen.com: could not connect to host +capellidipremoli.com: could not connect to host carloshmm.stream: could not connect to host casperpanel.com: could not connect to host catsmagic.pp.ua: could not connect to host -ceml.ch: could not connect to host +cbdev.de: could not connect to host centos.pub: could not connect to host challengeskins.com: could not connect to host charr.xyz: could not connect to host charuru.moe: could not connect to host checkmateshoes.com: could not connect to host childrendeservebetter.org: could not connect to host chimeratool.com: could not connect to host china-line.org: could not connect to host chloehorler.com: could not connect to host chonghe.org: could not connect to host christiangaetano.com: could not connect to host christina-quast.de: could not connect to host cielly.com: could not connect to host clearviewwealthprojector.com.au: could not connect to host closelinksecurity.co.uk: could not connect to host cloudbleed.info: could not connect to host -cmacacias.ch: could not connect to host -cmcressy.ch: could not connect to host -cmlachapelle.ch: could not connect to host -cmlancy.ch: could not connect to host -cmlignon.ch: could not connect to host -cmplainpalais.ch: could not connect to host cmpr.es: could not connect to host cnlic.com: could not connect to host -coinmewallet.com: could not connect to host +codepult.com: could not connect to host +codercross.com: could not connect to host colleencornez.com: could not connect to host colo-tech.com: could not connect to host +comff.net: could not connect to host consejosdenutricion.com: could not connect to host corinnanese.de: could not connect to host -correiodovale.com.br: could not connect to host cosplayer.com: could not connect to host cpaneltips.com: could not connect to host crapouill.es: could not connect to host creative-wave.fr: could not connect to host crescent.gr.jp: could not connect to host crestasantos.com: could not connect to host criticalaim.com: could not connect to host cryptopartyutah.org: could not connect to host cselzer.com: could not connect to host csgo77.com: could not connect to host -cuentasmutualamr.org.ar: could not connect to host cyber-konzept.de: could not connect to host cypherpunk.ws: could not connect to host d-bood.site: could not connect to host dahlberg.cologne: could not connect to host dannyrohde.de: could not connect to host dataprotectionadvisors.com: could not connect to host datorb.com: could not connect to host dawnsonb.com: could not connect to host dcc.moe: could not connect to host dclaisse.fr: could not connect to host de-servers.de: could not connect to host decoboutique.com: could not connect to host decoyrouting.com: could not connect to host +dengode.eu: could not connect to host derchris.me: could not connect to host derivativeshub.pro: could not connect to host derrickemery.com: could not connect to host dev-talk.eu: could not connect to host devkid.net: could not connect to host devops.moe: could not connect to host diagnocentro.cl: could not connect to host dick.red: could not connect to host @@ -152,55 +153,53 @@ drkmtrx.xyz: could not connect to host droomhuis-in-zuid-holland-kopen.nl: could not connect to host duch.cloud: could not connect to host duelsow.eu: could not connect to host duo.money: could not connect to host dynts.pro: could not connect to host edit.yahoo.com: could not connect to host educatoys.com.br: could not connect to host eeb98.com: could not connect to host -egg-ortho.ch: could not connect to host +egbert.net: could not connect to host ehuber.info: could not connect to host endlessdiy.ca: could not connect to host -enginx.net: could not connect to host erinaceinae.com: could not connect to host esibun.net: could not connect to host estan.cn: could not connect to host eurostrategy.vn.ua: could not connect to host eveshaiwu.com: could not connect to host exceed.global: could not connect to host expatads.com: could not connect to host ezhik-din.ru: could not connect to host farm24.co.uk: could not connect to host -fc.media: could not connect to host +fed51.com: could not connect to host filhomes.ph: could not connect to host firebaseio.com: could not connect to host firexarxa.de: could not connect to host first-time-offender.com: could not connect to host fixate.ru: could not connect to host fixmyglitch.com: could not connect to host -flagshop.jp: could not connect to host +flam.io: could not connect to host +flashback.org: could not connect to host fmapplication.com: could not connect to host fossewayflowers.co.uk: could not connect to host fossewayflowers.com: could not connect to host foxmay.co.uk: could not connect to host -franksiler.com: could not connect to host freaksites.dk: could not connect to host freesounding.ru: could not connect to host fsck.cz: could not connect to host fsf.moe: could not connect to host fukuko.biz: could not connect to host fukuko.xyz: could not connect to host funfunmstdn.tokyo: could not connect to host funideas.org: could not connect to host funksteckdosen24.de: could not connect to host fyol.pw: could not connect to host g4w.co: could not connect to host gam3rs.de: could not connect to host -ganhonet.com.br: could not connect to host gasbarkenora.com: could not connect to host gasnews.net: could not connect to host gautham.it: could not connect to host gautham.pro: could not connect to host gayforgenji.com: could not connect to host gaygeeks.de: could not connect to host gchq.wtf: could not connect to host gdhzcgs.com: could not connect to host @@ -211,85 +210,87 @@ getwarden.net: could not connect to host gevaulug.fr: could not connect to host gfoss.gr: could not connect to host ggx.us: could not connect to host globalgivingtime.com: could not connect to host gnom.me: could not connect to host godrealms.com: could not connect to host google: could not connect to host gottfridsberg.org: could not connect to host -gps.com.br: could not connect to host graffen.dk: could not connect to host gregorykelleher.com: could not connect to host gritte.net: could not connect to host gtdgo.com: could not connect to host gvt2.com: could not connect to host gvt3.com: could not connect to host +happyagain.se: could not connect to host heijblok.com: could not connect to host hejahanif.se: could not connect to host helsingfors.guide: could not connect to host here.ml: could not connect to host hg881.com: could not connect to host hloe0xff.ru: could not connect to host hoodoo.io: could not connect to host hoodoo.tech: could not connect to host hundter.com: could not connect to host -ictinforensics.org: could not connect to host idexxpublicationportal.com: could not connect to host ifxnet.com: could not connect to host ileat.com: could not connect to host +illuminationis.com: could not connect to host imrejonk.nl: could not connect to host industreiler.com: could not connect to host industreiler.com.br: could not connect to host inexpensivecomputers.net: could not connect to host +injust.me: could not connect to host installgentoo.net: could not connect to host integraelchen.de: could not connect to host ipv6.watch: could not connect to host islief.com: could not connect to host issuesofconcern.in: could not connect to host itochan.jp: could not connect to host +itsstefan.eu: could not connect to host ixio.cz: could not connect to host jardins-utopie.net: could not connect to host jaredfraser.com: could not connect to host javascriptlab.fr: could not connect to host jeffreymagee.com: could not connect to host jhburton.co.uk: could not connect to host jie.dance: could not connect to host -johnblackbourn.com: could not connect to host jonathansanchez.pro: could not connect to host jonpads.com: could not connect to host -jstelecom.com.br: could not connect to host +jurriaan.ninja: could not connect to host just-pools.co.za: could not connect to host justmy.website: could not connect to host k-wallet.com: could not connect to host -kabus.org: could not connect to host +k258059.net: could not connect to host kamikaichimaru.com: 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 kayleen.net: 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 kinepolis-studio.ga: could not connect to host -kingdomcrc.org: could not connect to host +kjoglum.me: could not connect to host knownsec.cf: could not connect to host kollawat.me: could not connect to host kousaku.jp: could not connect to host kozmik.co: could not connect to host kteen.info: could not connect to host lacasa.fr: could not connect to host lachawoj.de: 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 -latour-managedcare.ch: could not connect to host legitaxi.com: could not connect to host leninalbertop.com.ve: could not connect to host lezdomsm.com: could not connect to host lheinrich.org: could not connect to host +libmpq.org: could not connect to host lifenexto.com: could not connect to host linksanitizer.com: could not connect to host lissabon.guide: could not connect to host littleservice.cn: could not connect to host liukang.tech: could not connect to host livnev.me: could not connect to host livrariacoad.com.br: could not connect to host loancompare.co.za: could not connect to host @@ -298,67 +299,72 @@ logcat.info: could not connect to host logimagine.com: could not connect to host lovelytimes.net: could not connect to host luav.org: could not connect to host luenwarneke.com: could not connect to host lunix.io: could not connect to host maartenterpstra.xyz: could not connect to host macedopesca.com.br: could not connect to host mail4geek.com: could not connect to host -manjaro.ru: could not connect to host mare92.cz: could not connect to host markprof.ru: could not connect to host markus-ullmann.de: could not connect to host martin-mattel.com: could not connect to host martinrogalla.com: could not connect to host mastd.me: could not connect to host -mc-team.org: could not connect to host +mastodon.org.uk: could not connect to host mcdanieldevelopmentservices.com: could not connect to host mcea-hld.jp: could not connect to host mchopkins.net: could not connect to host meanevo.com: could not connect to host metachris.com: could not connect to host mingy.ddns.net: could not connect to host modded-minecraft-server-list.com: could not connect to host modernapprenticeships.org: could not connect to host moe-max.jp: could not connect to host mosaique-lachenaie.fr: could not connect to host moskva.guide: could not connect to host mowalls.net: could not connect to host mrliu.me: could not connect to host ms-alternativ.de: could not connect to host +muahahahaha.co.uk: could not connect to host +muh.io: could not connect to host muj-svet.cz: could not connect to host munduch.cz: could not connect to host +mytravelblog.de: could not connect to host narodsovety.ru: could not connect to host navdeep.ca: could not connect to host ncdesigns-studio.com: could not connect to host nedcf.org.uk: could not connect to host negai.moe: could not connect to host netica.fr: could not connect to host +netscaler.expert: could not connect to host nexuscorporation.in: could not connect to host nikolasbradshaw.com: could not connect to host niva.synology.me: could not connect to host nkb.in.th: could not connect to host nnote.net: could not connect to host norrkemi.se: could not connect to host nostraspace.com: could not connect to host notesforpebble.com: could not connect to host nsa.lol: could not connect to host nsa.wtf: could not connect to host nsbfalconacademy.org: could not connect to host nup.pw: could not connect to host +nyyu.tk: could not connect to host off-the-clock.us: 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 ooyo.be: could not connect to host opengg.me: could not connect to host optimist.bg: could not connect to host oscsdp.cz: could not connect to host osterkraenzchen.de: could not connect to host +otmns.net: could not connect to host oxygaming.com: could not connect to host oxymc.com: could not connect to host paragon.edu: could not connect to host pascalchristen.ch: could not connect to host pbytes.com: could not connect to host pe-bank.co.jp: could not connect to host pengisatelier.net: could not connect to host pennylane.me.uk: could not connect to host @@ -371,17 +377,16 @@ picallo.es: could not connect to host pkautodesign.com: could not connect to host pkov.cz: could not connect to host plaasprodukte.com: could not connect to host plussizereviews.com: could not connect to host pointagri.com: 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 -pozytywnyplan.pl: could not connect to host projectasterk.com: could not connect to host proxydesk.eu: could not connect to host proxyweb.us: could not connect to host pythia.nz: could not connect to host qoqo.us: could not connect to host qto.net: could not connect to host rainbin.com: could not connect to host real-compare.com: could not connect to host @@ -389,65 +394,65 @@ reignsphere.net: could not connect to ho reinaertvandecruys.me: could not connect to host reykjavik.guide: could not connect to host rideaudiscount.com: could not connect to host rofrank.space: could not connect to host roguesignal.net: could not connect to host rolodato.com: could not connect to host roolevoi.ru: could not connect to host rubyist.today: could not connect to host +rucnerobene.eu: could not connect to host s1mplescripts.de: could not connect to host saferedirectlink.com: could not connect to host sallysubs.com: could not connect to host sanatrans.com: could not connect to host -sanchez.adv.br: could not connect to host sarndipity.com: could not connect to host securitymap.wiki: could not connect to host sellmoretires.com: could not connect to host semantheme.fr: could not connect to host seproco.com: could not connect to host +servecrypt.com: could not connect to host servecrypt.net: could not connect to host +servecrypt.ru: could not connect to host shadowplus.net: could not connect to host shadowrocket.net: could not connect to host -shagi29.ru: could not connect to host -sharevari.com: could not connect to host shavingks.com: could not connect to host sheratan.web.id: could not connect to host shirakaba-cc.com: could not connect to host +shock.ee: could not connect to host shoemuse.com: could not connect to host shopifycloud.com: could not connect to host simbolo.co.uk: could not connect to host -simnovo.net: could not connect to host simplerses.com: could not connect to host siqi.wang: could not connect to host sky-aroma.com: could not connect to host +snille.com: 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 +sol24.net: could not connect to host solos.im: could not connect to host somali-derp.com: could not connect to host soontm.de: could not connect to host soulema.com: could not connect to host sowingseasons.com: could not connect to host spicywombat.com: could not connect to host spitefultowel.com: could not connect to host spom.net: could not connect to host -sputnik1net.org: could not connect to host -stamonicatourandtravel.com: could not connect to host standards.gov: could not connect to host statgram.me: could not connect to host +stening.co: could not connect to host stitthappens.com: could not connect to host stpip.com: could not connect to host stytt.com: could not connect to host sufix.cz: could not connect to host sussexwebdesigns.com: could not connect to host sviz.pro: could not connect to host tenispopular.com: could not connect to host -terminalvelocity.co.nz: could not connect to host tetsai.com: could not connect to host texasllcpros.com: could not connect to host theprivacysolution.com: could not connect to host thesehighsandlows.com: could not connect to host thesteins.org: could not connect to host thinkcash.nl: could not connect to host tiliaze.info: could not connect to host tiliaze.net: could not connect to host @@ -458,62 +463,66 @@ transcendmotor.sg: could not connect to tucidi.net: could not connect to host turn-sticks.com: could not connect to host tusb.ml: could not connect to host twiri.net: could not connect to host twotube.ie: could not connect to host tyil.nl: could not connect to host tyil.work: could not connect to host umsapi.com: could not connect to host +underskatten.tk: could not connect to host vadik.me: could not connect to host varta.io: could not connect to host vcelin-na-doliku.cz: could not connect to host venmos.com: could not connect to host viditut.com: could not connect to host villenavedornon.fr: could not connect to host vilog.me: could not connect to host vitapingu.de: could not connect to host vmgirls.com: could not connect to host vmug.pl: could not connect to host wachter.biz: could not connect to host -wantshow.com.br: could not connect to host +warlions.info: could not connect to host wasi-net.de: could not connect to host wasielewski.com.de: could not connect to host watchweasel.com: could not connect to host weareincognito.org: could not connect to host webart-factory.de: could not connect to host webduck.nl: could not connect to host webthings.com.br: could not connect to host +weed.ren: could not connect to host weicn.org: could not connect to host welby.cat: could not connect to host werhatunsverraten.eu: could not connect to host werkinc.de: could not connect to host whilsttraveling.com: could not connect to host wm-talk.net: could not connect to host wnnc.co.uk: could not connect to host -wofford-ecs.org: could not connect to host wolfemg.com: could not connect to host wolfwings.us: could not connect to host wordpresspro.cl: could not connect to host wtf.ninja: 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 xecureit.com: could not connect to host xia100.xyz: could not connect to host xiangqiushi.com: could not connect to host xing.ml: could not connect to host xtremenutrition.com.br: could not connect to host +yarogneva.ru: could not connect to host yffengshi.ml: could not connect to host yoitsu.moe: could not connect to host yux.fr: could not connect to host zaoext.com: could not connect to host zenfusion.fr: could not connect to host +zenghx.tk: could not connect to host zulu7.com: could not connect to host +zuppy.pm: could not connect to host zuviel.space: could not connect to host zzw.ca: could not connect to host 0-1.party: did not receive HSTS header 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 @@ -606,17 +615,16 @@ 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 3sreporting.com: did not receive HSTS header 404.sh: could not connect to host @@ -800,17 +808,16 @@ adrl.ca: could not connect to host adsfund.org: could not connect to host aduedu.de: did not receive HSTS header adunanza.net: did not receive HSTS header advancedstudio.ro: did not receive HSTS header adventures.is: did not receive HSTS header adver.top: did not receive HSTS header adviespuntklokkenluiders.nl: could not connect to host adzuna.co.uk: did not receive HSTS header -aebian.org: could not connect to host aemoria.com: could not connect to host aerialmediapro.net: could not connect to host aes256.ru: could not connect to host aether.pw: could not connect to host aevpn.net: could not connect to host aeyoun.com: did not receive HSTS header af-fotografie.net: did not receive HSTS header afdkompakt.de: max-age too low: 86400 @@ -1134,16 +1141,17 @@ 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 asset-alive.com: did not receive HSTS header asset-alive.net: did not receive HSTS header astrath.net: could not connect to host astrolpost.com: could not connect to host astromelody.com: did not receive HSTS header +asuhe.xyz: did not receive HSTS header atavio.at: could not connect to host atavio.ch: could not connect to host atavio.de: did not receive HSTS header atbeckett.com: did not receive HSTS header atcreform.gov: did not receive HSTS header atelier-rk.com: did not receive HSTS header athaliasoft.com: could not connect to host athenelive.com: could not connect to host @@ -1481,17 +1489,17 @@ bluebill.net: did not receive HSTS heade bluecon.eu: did not receive HSTS header bluefrag.com: could not connect to host blueglobalmedia.com: could not connect to host blueliv.com: did not receive HSTS header bluescloud.xyz: could not connect to host bluetenmeer.com: did not receive HSTS header bluketing.com: did not receive HSTS header bluserv.net: could not connect to host -bluteklab.com: did not receive HSTS header +bluteklab.com: could not connect to host blutroyal.de: could not connect to host bm-trading.nl: did not receive HSTS header bnhlibrary.com: did not receive HSTS header board-buy.ru: could not connect to host bobobox.net: could not connect to host bodo-wolff.de: could not connect to host bodyblog.nl: did not receive HSTS header bodybuilding-legends.com: could not connect to host @@ -1702,17 +1710,16 @@ campaignelves.com: did not receive HSTS campbellsoftware.co.uk: could not connect to host campfire.co.il: did not receive HSTS header campusdrugprevention.gov: did not receive HSTS header camsanalytics.com: could not connect to host canadiangamblingchoice.com: did not receive HSTS header candicontrols.com: did not receive HSTS header candratech.com: could not connect to host candygirl.shop: could not connect to host -cannyfoxx.me: could not connect to host canyonshoa.com: did not receive HSTS header cao.gov: did not receive HSTS header capecycles.co.za: did not receive HSTS header capeyorkfire.com.au: did not receive HSTS header capogna.com: could not connect to host captchatheprize.com: could not connect to host captianseb.de: could not connect to host captivatedbytabrett.com: could not connect to host @@ -2011,17 +2018,16 @@ comparamejor.com: did not receive HSTS h compareinsurance.com.au: did not receive HSTS header comparejewelleryprices.co.uk: could not connect to host comparetravelinsurance.com.au: did not receive HSTS header compassionate-biology.com: could not connect to host compiledworks.com: could not connect to host completionist.audio: could not connect to host complymd.com: did not receive HSTS header compraneta.com: did not receive HSTS header -compubench.com: did not receive HSTS header compucorner.com.mx: could not connect to host computeremergency.com.au: did not receive HSTS header computersystems.guru: did not receive HSTS header computertal.de: could not connect to host conception.sk: could not connect to host concord-group.co.jp: did not receive HSTS header confirm365.com: could not connect to host conformal.com: could not connect to host @@ -2093,16 +2099,17 @@ cranioschule.com: did not receive HSTS h crate.io: did not receive HSTS header cravelyrics.com: could not connect to host crazifyngers.com: could not connect to host crazy-crawler.de: did not receive HSTS header crazycen.com: did not receive HSTS header crazycraftland.de: did not receive HSTS header crazycraftland.net: could not connect to host crazyhotseeds.com: did not receive HSTS header +crazyker.com: did not receive HSTS header crbug.com: did not receive HSTS header (error ignored - included regardless) creaescola.com: did not receive HSTS header create-test-publish.co.uk: could not connect to host creativephysics.ml: could not connect to host creativeplayuk.com: did not receive HSTS header crecket.me: could not connect to host crendontech.com: could not connect to host crestoncottage.com: could not connect to host @@ -2314,21 +2321,17 @@ defcon.org: did not receive HSTS header defiler.tk: could not connect to host defme.eu: 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 delayrefunds.co.uk: could not connect to host deliverance.co.uk: could not connect to host -delta-data.ch: could not connect to host -delta-smart.ch: could not connect to host deltaconcepts.de: did not receive HSTS header -deltadata.ch: could not connect to host -deltasmart.ch: could not connect to host delvj.org: could not connect to host demdis.org: could not connect to host demilitarized.ninja: could not connect to host demo-server.us: could not connect to host demo.swedbank.se: did not receive HSTS header demomanca.com: did not receive HSTS header demotops.com: did not receive HSTS header denh.am: did not receive HSTS header @@ -2501,17 +2504,16 @@ dosenbierrepublik.com: did not receive H dot42.no: could not connect to host dotadata.me: could not connect to host dotspaperie.com: could not connect to host dougferris.id.au: could not connect to host doujin.nagoya: could not connect to host dovecotadmin.org: could not connect to host doveholesband.co.uk: did not receive HSTS header dovetailnow.com: could not connect to host -dowc.org: did not receive HSTS header download.jitsi.org: did not receive HSTS header downsouthweddings.com.au: could not connect to host doxcelerate.com: max-age too low: 69 doyoucheck.com: did not receive HSTS header drach.xyz: did not receive HSTS header dragonisles.net: could not connect to host dragons-of-highlands.cz: could not connect to host dragonsmoke.cloud: could not connect to host @@ -2554,17 +2556,17 @@ drycreekapiary.com: could not connect to ds-christiansen.de: could not connect to host dshiv.io: could not connect to host dtub.co: could not connect to host dualias.xyz: could not connect to host dubik.su: did not receive HSTS header duelysthub.com: could not connect to host duerls.de: did not receive HSTS header dukec.me: could not connect to host -dullsir.com: did not receive HSTS header +dullsir.com: could not connect to host dungi.org: could not connect to host duongpho.com: did not receive HSTS header duskopy.top: could not connect to host dutchessuganda.com: did not receive HSTS header dutchrank.com: did not receive HSTS header duuu.ch: could not connect to host dycontrol.de: could not connect to host dylanscott.com.au: did not receive HSTS header @@ -2920,17 +2922,16 @@ falkhusemann.de: did not receive HSTS he falkp.no: did not receive HSTS header fallenangelspirits.uk: could not connect to host faluninfo.ba: did not receive HSTS header fam-weyer.de: did not receive HSTS header fame-agency.net: 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 -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 fashion.net: did not receive HSTS header fashioncare.cz: did not receive HSTS header fashionholic.my: did not receive HSTS header fasset.jp: could not connect to host fastcomcorp.com: did not receive HSTS header @@ -3109,17 +3110,16 @@ frankwei.xyz: did not receive HSTS heade franta.biz: did not receive HSTS header franta.email: did not receive HSTS header franzt.de: could not connect to host frasesdeamizade.pt: could not connect to host frasesytarjetas.com: did not receive HSTS header frasys.io: could not connect to host frau-inge.de: could not connect to host fraudempire.com: could not connect to host -frederik-braun.com: did not receive HSTS header freeflow.tv: could not connect to host freelanced.co.za: could not connect to host freelo.cz: did not receive HSTS header freematthale.net: did not receive HSTS header freesoftwaredriver.com: did not receive HSTS header freethought.org.au: could not connect to host freeutopia.org: did not receive HSTS header freqlabs.com: did not receive HSTS header @@ -3215,17 +3215,17 @@ gamenected.de: could not connect to host gamepad.vg: could not connect to host gamepader.com: could not connect to host gameparade.de: could not connect to host gamepiece.com: could not connect to host gamers-life.fr: could not connect to host gamerslair.org: did not receive HSTS header gamerz-point.de: could not connect to host gamesdepartment.co.uk: did not receive HSTS header -gameserver-sponsor.de: could not connect to host +gameserver-sponsor.de: did not receive HSTS header gamesurferapp.com: could not connect to host gamingmedia.eu: did not receive HSTS header gampenhof.de: did not receive HSTS header gaptek.id: did not receive HSTS header gar-nich.net: 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 @@ -3286,17 +3286,16 @@ getpake.com: could not connect to host getremembrall.com: could not connect to host getronics.care: could not connect to host getsello.com: could not connect to host getspeaker.com: did not receive HSTS header getwashdaddy.com: could not connect to host gfm.tech: could not connect to host gfournier.ca: could not connect to host gfwsb.ml: could not connect to host -gfxbench.com: did not receive HSTS header ggss.ml: could not connect to host gh16.com.ar: 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 giakki.eu: could not connect to host @@ -3396,16 +3395,17 @@ gotspot.com: could not connect to host gottcode.org: did not receive HSTS header gouv.ovh: did not receive HSTS header gov.ax: could not connect to host goverage.org: did not receive HSTS header govillemo.ca: did not receive HSTS header gparent.org: did not receive HSTS header gpsfix.cz: did not receive HSTS header gpstuner.com: did not receive HSTS header +gpsvideocanada.com: did not receive HSTS header graavaapi.elasticbeanstalk.com: could not connect to host gracesofgrief.com: could not connect to host grachtenpandverkopen.nl: could not connect to host grafitec.ru: did not receive HSTS header grana.com: did not receive HSTS header grandchamproofing.com: did not receive HSTS header grandlinecsk.ru: did not receive HSTS header grandmascookieblog.com: did not receive HSTS header @@ -3672,17 +3672,17 @@ hillcity.org.nz: did not receive HSTS he hilnu.tk: could not connect to host hintergedanken.com: could not connect to host hipercultura.com: did not receive HSTS header hiphopconvention.nl: could not connect to host hipnos.net: did not receive HSTS header hiqhub.co.uk: could not connect to host hirefitness.co.uk: did not receive HSTS header hirevets.gov: could not connect to host -hirokilog.com: did not receive HSTS header +hirokilog.com: could not connect to host hititgunesi-tr.com: did not receive HSTS header hitoy.org: did not receive HSTS header hittipps.com: did not receive HSTS header hiv.gov: did not receive HSTS header hjes.com.ve: could not connect to host hjw-kunstwerk.de: could not connect to host hlyue.com: did not receive HSTS header hm1ch.ovh: could not connect to host @@ -3828,32 +3828,28 @@ ideation-inc.co.jp: could not connect to idedr.com: could not connect to host identitylabs.uk: could not connect to host identitysandbox.gov: could not connect to host idgsupply.com: did not receive HSTS header idisplay.es: did not receive HSTS header idlekernel.com: could not connect to host idontexist.me: did not receive HSTS header ie.search.yahoo.com: did not receive HSTS header -iemb.cf: did not receive HSTS header ierna.com: did not receive HSTS header ies-italia.it: did not receive HSTS header ies.id.lv: could not connect to host ievgenialehner.com: did not receive HSTS header ifad.org: did not receive HSTS header ifastuniversity.com: did not receive HSTS header ifengge.me: did not receive HSTS header ifleurs.com: could not connect to host ifx.ee: could not connect to host igforums.com: could not connect to host igiftcards.nl: did not receive HSTS header ignatisd.gr: did not receive HSTS header -ignatovich.by: could not connect to host -ignatovich.me: could not connect to host -iguana.com.ec: did not receive HSTS header igule.net: could not connect to host ihrlotto.de: could not connect to host ihrnationalrat.ch: could not connect to host ihsbsd.me: could not connect to host ihsbsd.tk: could not connect to host iispeed.com: did not receive HSTS header ijn-dd.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] ikon.name: did not receive HSTS header @@ -4034,17 +4030,17 @@ 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 ismetroonfiretoday.com: could not connect to host isogen5.com: could not connect to host isogram.nl: could not connect to host -israkurort.com: could not connect to host +israkurort.com: did not receive HSTS header 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 itechgeek.com: max-age too low: 0 items.lv: did not receive HSTS header itemton.com: could not connect to host @@ -4120,17 +4116,17 @@ japaripark.com: could not connect to hos japlex.com: could not connect to host jaqen.ch: could not connect to host jaroslavtrsek.cz: did not receive HSTS header jarsater.com: could not connect to host jartza.org: could not connect to host jasmineconseil.com: did not receive HSTS header jasoncosper.com: did not receive HSTS header jasonroe.me: did not receive HSTS header -jasperespejo.com: could not connect to host +jasperespejo.com: did not receive HSTS header jastoria.pl: could not connect to host jav-collective.com: could not connect to host java-board.com: could not connect to host javachip.win: could not connect to host javan.ga: could not connect to host javelinsms.com: could not connect to host javilacat.info: could not connect to host jayblock.com: did not receive HSTS header @@ -4230,17 +4226,16 @@ joshplant.co.uk: did not receive HSTS he joshstroup.me: could not connect to host jotpics.com: could not connect to host jottit.com: could not connect to host joyofcookingandbaking.com: did not receive HSTS header jpaglier.com: could not connect to host jpbike.cz: could not connect to host jpeaches.xyz: could not connect to host jptun.com: could not connect to host -jrc9.ca: did not receive HSTS header jrgold.me: could not connect to host jrmd.io: could not connect to host jrvar.com: could not connect to host jsanders.us: did not receive HSTS header jsbentertainment.nl: did not receive HSTS header jsg-technologies.de: did not receive HSTS header jualautoclave.com: did not receive HSTS header jualssh.com: could not connect to host @@ -4273,17 +4268,16 @@ juwairen.cn: could not connect to host jvoice.net: could not connect to host jwilsson.me: could not connect to host jxm.in: could not connect to host jznet.org: could not connect to host k-dev.de: could not connect to host k-rickroll-g.pw: could not connect to host k1cp.com: could not connect to host ka-clan.com: could not connect to host -kabat-fans.cz: did not receive HSTS header kabinapp.com: could not connect to host kabuabc.com: could not connect to host kackscharf.de: could not connect to host kadioglumakina.com.tr: did not receive HSTS header kaela.design: could not connect to host kahopoon.net: could not connect to host kaisers.de: did not receive HSTS header kaiyuewu.com: could not connect to host @@ -4407,17 +4401,16 @@ kleppe.co: could not connect to host kletterkater.com: did not receive HSTS header klicktojob.de: could not connect to host klssn.com: did not receive HSTS header klunkergarten.org: could not connect to host knapen.io: max-age too low: 604800 knccloud.com: could not connect to host kngk-transavto.ru: could not connect to host knigadel.com: did not receive HSTS header -knight-industries.org: could not connect to host knightsbridgegroup.org: could not connect to host knowdebt.org: did not receive HSTS header knowledgesnap.com: could not connect to host knowledgesnapsites.com: could not connect to host koddsson.com: did not receive HSTS header kode-it.de: could not connect to host kodexplorer.ml: could not connect to host kodiaklabs.org: could not connect to host @@ -4535,17 +4528,16 @@ lampl.info: could not connect to host lana.swedbank.se: did not receive HSTS header lanauzedesigns.com: did not receive HSTS header lanboll.com: could not connect to host lancehoteis.com: did not receive HSTS header lancehoteis.com.br: did not receive HSTS header land-links.org: did not receive HSTS header landgoedverkopen.nl: could not connect to host landhuisverkopen.nl: could not connect to host -landofelves.net: did not receive HSTS header landscape.canonical.com: max-age too low: 2592000 landscapingmedic.com: could not connect to host langenbach.rocks: could not connect to host langendries.eu: could not connect to host langhun.me: did not receive HSTS header laniakean.com: did not receive HSTS header lanzainc.xyz: did not receive HSTS header laobox.fr: could not connect to host @@ -4713,16 +4705,17 @@ 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 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 locktheirphone.com: could not connect to host locomotive.ca: did not receive HSTS header locvis.ru: could not connect to host loftboard.eu: could not connect to host log2n.uk: could not connect to host @@ -4838,21 +4831,21 @@ macchedil.com: did not receive HSTS head macdj.tk: could not connect to host macgeneral.de: did not receive HSTS header macsandcheesedreams.com: could not connect to host madars.org: did not receive HSTS header maddin.ga: could not connect to host madebyfalcon.co.uk: did not receive HSTS header madebymagnitude.com: did not receive HSTS header maderwin.com: did not receive HSTS header -madesoftware.com.br: did not receive HSTS header mafamane.com: could not connect to host mafiareturns.com: max-age too low: 2592000 magenx.com: did not receive HSTS header magia360.com: did not receive HSTS header +magneticanvil.com: did not receive HSTS header mahamed91.pw: could not connect to host mahfouzadedimeji.com: did not receive HSTS header mail-settings.google.com: did not receive HSTS header (error ignored - included regardless) mail.google.com: did not receive HSTS header (error ignored - included regardless) mailchuck.com: could not connect to host maildragon.com: could not connect to host mailgarant.nl: could not connect to host mailhost.it: could not connect to host @@ -4928,17 +4921,16 @@ markorszulak.com: did not receive HSTS h markrobin.de: did not receive HSTS header marksill.com: could not connect to host marktboten.de: did not receive HSTS header marktissink.nl: did not receive HSTS header markus-dev.com: did not receive HSTS header marleyresort.com: did not receive HSTS header marriottvetcareers.com: could not connect to host marshut.net: could not connect to host -martensen.me: max-age too low: 0 martensson.io: did not receive HSTS header martialc.be: could not connect to host martiert.com: could not connect to host martijnvhoof.nl: could not connect to host martinec.co.uk: could not connect to host martinestyle.com: could not connect to host martineve.com: did not receive HSTS header martinp.no: could not connect to host @@ -4976,31 +4968,33 @@ matsuz.com: could not connect to host matt.tf: did not receive HSTS header mattandreko.com: did not receive HSTS header matterconcern.com: could not connect to host mattfin.ch: could not connect to host matthewprenger.com: could not connect to host matthiassteen.be: max-age too low: 0 mattressinsider.com: max-age too low: 3153600 mattsvensson.com: max-age too low: 0 +mattwservices.co.uk: did not receive HSTS header matty.digital: did not receive HSTS header maultrom.ml: could not connect to host maupiknik.com: did not receive HSTS header maur.cz: did not receive HSTS header maurus-automation.de: did not receive HSTS header mausi.co: did not receive HSTS header mavisang.cf: could not connect to host mawe.red: could not connect to host maximov.space: could not connect to host maxr1998.de: could not connect to host maxserver.com: did not receive HSTS header maya.mg: could not connect to host mazyun.com: max-age too low: 3600 mazz-tech.com: could not connect to host mbconsultancy.nu: did not receive HSTS header +mc-team.org: max-age too low: 0 mc81.com: could not connect to host mca2017.org: did not receive HSTS header mcard.vn: did not receive HSTS header mcc.re: could not connect to host mccarty.io: could not connect to host mcdonalds.ru: did not receive HSTS header mcga.media: could not connect to host mclab.su: could not connect to host @@ -5179,16 +5173,17 @@ missrain.tw: could not connect to host mist.ink: could not connect to host mister.hosting: could not connect to host misterl.net: did not receive HSTS header mitarbeiter-pc.de: did not receive HSTS header mitchellrenouf.ca: could not connect to host mitm-software.badssl.com: could not connect to host mittenhacks.com: could not connect to host mivcon.net: could not connect to host +mixtape.moe: did not receive HSTS header mizd.at: could not connect to host mizi.name: could not connect to host mjcaffarattilaw.com: did not receive HSTS header mk-dizajn.com: did not receive HSTS header mkasu.org: did not receive HSTS header mkfs.be: could not connect to host mkw.st: could not connect to host mlcdn.co: could not connect to host @@ -5436,16 +5431,17 @@ nanto.eu: could not connect to host narada.com.ua: did not receive HSTS header narodniki.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 +nathanmfarrugia.com: did not receive HSTS header nationwidevehiclecontracts.co.uk: did not receive HSTS header natural-progesterone.net: could not connect to host naturecoaster.com: did not receive HSTS header natuurbehangnederland.nl: could not connect to host naudles.me: could not connect to host nav.jobs: could not connect to host naval.tf: could not connect to host navenlle.com: did not receive HSTS header @@ -5510,16 +5506,17 @@ newhdmovies.io: could not connect to hos newkaliningrad.ru: did not receive HSTS header newlooknow.com: did not receive HSTS header newmelalife.com: did not receive HSTS header newparadigmventures.net: did not receive HSTS header newportpropertygroup.com: could not connect to host newstarnootropics.com: max-age too low: 7776000 newtonwarp.com: could not connect to host next176.sk: did not receive HSTS header +next24.io: did not receive HSTS header next47.com: did not receive HSTS header nextcloud.org: could not connect to host nexth.de: could not connect to host nexth.net: could not connect to host nexth.us: could not connect to host nextpages.de: could not connect to host nextproject.us: could not connect to host nfluence.org: could not connect to host @@ -5576,16 +5573,17 @@ nodi.at: did not receive HSTS header noexpect.org: could not connect to host noima.com: did not receive HSTS header noisebridge.social: could not connect to host nolberg.net: did not receive HSTS header nolimitsbook.de: did not receive HSTS header nolte.work: could not connect to host nomorebytes.de: could not connect to host noodlesandwich.com: did not receive HSTS header +nootropicsource.com: did not receive HSTS header nope.website: could not connect to host nopex.no: could not connect to host nopol.de: could not connect to host norandom.com: could not connect to host norb.at: could not connect to host nordlicht.photography: did not receive HSTS header norge.guide: could not connect to host northcutt.com: did not receive HSTS header @@ -5687,17 +5685,16 @@ offenedialoge.de: max-age too low: 25920 officeclub.com.mx: did not receive HSTS header offshore-firma.org: could not connect to host offshore-unternehmen.com: could not connect to host offshorefirma-gruenden.com: could not connect to host offshoremarineparts.com: did not receive HSTS header oganek.ie: could not connect to host oganime.com: did not receive HSTS header ogogoshop.com: could not connect to host -ohai.su: could not connect to host ohling.org: could not connect to host ohm2013.org: did not receive HSTS header ohsocool.org: could not connect to host ohyooo.com: could not connect to host oiepoie.nl: could not connect to host oishioffice.com: did not receive HSTS header ojls.co: could not connect to host okane.love: could not connect to host @@ -5838,17 +5835,17 @@ otrsdemo.hu: did not receive HSTS header ottospora.nl: could not connect to host ourbank.com: did not receive HSTS header outdoorproducts.com: did not receive HSTS header outreachbuddy.com: could not connect to host outsider.im: could not connect to host outurnate.com: could not connect to host ouvirmusica.com.br: did not receive HSTS header ovenapp.io: did not receive HSTS header -override.io: could not connect to host +override.io: did not receive HSTS header oversight.io: could not connect to host ovuscloud.de: could not connect to host ovvy.net: did not receive HSTS header owennelson.me: could not connect to host owncloud.help: could not connect to host ownmovies.fr: could not connect to host oxro.co: did not receive HSTS header oxygenabsorbers.com: did not receive HSTS header @@ -5922,17 +5919,17 @@ passwd.io: could not connect to host passwordbox.com: did not receive HSTS header passwordrevelator.net: did not receive HSTS header pastaf.com: could not connect to host pastdream.xyz: could not connect to host paste.linode.com: could not connect to host pastebin.linode.com: could not connect to host pastenib.com: could not connect to host paster.li: did not receive HSTS header -pataua.kiwi: did not receive HSTS header +pataua.kiwi: could not connect to host paternitydnatest.com: could not connect to host patfs.com: did not receive HSTS header patientinsight.net: did not receive HSTS header patt.us: could not connect to host patterson.mp: could not connect to host paul-kerebel.pro: could not connect to host paulbunyanmls.com: did not receive HSTS header paulproell.at: could not connect to host @@ -6018,17 +6015,17 @@ pgpm.io: could not connect to host pgtb.be: did not receive HSTS header phalconist.com: could not connect to host pharmgkb.org: could not connect to host phdsupply.com: did not receive HSTS header phillipgoldfarb.com: did not receive HSTS header phillmoore.com: did not receive HSTS header phillprice.com: could not connect to host philpropertygroup.com: could not connect to host -phoebe.co.nz: did not receive HSTS header +phoebe.co.nz: could not connect to host phonenumberinfo.co.uk: could not connect to host phongmay24h.com: could not connect to host photoancestry.com: did not receive HSTS header photoblogverona.com: could not connect to host php-bach.org: could not connect to host phperformances.fr: did not receive HSTS header phrasing.me: could not connect to host physicaltherapist.com: did not receive HSTS header @@ -6047,17 +6044,17 @@ piggott.me.uk: did not receive HSTS head pilgermaske.org: did not receive HSTS header piligrimname.com: could not connect to host pillowandpepper.com: did not receive HSTS header pimpmymac.ru: did not receive HSTS header pims.global: did not receive HSTS header pin.net.au: did not receive HSTS header pinkcasino.co.uk: did not receive HSTS header pinkyf.com: could not connect to host -pinpayments.com: could not connect to host +pinpayments.com: did not receive HSTS header pippen.io: could not connect to host pirata.ga: could not connect to host piratebit.tech: could not connect to host piratedb.com: could not connect to host piratedot.com: could not connect to host piratelist.online: could not connect to host piratenlogin.de: could not connect to host pirateproxy.pe: could not connect to host @@ -6239,17 +6236,16 @@ projectdp.net: could not connect to host projectherogames.xyz: did not receive HSTS header projectmercury.space: could not connect to host projetoresecia.com: did not receive HSTS header promecon-gmbh.de: did not receive HSTS header prontocleaners.co.uk: could not connect to host prontolight.com: did not receive HSTS header prontomovers.co.uk: could not connect to host propactrading.com: could not connect to host -proposalonline.com: did not receive HSTS header prosocialmachines.com: could not connect to host prosoft.sk: did not receive HSTS header prosperident.com: did not receive HSTS header protoyou.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] providerlijst.com: did not receive HSTS header providerlijst.nl: did not receive HSTS header prowhisky.de: did not receive HSTS header proximato.com: could not connect to host @@ -6291,17 +6287,17 @@ purplemoon.mobi: did not receive HSTS he purplestar.mobi: did not receive HSTS header push.world: did not receive HSTS header pushapp.org: did not receive HSTS header pwd.ovh: could not connect to host pwm.jp: could not connect to host pwnsdx.pw: could not connect to host py.search.yahoo.com: did not receive HSTS header pyol.org: could not connect to host -pypi-mirrors.org: did not receive HSTS header +pypi-mirrors.org: could not connect to host pypi-status.org: could not connect to host pyplo.org: did not receive HSTS header pypt.lt: did not receive HSTS header pyrrhonism.org: could not connect to host pythonic.guru: could not connect to host pythonic.training: could not connect to host pzgreni.ch: did not receive HSTS header pzme.me: could not connect to host @@ -6319,17 +6315,17 @@ qipp.com: did not receive HSTS header qirinus.com: could not connect to host qldconservation.org: could not connect to host qonqa.de: did not receive HSTS header qop.io: could not connect to host qorm.co.uk: did not receive HSTS header qqq.gg: could not connect to host qr-city.org: did not receive HSTS header qrara.net: did not receive HSTS header -qrlending.com: did not receive HSTS header +qrlending.com: could not connect to host qtxh.net: did not receive HSTS header quail.solutions: could not connect to host quakerlens.com: did not receive HSTS header quality1.com.br: did not receive HSTS header qualityology.com: did not receive HSTS header quanglepro.com: could not connect to host quantacloud.ch: could not connect to host quantenteranik.eu: could not connect to host @@ -6517,22 +6513,23 @@ revtut.net: did not receive HSTS header 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 riaucybersolution.net: did not receive HSTS header ribopierre.fr: could not connect to host +richardjgreen.net: did not receive HSTS header richiemail.net: did not receive HSTS header richmondsunlight.com: did not receive HSTS header richmtdriver.com: could not connect to host richsiciliano.com: could not connect to host richterphilipp.com: could not connect to host -rickmartensen.nl: max-age too low: 0 +rickmartensen.nl: did not receive HSTS header rid-wan.com: could not connect to host rideforwade.com: could not connect to host rideforwade.net: could not connect to host rideforwade.org: could not connect to host rideworks.com: did not receive HSTS header ridwan.co: did not receive HSTS header right-to-love.name: did not receive HSTS header right2.org: could not connect to host @@ -6858,16 +6855,19 @@ seomobo.com: could not connect to host seosanantonioinc.com: did not receive HSTS header seowarp.net: did not receive HSTS header 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 +serve-a.com.au: did not receive HSTS header +servea.com.au: did not receive HSTS header +serveatechnologies.com: did not receive HSTS header serverangels.co.uk: could not connect to host servercode.ca: did not receive HSTS header serverdensity.io: did not receive HSTS header servergno.me: did not receive HSTS header servermonkey.nl: could not connect to host servious.org: could not connect to host servu.de: did not receive HSTS header seryo.moe: could not connect to host @@ -6889,16 +6889,17 @@ shadowguardian507-irl.tk: did not receiv shadowguardian507.tk: did not receive HSTS header shadowmorph.info: did not receive HSTS header shadowshocks.net: did not receive HSTS header shadowsocks.gift: could not connect to host shadowsocks.net: could not connect to host shadowsocks.vc: could not connect to host shadowsocks.wiki: did not receive HSTS header shadowsoks.com: could not connect to host +shagi29.ru: did not receive HSTS header shakebox.de: could not connect to host shanekoster.net: could not connect to host shanesage.com: could not connect to host shaobin.wang: could not connect to host shapesedinburgh.co.uk: did not receive HSTS header shardsoft.com: could not connect to host shareimg.xyz: could not connect to host sharejoy.cn: did not receive HSTS header @@ -6967,16 +6968,17 @@ silicagelpackets.ca: did not receive HST silver-drachenkrieger.de: did not receive HSTS header silverhome.ninja: could not connect to host silverpvp.com: could not connect to host simbast.com: could not connect to host simbihaiti.com: did not receive HSTS header simccorp.com: did not receive HSTS header simeon.us: max-age too low: 2592000 simfri.com: did not receive HSTS header +simnovo.net: did not receive HSTS header simobilklub.si: could not connect to host simod.org: could not connect to host simon-pokorny.com: did not receive HSTS header simon.butcher.name: max-age too low: 2629743 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 @@ -7011,27 +7013,29 @@ skoda-clever-lead.de: could not connect skoda-nurdiebesten.de: did not receive HSTS header skoda-service-team-cup.de: did not receive HSTS header skotty.io: did not receive HSTS header skpdev.net: could not connect to host skullhouse.nyc: did not receive HSTS header skyasker.cn: could not connect to host skyflix.me: could not connect to host skyline.link: could not connect to host +skyline.tw: did not receive HSTS header skylocker.net: could not connect to host skylocker.nl: could not connect to host skyoy.com: did not receive HSTS header skyrunners.ch: could not connect to host slanterns.net: could not connect to host slash-dev.de: did not receive HSTS header slashand.co: did not receive HSTS header slashdesign.it: did not receive HSTS header slashem.me: did not receive HSTS header slattery.co: could not connect to host slauber.de: did not receive HSTS header +sleeklounge.com: did not receive HSTS header sleep10.com: could not connect to host sleepstar.com.mt: did not receive HSTS header slicketl.com: did not receive HSTS header slightfuture.click: could not connect to host slightfuture.com: did not receive HSTS header slix.io: could not connect to host slope.haus: could not connect to host slotboss.co.uk: did not receive HSTS header @@ -7127,16 +7131,17 @@ southernutahinfluencers.com: did not rec southgale.condos: could not connect to host southside-crew.club: could not connect to host southworcestershiregpservices.co.uk: could not connect to host souyar.de: could not connect to host souyar.net: could not connect to host souyar.us: could not connect to host sovereignshare.com: could not connect to host sown.dyndns.org: could not connect to host +sowncloud.de: did not receive HSTS header spacedust.xyz: could not connect to host spacefish.biz: could not connect to host spacehq.org: could not connect to host spacemo.com: did not receive HSTS header spaggel.nl: could not connect to host spamloco.net: did not receive HSTS header sparelib.com: max-age too low: 3650 spark.team: could not connect to host @@ -7311,16 +7316,17 @@ sugarcitycon.com: could not connect to h suian.or.jp: max-age too low: 86400 suite73.org: could not connect to host sujoydhar.in: did not receive HSTS header summitbankofkc.com: did not receive HSTS header sumoatm.com: did not receive HSTS header sumoscout.de: could not connect to host suncountrymarine.com: did not receive HSTS header sundanceusa.com: did not receive HSTS header +sunflyer.cn: did not receive HSTS header sunlandsg.vn: did not receive HSTS header sunnyfruit.ru: could not connect to host sunshinepress.org: could not connect to host sunyanzi.tk: could not connect to host suos.io: could not connect to host supcro.com: could not connect to host super-erotica.ru: could not connect to host super-garciniaslim.com: could not connect to host @@ -7452,17 +7458,17 @@ taxiindenbosch.nl: did not receive HSTS taxsnaps.co.nz: did not receive HSTS header tazz.in: could not connect to host tbspace.de: did not receive HSTS header tc-bonito.de: did not receive HSTS header tcao.info: could not connect to host tcby45.xyz: could not connect to host tcdw.net: could not connect to host tcl.ath.cx: could not connect to host -tcomms.org: max-age too low: 0 +tcomms.org: could not connect to host tcp.expert: did not receive HSTS header tcwebvn.com: could not connect to host tdsb.ga: could not connect to host tdsb.gq: could not connect to host tdsb.ml: could not connect to host tdsbhack.cf: could not connect to host tdsbhack.ga: could not connect to host tdsbhack.gq: could not connect to host @@ -7669,17 +7675,17 @@ 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.be: could not connect to host tiliaze.biz: 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 @@ -7824,17 +7830,16 @@ travel-kuban.ru: did not receive HSTS he travelinsightswriter.com: could not connect to host travelinsurance.co.nz: did not receive HSTS header trazosdearte.com: did not receive HSTS header treatprostatewithhifu.com: could not connect to host treeby.net: could not connect to host treeremovaljohannesburg.co.za: could not connect to host treino.blog.br: could not connect to host trell.co.in: did not receive HSTS header -tremoureux.fr: did not receive HSTS header trendberry.ru: could not connect to host trileg.net: could not connect to host trinityaffirmations.com: max-age too low: 0 trinitycore.org: max-age too low: 2592000 tripdelta.com: did not receive HSTS header tripinsider.club: did not receive HSTS header trixies-wish.nz: could not connect to host troi.de: did not receive HSTS header @@ -7867,17 +7872,17 @@ tunai.id: could not connect to host tunca.it: did not receive HSTS header tunebitfm.de: could not connect to host turkrock.com: did not receive HSTS header turnik-67.ru: could not connect to host turniker.ru: could not connect to host turnsticks.com: could not connect to host turtlementors.com: could not connect to host tussengelegenwoningverkopen.nl: could not connect to host -tuturulianda.com: could not connect to host +tuturulianda.com: did not receive HSTS header tuvalie.com: could not connect to host tuxcall.de: could not connect to host tuxz.net: did not receive HSTS header tv.search.yahoo.com: could not connect to host tvtubeflix.com: did not receive HSTS header tvz-materijali.com: could not connect to host tw2-tools.ga: could not connect to host twarog.cc: could not connect to host @@ -8040,17 +8045,17 @@ utilitronium-shockwave.com: could not co utleieplassen.no: could not connect to host utopiagalaxy.space: could not connect to host utopian-surgery.com: could not connect to host utopianconcept.com: did not receive HSTS header utopianhomespa.com: did not receive HSTS header utopianrealms.org: did not receive HSTS header uttnetgroup.fr: did not receive HSTS header utumno.ch: did not receive HSTS header -utvbloggen.se: max-age too low: 604800 +utvbloggen.se: did not receive HSTS header uvarov.pw: could not connect to host uwstartups.com: could not connect to host uxux.pl: could not connect to host uy.search.yahoo.com: did not receive HSTS header uyym.com: could not connect to host uz.search.yahoo.com: did not receive HSTS header uzmandroid.com: did not receive HSTS header uzmandroid.net: could not connect to host @@ -8109,17 +8114,17 @@ veggiesbourg.fr: did not receive HSTS he vegis.ro: did not receive HSTS header vehent.org: did not receive HSTS header vehicleuplift.co.uk: did not receive HSTS header vemokin.net: could not connect to host vendigital.com: did not receive HSTS header venicecomputerrepair.com: did not receive HSTS header venixplays-stream.ml: could not connect to host vennet.fr: did not receive HSTS header -venturepro.com: did not receive HSTS header +venturepro.com: could not connect to host ventzke.com: did not receive HSTS header venzocrm.com: did not receive HSTS header verifikatorindonesia.com: could not connect to host vermontcareergateway.org: could not connect to host veryhax.de: could not connect to host vestacp.top: could not connect to host vetdnacenter.com: did not receive HSTS header veterinaire-cazeres-foucault.fr: could not connect to host @@ -8267,17 +8272,16 @@ 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: did not receive HSTS header watersportmarkt.net: did not receive HSTS header watsonhall.uk: could not connect to host -wattechweb.com: did not receive HSTS header wave.is: could not connect to host wavefloatrooms.com: did not receive HSTS header wavefrontsystemstech.com: could not connect to host we-bb.com: could not connect to host wear2work.nl: did not receive HSTS header weaverhairextensions.nl: could not connect to host web-industry.fr: could not connect to host web-insider.net: could not connect to host @@ -8482,17 +8486,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) @@ -8579,26 +8583,26 @@ xn--jobbrse-d1a.de: did not receive HSTS xn--jp-6l5cs1yf3ivjsglphyv.net: could not connect to host xn--l8j9d2b.jp: could not connect to host xn--lgb3a8bcpn.cf: could not connect to host xn--lgb3a8bcpn.ga: could not connect to host xn--lgb3a8bcpn.gq: could not connect to host xn--lgb3a8bcpn.ml: could not connect to host xn--ls8hi7a.tk: could not connect to host xn--lsaupp-iua.se: did not receive HSTS header -xn--mgbbh2a9fub.xn--ngbc5azd: could not connect to host xn--milchaufschumer-test-lzb.de: could not connect to host xn--neb-tma3u8u.xyz: could not connect to host xn--qckqc0nxbyc4cdb4527err7c.biz: did not receive HSTS header xn--xdtx3pfzbiw3ar8e7yedqrhui.com: could not connect to host xn--yoamomisuasbcn-ynb.com: could not connect to host xn--zck9a4b352yuua.jp: did not receive HSTS header xobox.me: could not connect to host xoffy.com: did not receive HSTS header xom.party: could not connect to host +xombra.com: did not receive HSTS header xor-a.net: could not connect to host xperiacodes.com: did not receive HSTS header xpi.fr: could not connect to host xpj.sx: could not connect to host xrp.pw: could not connect to host xsmobile.de: could not connect to host xtom.email: could not connect to host xtream-hosting.com: could not connect to host @@ -8703,17 +8707,16 @@ zahyantechnologies.com: could not connec zakoncontrol.com: did not receive HSTS header zamorano.edu: could not connect to host zamos.ru: max-age too low: 0 zaneweb.org: could not connect to host zao.fi: could not connect to host zaoshanghao-dajia.rhcloud.com: did not receive HSTS header zap.yt: did not receive HSTS header zarooba.com: could not connect to host -zary.me: did not receive HSTS header zavca.com: did not receive HSTS header zbigniewgalucki.eu: did not receive HSTS header zcon.nl: could not connect to host zdravotnickasluzba.eu: could not connect to host zebrababy.cn: could not connect to host zebry.nl: could not connect to host zecrypto.com: could not connect to host zeedroom.be: did not receive HSTS header @@ -8736,16 +8739,17 @@ zeroday.sk: did not receive HSTS header zerofox.gq: could not connect to host zeroml.ml: could not connect to host zerudi.com: did not receive HSTS header zett4.me: could not connect to host zeytin.pro: could not connect to host zh.search.yahoo.com: did not receive HSTS header zh1.li: could not connect to host zhang.wtf: could not connect to host +zhangge.net: did not receive HSTS header zhangruilin.com: did not receive HSTS header zhaojin97.cn: could not connect to host zhendingresources.com: did not receive HSTS header zhh.in: could not connect to host zhihua-lai.com: did not receive HSTS header zhiin.net: could not connect to host zhiku8.com: could not connect to host zhuji.com.cn: could not connect to host @@ -8768,17 +8772,16 @@ zjutv.com: could not connect to host zk.gd: did not receive HSTS header zkillboard.com: did not receive HSTS header zking.ga: could not connect to host zmsastro.co.za: could not connect to host zmy.im: did not receive HSTS header zocken.com: did not receive HSTS header zoe.vc: could not connect to host zohar.link: could not connect to host -zolotoy-standart.com.ua: did not receive HSTS header 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
--- 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(1518975126211000); +const PRTime gPreloadListExpirationTime = INT64_C(1519019249394000); %% 0.me.uk, 1 00001.am, 1 00002.am, 1 0005pay.com, 1 0010100.net, 1 00220022.net, 1 007-preisvergleich.de, 1 @@ -253,16 +253,17 @@ 365beautyworld.com, 1 365healthworld.com, 1 365maya.com, 1 365skulls.com, 1 3778vip.com, 1 379700.com, 1 38888msc.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 3cs.ch, 1 3dm.audio, 1 3dmedium.de, 1 @@ -793,16 +794,17 @@ adzuna.com.br, 1 adzuna.de, 1 adzuna.fr, 1 adzuna.in, 1 adzuna.it, 1 adzuna.nl, 1 adzuna.pl, 1 adzuna.ru, 1 adzuna.sg, 1 +aebian.org, 1 aegee-utrecht.nl, 1 aegisalarm.co.uk, 1 aegisalarm.com, 1 aegisalarms.co.uk, 1 aegisalarms.com, 1 aegrel.ee, 1 aehe.us, 1 aelurus.com, 1 @@ -2016,17 +2018,16 @@ astronomie-fulda.de, 1 astroscopy.ch, 1 astrosnail.pt.eu.org, 1 astural.org, 1 astutikhonda.com, 1 astutr.co, 1 asucrews.com, 1 asuhe.cc, 1 asuhe.win, 1 -asuhe.xyz, 1 asuka.io, 1 asun.co, 1 asurepay.cc, 1 asustreiber.de, 1 asvsa.ch, 1 async.be, 0 at-one.ca, 1 at.search.yahoo.com, 0 @@ -4178,16 +4179,17 @@ candy-it.de, 1 candylion.rocks, 1 candyout.com, 1 canhazip.com, 1 canifis.net, 1 canihavesome.coffee, 1 canlidoviz.com, 1 cannabis-marijuana.com, 1 cannarobotics.com, 1 +cannyfoxx.me, 1 canoonic.se, 1 cantatio.ch, 1 canterberry.cc, 1 cantrack.com, 1 canva-dev.com, 1 canva.com, 1 canyoupwn.me, 1 cao.la, 1 @@ -5407,16 +5409,17 @@ compliance-systeme.de, 1 compliancedictionary.com, 1 complt.xyz, 1 compostatebien.com.ar, 1 compreautomacao.com.br, 1 compredietlight.com.br, 1 comprefitasadere.com.br, 1 comprehensiveihc.com, 1 compsmag.com, 1 +compubench.com, 1 compucastell.ch, 1 compucorner.mx, 1 compuplast.cz, 1 computehealth.com, 1 computer-acquisti.com, 1 computeracademy.co.za, 1 computerassistance.co.uk, 1 computerbase.de, 1 @@ -5710,17 +5713,16 @@ crashsec.com, 1 crawcial.de, 1 crawfordcountytcc.org, 1 crawl.report, 1 crazydomains.ae, 1 crazydomains.co.nz, 1 crazydomains.co.uk, 1 crazydomains.com.au, 1 crazydomains.in, 1 -crazyker.com, 1 crazymeeshu.com, 1 crazypaul.com, 1 crazyprojects.es, 1 crbug.com, 1 crdmendoza.net, 1 crea-etc.net, 1 crea-shops.ch, 1 crea.bg, 1 @@ -6559,18 +6561,22 @@ deliandiver.org, 1 deliberatedigital.com, 1 deliciisanatoase.ro, 1 deliciousmedia.co.uk, 1 delicioustable.com, 1 deliver.moe, 1 delogo.nl, 1 deloittequant.com, 1 delphine.dance, 1 +delta-data.ch, 1 +delta-smart.ch, 1 delta.ru, 1 deltaacademy.org, 1 +deltadata.ch, 1 +deltasmart.ch, 1 deltava.org, 1 demarle.ch, 1 dementiapraecox.de, 1 demeyere-usedcars.be, 1 demfloro.ru, 1 demijn.nl, 1 demilletech.net, 1 demo.sb, 1 @@ -6984,17 +6990,17 @@ discha.net, 1 disciples.io, 1 discipul.nl, 1 disclosure.io, 1 disco-crazy-world.de, 1 discofitta.com, 1 disconformity.net, 1 discord-chan.net, 1 discordapp.com, 1 -discotek.club, 0 +discotek.club, 1 discount24.de, 1 discountmania.eu, 1 discountmetaux.fr, 1 discountplush.com, 1 discover-mercure.com, 1 discoverhealthage.com, 0 discoveringdocker.com, 1 discoverrsv.com, 1 @@ -7298,16 +7304,17 @@ doublethink.online, 1 doubleup.com.au, 1 doubleyummy.uk, 1 doucheba.gs, 1 doujinshi.info, 1 dounats.com, 1 douzer.de, 1 dovenzorgmalawi.nl, 1 dovro.de, 1 +dowc.org, 1 downloadaja.com, 1 downloadgamemods.com, 1 downloadgram.com, 1 downloadsoftwaregratisan.com, 1 downtimerobot.com, 1 downtimerobot.nl, 1 downtownvernon.com, 1 doyouedc.com, 1 @@ -8881,16 +8888,17 @@ fanflow.com, 1 fangs.ink, 1 fanjoe.be, 1 fant.dk, 0 fantasiapainter.com, 1 fantasticcleaners.com.au, 1 fantasticgardenersmelbourne.com.au, 1 fantastichandymanmelbourne.com.au, 1 fantasticpestcontrolmelbourne.com.au, 1 +fantasyescortsbirmingham.co.uk, 1 fantasyspectrum.com, 1 fantopia.club, 1 fanvoice.com, 1 fanyue123.tk, 1 fanz.pro, 1 fanzlive.com, 1 fap.no, 1 faq.ie, 1 @@ -9650,16 +9658,17 @@ frauenarzt-zinke.de, 1 fraurichter.net, 1 fraye.net, 1 frbracch.it, 1 frdl.ch, 1 freaksites.dk, 1 frebi.org, 1 frebib.net, 1 freddythechick.uk, 1 +frederik-braun.com, 1 frederikschoell.de, 0 fredliang.cn, 1 fredloya.com, 1 fredtec.ru, 1 fredvoyage.fr, 1 free-your-pc.com, 1 free.com.tw, 1 free8.xyz, 1 @@ -10356,16 +10365,17 @@ geyduschek.be, 1 gfast.ru, 1 gfhgiro.nl, 0 gfk-kunststoff-luebben.de, 1 gflame.de, 1 gflclan.ru, 1 gforce.ninja, 1 gfoss.eu, 1 gfoss.gr, 1 +gfxbench.com, 1 ggdcpt.com, 1 gginin.today, 1 ggl-luzern.ch, 1 gglks.com, 1 ggmmontascale.it, 1 ggp2.com, 1 ggrks-asano.com, 1 ggs-marschallstrasse.de, 1 @@ -10677,17 +10687,16 @@ gpalabs.com, 1 gpcsolutions.fr, 1 gpdimaranathasiantar.org, 1 gpfclan.de, 1 gplintegratedit.com, 1 gpo.gov, 0 gprs.uk.com, 1 gps.com.br, 1 gpsarena.ro, 1 -gpsvideocanada.com, 1 gpws.ovh, 1 gr.search.yahoo.com, 0 gra2.com, 1 graasp.net, 1 grabi.ga, 1 grace-wan.com, 1 gracebaking.com, 1 gracedays.org, 1 @@ -12194,16 +12203,17 @@ idtheft.gov, 1 idubaj.cz, 1 idvl.de, 1 iec.pe, 1 ieeesb.nl, 1 ieeesbe.nl, 1 ieeespmb.org, 1 ieji.de, 0 iemas.azurewebsites.net, 1 +iemb.cf, 1 iemb.tk, 1 ieval.ro, 1 iewar.com, 1 ifamily.top, 1 ifan.ch, 1 ifasec.de, 0 ifcfg.me, 1 ifconfig.co, 1 @@ -12231,21 +12241,24 @@ iggprivate.com, 1 iggsoft.com, 1 iggsoftware.com, 1 igi.codes, 1 igiftcards.de, 1 igimusic.com, 1 igm-be.ch, 1 ignace72.eu, 1 ignat.by, 1 +ignatovich.by, 1 +ignatovich.me, 1 ignitedmindz.in, 1 igorw.org, 1 igotoffer.com, 0 igrivi.com, 1 igsmgmt.com, 1 +iguana.com.ec, 0 ih8sn0w.com, 1 ihacklabs.com, 1 ihatethissh.it, 1 ihc.im, 1 ihkk.net, 1 ihollaback.org, 1 ihopeit.works, 1 ihostup.net, 1 @@ -13615,16 +13628,17 @@ jproxx.com, 1 jps-selection.co.uk, 1 jps-selection.com, 1 jps-selection.eu, 1 jpshop.ru, 1 jpslconsulting.ca, 1 jr5devdoug.xyz, 1 jr5devdouglas.xyz, 1 jr5proxdoug.xyz, 1 +jrc9.ca, 1 jreb.nl, 1 jreinert.com, 1 jross.me, 1 jrtapsell.co.uk, 0 jrxpress.com, 1 js-online.net, 1 jschumacher.info, 1 jsd-cog.org, 1 @@ -13762,16 +13776,17 @@ k9swx.com, 1 kaamoscreations.com, 1 kaanduman.com, 1 kaangenc.me, 1 kaasbijwijn.nl, 1 kaashosting.nl, 1 kaatha-kamrater.se, 1 kab-s.de, 1 kabashop.com.br, 1 +kabat-fans.cz, 0 kabeltv.co.nz, 1 kabeuchi.com, 1 kaboom.pw, 1 kabu-abc.com, 1 kabus.org, 1 kachlikova2.cz, 1 kack.website, 1 kadmec.com, 1 @@ -14332,16 +14347,17 @@ kncg.pw, 1 kneblinghausen.de, 1 knegten-agilis.com, 1 knep.me, 1 kngk-azs.ru, 1 kngk-group.ru, 1 kngk.org, 1 kngkng.com, 1 kniga.market, 1 +knight-industries.org, 1 knightsblog.de, 1 knightsbridge.net, 1 knightsweep.com, 1 knip.ch, 1 knnet.ch, 1 knot-store.com, 1 knowledgehook.com, 1 knowlevillagecc.co.uk, 1 @@ -14781,16 +14797,17 @@ lanbyte.se, 1 lancejames.com, 1 lancelafontaine.com, 1 lanceyip.com, 1 lancork.net, 1 lancyvbc.ch, 1 land.nrw, 0 landbetweenthelakes.us, 1 landflair-magazin.de, 1 +landofelves.net, 1 lanetix.com, 1 langatang.com, 1 langbein.org, 1 langguth.io, 1 langkahteduh.com, 1 langly.fr, 0 languageterminal.com, 1 langworth.com, 1 @@ -15505,17 +15522,16 @@ loadwallet.com, 1 loanaway.ca, 1 loancompare.co.za, 1 loandolphin.com.au, 1 loanmatch.sg, 1 loanstreet.be, 1 loanstreet.nl, 1 lobivia.de, 1 lobosdomain.no-ip.info, 1 -lobste.rs, 1 locais.org, 1 local360.net, 1 localbandz.com, 1 localbitcoins.com, 1 localblock.co.za, 1 localdecor.com.br, 1 localhorst.xyz, 1 localspot.pl, 1 @@ -15939,16 +15955,17 @@ madeinchezmoi.net, 1 madeinorder.com, 1 madeinstudio3.com, 1 madeintucson.org, 1 madeitwor.se, 1 mademoiselle-emma.be, 1 mademoiselle-emma.fr, 1 mademoiselledemargaux.com, 1 mader.jp, 1 +madesoftware.com.br, 1 madesurveying.co.uk, 1 madin.ru, 1 madirc.net, 1 madmar.ee, 1 madnetwork.org, 1 madoka.nu, 1 madokami.net, 1 madrants.net, 1 @@ -15982,17 +15999,16 @@ magi.systems, 1 magicball.co, 1 magicbroccoli.de, 0 magiclen.org, 1 magicspaceninjapirates.de, 0 magictable.com, 1 magilio.com, 1 magnacumlaude.co, 1 magnatronic.com.br, 1 -magneticanvil.com, 1 magneticattraction.com.au, 1 magnets.jp, 1 magnettracker.com, 1 magnoliadoulas.com, 1 magnoliasib.ru, 0 magnoliastrong.com, 1 magwin.co.uk, 1 magyarokegyhelyen.hu, 1 @@ -16416,17 +16432,16 @@ matthiasschwab.de, 1 matthiasweiler.de, 1 matthijssen.info, 1 mattia98.org, 1 mattisam.com, 1 mattli.us, 1 mattmccutchen.net, 1 mattonline.me, 1 mattwb65.com, 1 -mattwservices.co.uk, 1 matviet.vn, 1 matze.co, 1 matze.org, 1 mauldincookfence.com, 1 mauriciog.com.ar, 0 mauricioghiorzi.com.ar, 0 maury-moteurs.com, 1 mavenclinic.com, 1 @@ -16497,17 +16512,16 @@ mbits.solutions, 1 mblankhorst.nl, 1 mbp.banking.co.at, 0 mbr-net.de, 1 mbrooks.info, 1 mbs-journey.com, 1 mbsec.net, 1 mbweir.com, 1 mbwemmel-usedcars.be, 1 -mc-team.org, 1 mc-venture.net, 0 mcadmin.net, 1 mcatnnlo.org, 1 mcb-bank.com, 1 mccordworks.com, 1 mccrackon.com, 1 mcdanieldevelopmentservices.com, 1 mcdona1d.me, 1 @@ -17134,17 +17148,16 @@ mitsukabose.com, 1 mittagonggardencentre.com.au, 1 mittelunsachlich.de, 1 mitzpettel.com, 1 miui-germany.de, 1 miukimodafeminina.com, 1 mivzakim.net, 1 mixnshake.com, 1 mixposure.com, 1 -mixtape.moe, 1 miya.io, 1 miyako-kyoto.jp, 1 miyatore.com, 1 miyoshi-kikaku.co.jp, 1 miyoshi-kikaku.com, 1 miyugirls.com, 1 mizipack.com, 1 mizque.ch, 1 @@ -18029,17 +18042,16 @@ natatorium.org, 1 natecraun.net, 1 natenom.com, 1 natenom.de, 1 natenom.name, 1 nathaliebaron.ch, 1 nathaliebaroncoaching.ch, 1 nathan.io, 1 nathankonopinski.com, 1 -nathanmfarrugia.com, 1 nathansmetana.com, 1 nathumarket.com.br, 1 nationalcentereg.org, 1 nationalcrimecheck.com.au, 1 nationalmap.gov, 1 nationalpriorities.org, 1 nationaltaxprep.com, 1 natives-team.ch, 1 @@ -18389,17 +18401,16 @@ newtnote.com, 1 newtonhaus.com, 1 newtrackon.com, 1 nex.sx, 1 nexgeneration-solutions.com, 1 nexicafiles.com, 1 nexlab.org, 1 next-log.ru, 0 next-taxi.ru, 1 -next24.io, 1 nextads.ch, 1 nextcairn.com, 1 nextcloud.com, 1 nextcloud.li, 1 nextend.net, 1 nextend.org, 1 nextgen.sk, 1 nextgencel.com, 1 @@ -18664,17 +18675,16 @@ noob-box.net, 0 noobunbox.net, 1 noodles.net.nz, 1 noodplan.co.za, 1 noodweer.be, 1 noop.ch, 1 noordsee.de, 1 noorsolidarity.com, 1 nootropic.com, 1 -nootropicsource.com, 1 nopaste.xyz, 1 nord-sud.be, 1 nordakademie.de, 1 nordic-survival.de, 1 nordiccasinocommunity.com, 1 nordinfo.fi, 1 nordmoregatebilklubb.com, 1 nordnetz-hamburg.de, 1 @@ -19011,16 +19021,17 @@ oftn.org, 1 oge.ch, 1 ogis.gov, 1 ogkw.de, 1 oglen.ca, 1 ogocare.com, 1 oguya.ch, 1 oh14.de, 1 ohadsoft.com, 1 +ohai.su, 1 ohayosoro.me, 1 ohchouette.com, 1 ohd.dk, 1 oheila.com, 1 ohiohealthfortune100.com, 1 ohlmeier.com, 0 ohlmeier.net, 0 ohlmeier.org, 0 @@ -19742,17 +19753,17 @@ patflix.com, 1 pathwaystoresilience.org, 1 pathwaytofaith.com, 1 patikabiztositas.hu, 1 patouille-et-gribouille.fr, 1 patralos.at, 0 patriaco.net, 1 patric-lenhart.de, 1 patrick-othmer.de, 1 -patrick-robrecht.de, 1 +patrick-robrecht.de, 0 patrick.dark.name, 1 patrickaudley.ca, 1 patrickaudley.com, 1 patrickbusch.net, 1 patrickneuro.de, 1 patrickschneider.me, 1 patriksima.cz, 1 patriksimek.cz, 1 @@ -20917,16 +20928,17 @@ propepper.net, 1 propershave.com, 1 properticons.com, 1 property-catalogue.eu, 1 propertygroup.pl, 1 propertyone.mk, 1 propipesystem.com, 1 proplan.co.il, 1 propmag.co, 1 +proposalonline.com, 1 propr.no, 1 propseller.com, 1 proslimdiets.com, 1 prospanek.cz, 1 prospo.co, 1 prostohobby.ru, 1 prostye-recepty.com, 1 prot.ch, 1 @@ -21879,17 +21891,16 @@ ricardo.nu, 1 ricardobalk.nl, 1 ricaud.me, 1 riccy.org, 1 riceadvice.info, 1 riceglue.com, 1 richardb.me, 1 richardcrosby.co.uk, 1 richardhering.de, 1 -richardjgreen.net, 1 richardlangworth.com, 1 richardlugten.nl, 1 richardrblocker.net, 1 richardson.engineering, 1 richardson.pictures, 1 richardson.software, 1 richardson.systems, 1 richardwarrender.com, 1 @@ -23194,19 +23205,16 @@ sergije-stanic.me, 1 sergiosantoro.it, 1 sergos.de, 1 serienstream.to, 1 serigraphs.co.uk, 1 seriousclimbing.com, 1 sernate.com, 1 serrano-chris.ch, 1 servdiscount.com, 1 -serve-a.com.au, 1 -servea.com.au, 1 -serveatechnologies.com, 1 servecrypt.com, 1 servecrypt.net, 1 servecrypt.ru, 1 servemnaction.org, 1 servepublic.com, 1 servepublic.org, 1 server-bg.net, 1 server-daten.de, 1 @@ -23311,17 +23319,16 @@ shadowsing.com, 1 shadowsocks.com, 1 shadowsocks.com.au, 1 shadowsocks.com.hk, 1 shadowsocks.la, 1 shadowsocks.software, 1 shadowsocksvpn.com, 1 shadowsworldonline.co.uk, 1 shag-shag.ru, 1 -shagi29.ru, 1 shaharyaranjum.com, 1 shahbeat.com, 1 shaitan.eu, 1 shakan.ch, 1 shaken-kyoto.jp, 1 shaken110.com, 1 shakepeers.org, 0 shakes4u.com, 1 @@ -23639,17 +23646,16 @@ sim4seed.org, 1 simam.de, 1 simbeton.nl, 1 simbolo.co.uk, 0 simeonoff.ninja, 1 simetal.ch, 1 simfed.org, 1 simlau.net, 1 simmis.fr, 1 -simnovo.net, 1 simoesgoulart.com.br, 1 simon-hofmann.org, 1 simon-mueller.de, 1 simon.lc, 1 simoncommunity.org.uk, 1 simoncook.org, 1 simonhirscher.de, 1 simonkjellberg.com, 1 @@ -23828,17 +23834,16 @@ sktan.com, 1 sktsolution.com, 0 skwile-cafe.com, 1 sky-aroma.com, 1 skyasker.com, 1 skydragoness.com, 1 skydrive.live.com, 0 skylgenet.nl, 1 skylightcreative.com.au, 1 -skyline.tw, 1 skylinertech.com, 1 skyloisirs.ch, 1 skyminds.net, 1 skynet233.ch, 1 skynethk.com, 1 skynetnetwork.eu.org, 1 skynetz.tk, 1 skypoker.com, 1 @@ -23860,17 +23865,16 @@ slangbellor.com, 1 slapen17.nl, 1 slaps.be, 1 slash64.co.uk, 1 slash64.com, 1 slash64.uk, 1 slashbits.no, 1 slaughterhouse.fr, 1 slaws.io, 1 -sleeklounge.com, 1 sleeplessbeastie.eu, 1 sleepmap.de, 1 sleepstar.co.uk, 1 sleepstar.de, 1 sleio.com, 1 slever.cz, 1 slevermann.de, 1 slevomat.cz, 1 @@ -24264,17 +24268,16 @@ southmelbourne.apartments, 1 southmorangtownhouses.com.au, 1 southside-crew.com, 1 southside-tuning-day.de, 1 southwaymotors.com, 1 southwestrda.org.uk, 1 souvik.me, 1 soved.eu, 1 sowingseasons.com, 1 -sowncloud.de, 1 soz6.com, 1 sozai-good.com, 1 sozialy.com, 1 sozon.ca, 1 sp.com.pl, 1 sp.rw, 1 space-it.de, 1 spacebaseapp.com, 1 @@ -24948,17 +24951,16 @@ summer.ga, 1 summercampthailand.com, 1 summitmasters.net, 1 sumthing.com, 1 sunbritetv.com, 1 sundaycooks.com, 1 sundayfundayjapan.com, 1 suneilpatel.com, 1 sunfireshop.com.br, 1 -sunflyer.cn, 0 sunfox.cz, 1 sunfulong.me, 1 sungo.wtf, 1 sunjaydhama.com, 1 sunn.ie, 1 sunsetwx.com, 1 sunshinesf.org, 1 sunsmartresorts.com, 1 @@ -26645,16 +26647,17 @@ trefcon.cz, 1 trefpuntdemeent.nl, 1 treinaweb.com.br, 1 treinonerd.com, 1 trek-planet.ru, 1 treker.us, 1 trekfriend.com, 1 tremlor.com, 1 tremolosoftware.com, 1 +tremoureux.fr, 1 trendingpulse.com, 1 trendisland.de, 1 trendkraft.de, 1 trendydips.com, 1 trenta.io, 1 trentmaydew.com, 1 tresorit.com, 1 tresorsecurity.com, 1 @@ -28043,16 +28046,17 @@ watchinventory.com, 1 watchstyle.com, 1 watchtv-online.pw, 1 watchweasel.com, 1 waterfedpole.com, 1 watermonitor.gov, 1 watersb.org, 1 watertrails.io, 1 watsonwork.me, 1 +wattechweb.com, 1 wave-ola.es, 1 wavesboardshop.com, 1 wavesoftime.com, 1 wawak.pl, 1 waxdramatic.com, 1 waylaydesign.com, 1 wayne.cloud, 0 wayohoo.com, 1 @@ -29081,16 +29085,17 @@ xn--knstler-n2a.tips, 0 xn--ktha-kamrater-pfba.se, 1 xn--lna-2000-9za.nu, 1 xn--lna-4000-9za.nu, 1 xn--love-un4c7e0d4a.com, 1 xn--lsupp-mra.net, 1 xn--manuela-stsser-psb.de, 1 xn--maraa-rta.org, 1 xn--mentaltraining-fr-musiker-uwc.ch, 1 +xn--mgbbh2a9fub.xn--ngbc5azd, 0 xn--mllers-wxa.info, 1 xn--n8j7dygrbu0c31a5861bq8qb.com, 1 xn--n8jp5083dnzs.net, 1 xn--n8jtcugp92n4wc738f.net, 1 xn--o3cea3afbwl1da3wf0i.com, 1 xn--p8jskj.jp, 1 xn--pbt947am3ab71g.com, 1 xn--pck4e3a2ex597b4ml.xyz, 1 @@ -29142,17 +29147,16 @@ xnet-x.net, 1 xng.io, 1 xninja.xyz, 1 xnode.org, 1 xo.tc, 1 xoda.pw, 1 xolphin.nl, 1 xombitgames.com, 1 xombitmusic.com, 1 -xombra.com, 1 xonn.de, 1 xotika.tv, 1 xp2.de, 1 xpd.se, 1 xpenology-fr.net, 1 xperidia.com, 1 xpj.bet, 1 xpjcunkuan.com, 1 @@ -29551,16 +29555,17 @@ zamow.co, 1 zandcell.com, 1 zanthra.com, 1 zaoext.com, 1 zapier.com, 1 zappbuildapps.com, 1 zaratan.fr, 1 zarmarket.org, 1 zarpo.com.br, 1 +zary.me, 1 zaufanatrzeciastrona.pl, 1 zavec.com.ec, 1 zavetaji.lv, 1 zawo-electric.de, 1 zbasenem.pl, 1 zbchen.com, 1 zberger.com, 1 zbetcheck.in, 1 @@ -29640,17 +29645,16 @@ zewtie.com, 1 zfast.com.br, 1 zfly.me, 1 zfo.gg, 1 zfree.co.nz, 1 zgrep.org, 1 zhang-hao.com, 1 zhang.nz, 1 zhangfangzhou.com, 1 -zhangge.net, 1 zhanghao.me, 1 zhangsidan.com, 1 zhangsir.net, 1 zhangyuhao.com, 1 zhangzifan.com, 1 zhaochen.xyz, 1 zhaofeng.li, 1 zhaoxixiangban.cc, 1 @@ -29710,16 +29714,17 @@ zodiacohouses.com, 1 zoeller.me, 1 zohar.shop, 1 zohar.wang, 0 zoigl.club, 1 zojadravai.com, 1 zoki.art, 1 zokster.net, 1 zolokar.xyz, 1 +zolotoy-standart.com.ua, 1 zombiesecured.com, 1 zomerschoen.nl, 1 zone-produkte.de, 1 zone39.com, 1 zonecb.com, 1 zonemaster.fr, 1 zonemaster.net, 1 zonesec.org, 1