зеркало из https://github.com/mozilla/gecko-dev.git
merge mozilla-central to mozilla-inbound. r=merge a=merge
This commit is contained in:
Коммит
f7a833d4c3
|
@ -5,6 +5,7 @@
|
|||
"use strict";
|
||||
|
||||
const ReactDOM = require("devtools/client/shared/vendor/react-dom");
|
||||
const { FILTER_TAGS } = require("../constants");
|
||||
const {
|
||||
createClass,
|
||||
createFactory,
|
||||
|
@ -167,9 +168,7 @@ const StatisticsPanel = createClass({
|
|||
},
|
||||
|
||||
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,
|
||||
|
|
|
@ -13,7 +13,7 @@ const {
|
|||
} = 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,
|
||||
|
@ -37,6 +37,14 @@ 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
|
||||
|
@ -98,7 +106,7 @@ const Toolbar = createClass({
|
|||
"aria-pressed": checked,
|
||||
"data-key": type,
|
||||
},
|
||||
L10N.getStr(`netmonitor.toolbar.filter.${type}`)
|
||||
TOOLBAR_FILTER_LABELS[type]
|
||||
)
|
||||
);
|
||||
});
|
||||
|
@ -115,7 +123,7 @@ const Toolbar = createClass({
|
|||
label(
|
||||
{
|
||||
className: "devtools-checkbox-label",
|
||||
title: L10N.getStr("netmonitor.toolbar.enablePersistentLogs.tooltip"),
|
||||
title: ENABLE_PERSISTENT_LOGS_TOOLTIP,
|
||||
},
|
||||
input({
|
||||
id: "devtools-persistlog-checkbox",
|
||||
|
@ -124,12 +132,12 @@ const Toolbar = createClass({
|
|||
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",
|
||||
|
@ -138,7 +146,7 @@ const Toolbar = createClass({
|
|||
checked: browserCacheDisabled,
|
||||
onClick: toggleBrowserCache,
|
||||
}),
|
||||
L10N.getStr("netmonitor.toolbar.disableCache.label"),
|
||||
DISABLE_CACHE_LABEL,
|
||||
),
|
||||
),
|
||||
span({ className: "devtools-toolbar-group" },
|
||||
|
|
|
@ -265,6 +265,19 @@ const FILTER_FLAGS = [
|
|||
"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,
|
||||
|
@ -292,6 +305,7 @@ const general = {
|
|||
HEADERS,
|
||||
RESPONSE_HEADERS,
|
||||
FILTER_FLAGS,
|
||||
FILTER_TAGS,
|
||||
SOURCE_EDITOR_SYNTAX_HIGHLIGHT_MAX_SIZE: 51200, // 50 KB in bytes
|
||||
REQUESTS_WATERFALL,
|
||||
PANELS,
|
||||
|
|
|
@ -9,21 +9,13 @@ 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 }),
|
||||
|
|
|
@ -28,7 +28,6 @@
|
|||
#include "nsINode.h"
|
||||
#include "nsIPresShell.h"
|
||||
#include "nsISelectionController.h"
|
||||
#include "nsISelectionPrivate.h"
|
||||
#include "nsISupports.h"
|
||||
#include "nsIWidget.h"
|
||||
#include "nsPresContext.h"
|
||||
|
@ -349,14 +348,13 @@ IMEContentObserver::InitWithEditor(nsPresContext* aPresContext,
|
|||
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;
|
||||
}
|
||||
|
@ -405,8 +403,8 @@ IMEContentObserver::InitWithPlugin(nsPresContext* aPresContext,
|
|||
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;
|
||||
}
|
||||
|
@ -480,9 +478,7 @@ IMEContentObserver::ObserveEditableNode()
|
|||
// 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
|
||||
|
@ -556,10 +552,7 @@ IMEContentObserver::UnregisterObservers()
|
|||
}
|
||||
|
||||
if (mSelection) {
|
||||
nsCOMPtr<nsISelectionPrivate> selPrivate(do_QueryInterface(mSelection));
|
||||
if (selPrivate) {
|
||||
selPrivate->RemoveSelectionListener(this);
|
||||
}
|
||||
mSelection->RemoveSelectionListener(this);
|
||||
mSelectionData.Clear();
|
||||
mFocusedWidget = nullptr;
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
|
||||
#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?
|
||||
|
@ -309,7 +310,7 @@ private:
|
|||
// 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;
|
||||
|
|
|
@ -3720,24 +3720,6 @@ EditorBase::GetTag(nsIDOMNode* aNode)
|
|||
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)
|
||||
|
|
|
@ -875,7 +875,6 @@ public:
|
|||
/**
|
||||
* 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);
|
||||
|
|
|
@ -352,11 +352,7 @@ HTMLEditor::CheckSelectionStateForAnonymousButtons(nsISelection* aSelection)
|
|||
}
|
||||
|
||||
// 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) {
|
||||
|
|
|
@ -378,7 +378,7 @@ HTMLEditRules::BeforeEdit(EditAction action,
|
|||
IsStyleCachePreservingAction(action)) {
|
||||
nsCOMPtr<nsINode> selNode =
|
||||
aDirection == nsIEditor::eNext ? selEndNode : selStartNode;
|
||||
nsresult rv = CacheInlineStyles(GetAsDOMNode(selNode));
|
||||
nsresult rv = CacheInlineStyles(selNode);
|
||||
NS_ENSURE_SUCCESS(rv, rv);
|
||||
}
|
||||
|
||||
|
@ -7296,7 +7296,7 @@ HTMLEditRules::GetTopEnclosingMailCite(nsINode& aNode)
|
|||
}
|
||||
|
||||
nsresult
|
||||
HTMLEditRules::CacheInlineStyles(nsIDOMNode* aNode)
|
||||
HTMLEditRules::CacheInlineStyles(nsINode* aNode)
|
||||
{
|
||||
NS_ENSURE_TRUE(aNode, NS_ERROR_NULL_POINTER);
|
||||
|
||||
|
@ -7310,7 +7310,7 @@ HTMLEditRules::CacheInlineStyles(nsIDOMNode* aNode)
|
|||
}
|
||||
|
||||
nsresult
|
||||
HTMLEditRules::GetInlineStyles(nsIDOMNode* aNode,
|
||||
HTMLEditRules::GetInlineStyles(nsINode* aNode,
|
||||
StyleCache aStyleCache[SIZE_STYLE_TABLE])
|
||||
{
|
||||
MOZ_ASSERT(aNode);
|
||||
|
@ -7336,9 +7336,10 @@ HTMLEditRules::GetInlineStyles(nsIDOMNode* aNode,
|
|||
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(
|
||||
|
@ -7386,9 +7387,7 @@ HTMLEditRules::ReapplyCachedStyles()
|
|||
|
||||
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;
|
||||
}
|
||||
|
|
|
@ -391,7 +391,7 @@ protected:
|
|||
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();
|
||||
|
@ -459,7 +459,7 @@ protected:
|
|||
* 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:
|
||||
|
|
|
@ -3572,68 +3572,35 @@ HTMLEditor::IsTextPropertySetByContent(nsINode* aNode,
|
|||
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()) {
|
||||
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) {
|
||||
found = true;
|
||||
} else {
|
||||
nsString tString(*aValue);
|
||||
if (tString.Equals(value, nsCaseInsensitiveStringComparator())) {
|
||||
found = true;
|
||||
} else {
|
||||
return true;
|
||||
}
|
||||
if (aValue->Equals(value, nsCaseInsensitiveStringComparator())) {
|
||||
return true;
|
||||
}
|
||||
// We found the prop with the attribute, but the value doesn't
|
||||
// match.
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
found = true;
|
||||
}
|
||||
if (found) {
|
||||
aIsSet = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
nsCOMPtr<nsIDOMNode>temp;
|
||||
if (NS_SUCCEEDED(node->GetParentNode(getter_AddRefs(temp))) && temp) {
|
||||
node = temp;
|
||||
} else {
|
||||
node = nullptr;
|
||||
}
|
||||
aNode = aNode->GetParentNode();
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
bool
|
||||
|
|
|
@ -582,9 +582,9 @@ protected:
|
|||
* @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.
|
||||
*/
|
||||
|
@ -594,13 +594,6 @@ protected:
|
|||
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);
|
||||
|
||||
|
|
|
@ -1961,8 +1961,8 @@ HTMLEditor::SwitchTableCellHeaderType(nsIDOMElement* aSourceCell,
|
|||
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!
|
||||
|
|
|
@ -5789,10 +5789,14 @@ pref("dom.webkitBlink.filesystem.enabled", true);
|
|||
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
|
||||
|
|
|
@ -266,7 +266,7 @@ NS_GENERIC_FACTORY_CONSTRUCTOR_INIT(nsFtpProtocolHandler, Init)
|
|||
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)
|
||||
|
|
|
@ -30,6 +30,7 @@
|
|||
#include "nsPrintfCString.h"
|
||||
#include "nsCOMPtr.h"
|
||||
#include "nsNetCID.h"
|
||||
#include "mozilla/ClearOnShutdown.h"
|
||||
#include "mozilla/Printf.h"
|
||||
#include "mozilla/Sprintf.h"
|
||||
#include "nsAsyncRedirectVerifyHelper.h"
|
||||
|
@ -168,7 +169,20 @@ GetDeviceModelId() {
|
|||
// 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)
|
||||
|
@ -271,7 +285,7 @@ nsHttpHandler::nsHttpHandler()
|
|||
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);
|
||||
|
@ -389,7 +403,6 @@ nsHttpHandler::~nsHttpHandler()
|
|||
// and it'll segfault. NeckoChild will get cleaned up by process exit.
|
||||
|
||||
nsHttp::DestroyAtomTable();
|
||||
gHttpHandler = nullptr;
|
||||
}
|
||||
|
||||
nsresult
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
#include "nsHttpConnectionMgr.h"
|
||||
#include "ASpdySession.h"
|
||||
|
||||
#include "mozilla/StaticPtr.h"
|
||||
#include "nsString.h"
|
||||
#include "nsCOMPtr.h"
|
||||
#include "nsWeakReference.h"
|
||||
|
@ -65,9 +66,8 @@ public:
|
|||
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 *,
|
||||
|
@ -403,8 +403,12 @@ public:
|
|||
}
|
||||
|
||||
private:
|
||||
nsHttpHandler();
|
||||
|
||||
virtual ~nsHttpHandler();
|
||||
|
||||
MOZ_MUST_USE nsresult Init();
|
||||
|
||||
//
|
||||
// Useragent/prefs helper methods
|
||||
//
|
||||
|
@ -684,7 +688,7 @@ 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
|
||||
|
|
|
@ -1158,4 +1158,4 @@ static const TransportSecurityPreload kPublicKeyPinningPreloadList[] = {
|
|||
|
||||
static const int32_t kUnknownId = -1;
|
||||
|
||||
static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1516555936123000);
|
||||
static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1516600059754000);
|
||||
|
|
|
@ -1,12 +1,13 @@
|
|||
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
|
||||
|
@ -33,6 +34,8 @@ 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
|
||||
|
@ -49,18 +52,20 @@ 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
|
||||
|
@ -71,10 +76,11 @@ 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
|
||||
|
@ -91,20 +97,15 @@ 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
|
||||
|
@ -115,7 +116,6 @@ 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
|
||||
|
@ -129,6 +129,7 @@ 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
|
||||
|
@ -157,10 +158,9 @@ 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
|
||||
|
@ -170,19 +170,19 @@ 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
|
||||
|
@ -195,7 +195,6 @@ 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
|
||||
|
@ -216,13 +215,13 @@ 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
|
||||
|
@ -232,20 +231,22 @@ 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
|
||||
|
@ -253,23 +254,23 @@ 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
|
||||
|
@ -280,11 +281,11 @@ 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
|
||||
|
@ -303,14 +304,13 @@ 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
|
||||
|
@ -325,14 +325,18 @@ 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
|
||||
|
@ -345,6 +349,7 @@ 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
|
||||
|
@ -354,6 +359,7 @@ 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
|
||||
|
@ -376,7 +382,6 @@ 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
|
||||
|
@ -394,35 +399,37 @@ 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
|
||||
|
@ -431,10 +438,9 @@ 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
|
||||
|
@ -442,7 +448,6 @@ 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
|
||||
|
@ -463,6 +468,7 @@ 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
|
||||
|
@ -474,7 +480,7 @@ 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
|
||||
|
@ -482,6 +488,7 @@ 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
|
||||
|
@ -489,7 +496,6 @@ 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
|
||||
|
@ -503,12 +509,15 @@ 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
|
||||
|
@ -611,7 +620,6 @@ zzw.ca: 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
|
||||
|
@ -805,7 +813,6 @@ 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
|
||||
|
@ -1139,6 +1146,7 @@ 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
|
||||
|
@ -1486,7 +1494,7 @@ 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
|
||||
|
@ -1707,7 +1715,6 @@ 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
|
||||
|
@ -2016,7 +2023,6 @@ 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
|
||||
|
@ -2098,6 +2104,7 @@ 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
|
||||
|
@ -2319,11 +2326,7 @@ 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
|
||||
|
@ -2506,7 +2509,6 @@ 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
|
||||
|
@ -2559,7 +2561,7 @@ 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
|
||||
|
@ -2925,7 +2927,6 @@ 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
|
||||
|
@ -3114,7 +3115,6 @@ 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
|
||||
|
@ -3220,7 +3220,7 @@ 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
|
||||
|
@ -3291,7 +3291,6 @@ 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
|
||||
|
@ -3401,6 +3400,7 @@ 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
|
||||
|
@ -3677,7 +3677,7 @@ 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
|
||||
|
@ -3833,7 +3833,6 @@ 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
|
||||
|
@ -3846,9 +3845,6 @@ 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
|
||||
|
@ -4039,7 +4035,7 @@ 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
|
||||
|
@ -4125,7 +4121,7 @@ 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
|
||||
|
@ -4235,7 +4231,6 @@ 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
|
||||
|
@ -4278,7 +4273,6 @@ 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
|
||||
|
@ -4412,7 +4406,6 @@ 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
|
||||
|
@ -4540,7 +4533,6 @@ 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
|
||||
|
@ -4718,6 +4710,7 @@ 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
|
||||
|
@ -4843,11 +4836,11 @@ 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)
|
||||
|
@ -4933,7 +4926,6 @@ 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
|
||||
|
@ -4981,6 +4973,7 @@ 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
|
||||
|
@ -4996,6 +4989,7 @@ 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
|
||||
|
@ -5184,6 +5178,7 @@ 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
|
||||
|
@ -5441,6 +5436,7 @@ 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
|
||||
|
@ -5515,6 +5511,7 @@ 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
|
||||
|
@ -5581,6 +5578,7 @@ 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
|
||||
|
@ -5692,7 +5690,6 @@ 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
|
||||
|
@ -5843,7 +5840,7 @@ 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
|
||||
|
@ -5927,7 +5924,7 @@ 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
|
||||
|
@ -6023,7 +6020,7 @@ 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
|
||||
|
@ -6052,7 +6049,7 @@ 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
|
||||
|
@ -6244,7 +6241,6 @@ 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
|
||||
|
@ -6296,7 +6292,7 @@ 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
|
||||
|
@ -6324,7 +6320,7 @@ 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
|
||||
|
@ -6522,12 +6518,13 @@ 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
|
||||
|
@ -6863,6 +6860,9 @@ 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
|
||||
|
@ -6894,6 +6894,7 @@ 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
|
||||
|
@ -6972,6 +6973,7 @@ 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
|
||||
|
@ -7016,6 +7018,7 @@ 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
|
||||
|
@ -7027,6 +7030,7 @@ 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
|
||||
|
@ -7132,6 +7136,7 @@ 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
|
||||
|
@ -7316,6 +7321,7 @@ 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
|
||||
|
@ -7457,7 +7463,7 @@ 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
|
||||
|
@ -7674,7 +7680,7 @@ 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
|
||||
|
@ -7829,7 +7835,6 @@ 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
|
||||
|
@ -7872,7 +7877,7 @@ 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
|
||||
|
@ -8045,7 +8050,7 @@ 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
|
||||
|
@ -8114,7 +8119,7 @@ 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
|
||||
|
@ -8272,7 +8277,6 @@ 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
|
||||
|
@ -8487,7 +8491,7 @@ 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
|
||||
|
@ -8584,7 +8588,6 @@ 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
|
||||
|
@ -8594,6 +8597,7 @@ 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
|
||||
|
@ -8708,7 +8712,6 @@ 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
|
||||
|
@ -8741,6 +8744,7 @@ 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
|
||||
|
@ -8773,7 +8777,6 @@ 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
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
/*****************************************************************************/
|
||||
|
||||
#include <stdint.h>
|
||||
const PRTime gPreloadListExpirationTime = INT64_C(1518975126211000);
|
||||
const PRTime gPreloadListExpirationTime = INT64_C(1519019249394000);
|
||||
%%
|
||||
0.me.uk, 1
|
||||
00001.am, 1
|
||||
|
@ -258,6 +258,7 @@ const PRTime gPreloadListExpirationTime = INT64_C(1518975126211000);
|
|||
38888msc.com, 1
|
||||
393335.ml, 1
|
||||
398.info, 1
|
||||
3ags.de, 1
|
||||
3bakayottu.com, 1
|
||||
3bigking.com, 1
|
||||
3c-d.de, 1
|
||||
|
@ -798,6 +799,7 @@ 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
|
||||
|
@ -2021,7 +2023,6 @@ astutr.co, 1
|
|||
asucrews.com, 1
|
||||
asuhe.cc, 1
|
||||
asuhe.win, 1
|
||||
asuhe.xyz, 1
|
||||
asuka.io, 1
|
||||
asun.co, 1
|
||||
asurepay.cc, 1
|
||||
|
@ -4183,6 +4184,7 @@ 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
|
||||
|
@ -5412,6 +5414,7 @@ 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
|
||||
|
@ -5715,7 +5718,6 @@ 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
|
||||
|
@ -6564,8 +6566,12 @@ 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
|
||||
|
@ -6989,7 +6995,7 @@ 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
|
||||
|
@ -7303,6 +7309,7 @@ dounats.com, 1
|
|||
douzer.de, 1
|
||||
dovenzorgmalawi.nl, 1
|
||||
dovro.de, 1
|
||||
dowc.org, 1
|
||||
downloadaja.com, 1
|
||||
downloadgamemods.com, 1
|
||||
downloadgram.com, 1
|
||||
|
@ -8886,6 +8893,7 @@ 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
|
||||
|
@ -9655,6 +9663,7 @@ 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
|
||||
|
@ -10361,6 +10370,7 @@ 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
|
||||
|
@ -10682,7 +10692,6 @@ 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
|
||||
|
@ -12199,6 +12208,7 @@ 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
|
||||
|
@ -12236,11 +12246,14 @@ 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
|
||||
|
@ -13620,6 +13633,7 @@ jpslconsulting.ca, 1
|
|||
jr5devdoug.xyz, 1
|
||||
jr5devdouglas.xyz, 1
|
||||
jr5proxdoug.xyz, 1
|
||||
jrc9.ca, 1
|
||||
jreb.nl, 1
|
||||
jreinert.com, 1
|
||||
jross.me, 1
|
||||
|
@ -13767,6 +13781,7 @@ 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
|
||||
|
@ -14337,6 +14352,7 @@ 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
|
||||
|
@ -14786,6 +14802,7 @@ 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
|
||||
|
@ -15510,7 +15527,6 @@ 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
|
||||
|
@ -15944,6 +15960,7 @@ 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
|
||||
|
@ -15987,7 +16004,6 @@ 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
|
||||
|
@ -16421,7 +16437,6 @@ 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
|
||||
|
@ -16502,7 +16517,6 @@ 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
|
||||
|
@ -17139,7 +17153,6 @@ 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
|
||||
|
@ -18034,7 +18047,6 @@ 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
|
||||
|
@ -18394,7 +18406,6 @@ 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
|
||||
|
@ -18669,7 +18680,6 @@ 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
|
||||
|
@ -19016,6 +19026,7 @@ ogocare.com, 1
|
|||
oguya.ch, 1
|
||||
oh14.de, 1
|
||||
ohadsoft.com, 1
|
||||
ohai.su, 1
|
||||
ohayosoro.me, 1
|
||||
ohchouette.com, 1
|
||||
ohd.dk, 1
|
||||
|
@ -19747,7 +19758,7 @@ 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
|
||||
|
@ -20922,6 +20933,7 @@ 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
|
||||
|
@ -21884,7 +21896,6 @@ 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
|
||||
|
@ -23199,9 +23210,6 @@ 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
|
||||
|
@ -23316,7 +23324,6 @@ 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
|
||||
|
@ -23644,7 +23651,6 @@ 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
|
||||
|
@ -23833,7 +23839,6 @@ 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
|
||||
|
@ -23865,7 +23870,6 @@ 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
|
||||
|
@ -24269,7 +24273,6 @@ 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
|
||||
|
@ -24953,7 +24956,6 @@ 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
|
||||
|
@ -26650,6 +26652,7 @@ treker.us, 1
|
|||
trekfriend.com, 1
|
||||
tremlor.com, 1
|
||||
tremolosoftware.com, 1
|
||||
tremoureux.fr, 1
|
||||
trendingpulse.com, 1
|
||||
trendisland.de, 1
|
||||
trendkraft.de, 1
|
||||
|
@ -28048,6 +28051,7 @@ 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
|
||||
|
@ -29086,6 +29090,7 @@ 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
|
||||
|
@ -29147,7 +29152,6 @@ xoda.pw, 1
|
|||
xolphin.nl, 1
|
||||
xombitgames.com, 1
|
||||
xombitmusic.com, 1
|
||||
xombra.com, 1
|
||||
xonn.de, 1
|
||||
xotika.tv, 1
|
||||
xp2.de, 1
|
||||
|
@ -29556,6 +29560,7 @@ 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
|
||||
|
@ -29645,7 +29650,6 @@ 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
|
||||
|
@ -29715,6 +29719,7 @@ 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
|
||||
|
|
Загрузка…
Ссылка в новой задаче