summaryrefslogtreecommitdiffstats
path: root/services
diff options
context:
space:
mode:
Diffstat (limited to 'services')
-rw-r--r--services/common/tests/unit/test_restrequest.js1
-rw-r--r--services/crypto/tests/unit/test_jwcrypto.js2
-rw-r--r--services/fxaccounts/FxAccounts.sys.mjs27
-rw-r--r--services/fxaccounts/FxAccountsKeys.sys.mjs61
-rw-r--r--services/fxaccounts/FxAccountsOAuth.sys.mjs14
-rw-r--r--services/fxaccounts/FxAccountsWebChannel.sys.mjs34
-rw-r--r--services/fxaccounts/tests/xpcshell/test_accounts.js4
-rw-r--r--services/fxaccounts/tests/xpcshell/test_keys.js122
-rw-r--r--services/fxaccounts/tests/xpcshell/test_loginmgr_storage.js2
-rw-r--r--services/fxaccounts/tests/xpcshell/test_oauth_flow.js82
-rw-r--r--services/settings/docs/index.rst7
-rw-r--r--services/settings/dumps/blocklists/addons-bloomfilters.json156
-rw-r--r--services/settings/dumps/blocklists/moz.build23
-rw-r--r--services/settings/dumps/blocklists/plugins.json3515
-rw-r--r--services/settings/dumps/main/cookie-banner-rules-list.json2527
-rw-r--r--services/settings/dumps/main/devtools-compatibility-browsers.json325
-rw-r--r--services/settings/dumps/main/moz.build234
-rw-r--r--services/settings/dumps/main/search-config-v2.json7517
-rw-r--r--services/settings/dumps/main/search-telemetry-v2.json149
-rw-r--r--services/settings/dumps/main/translations-identification-models.json20
-rw-r--r--services/settings/dumps/main/translations-models.json284
-rw-r--r--services/settings/dumps/main/url-classifier-skip-urls.json2
-rw-r--r--services/settings/dumps/moz.build1
-rw-r--r--services/settings/dumps/security-state/intermediates.json956
-rw-r--r--services/settings/dumps/security-state/moz.build9
-rw-r--r--services/settings/static-dumps/main/moz.build11
-rw-r--r--services/settings/test/unit/test_remote_settings_release_prefs.js2
-rw-r--r--services/sync/modules/constants.sys.mjs2
-rw-r--r--services/sync/tests/unit/test_addons_store.js89
-rw-r--r--services/sync/tests/unit/test_bookmark_tracker.js2
-rw-r--r--services/sync/tests/unit/xpcshell.toml1
31 files changed, 7119 insertions, 9062 deletions
diff --git a/services/common/tests/unit/test_restrequest.js b/services/common/tests/unit/test_restrequest.js
index 9ae5e9429a..dba92621ed 100644
--- a/services/common/tests/unit/test_restrequest.js
+++ b/services/common/tests/unit/test_restrequest.js
@@ -578,6 +578,7 @@ add_task(async function test_get_no_headers() {
"sec-fetch-mode",
"sec-fetch-site",
"sec-fetch-user",
+ "priority",
];
let request = new RESTRequest(server.baseURI + "/resource");
await request.get();
diff --git a/services/crypto/tests/unit/test_jwcrypto.js b/services/crypto/tests/unit/test_jwcrypto.js
index 02f064d431..be2a5e3d0d 100644
--- a/services/crypto/tests/unit/test_jwcrypto.js
+++ b/services/crypto/tests/unit/test_jwcrypto.js
@@ -7,7 +7,7 @@ ChromeUtils.defineESModuleGetters(this, {
jwcrypto: "resource://services-crypto/jwcrypto.sys.mjs",
});
-// Enable logging from jwcrypto.jsm.
+// Enable logging from jwcrypto.sys.mjs.
Services.prefs.setStringPref("services.crypto.jwcrypto.log.level", "Debug");
add_task(async function test_jwe_roundtrip_ecdh_es_encryption() {
diff --git a/services/fxaccounts/FxAccounts.sys.mjs b/services/fxaccounts/FxAccounts.sys.mjs
index 790a6195f8..e258c99c2d 100644
--- a/services/fxaccounts/FxAccounts.sys.mjs
+++ b/services/fxaccounts/FxAccounts.sys.mjs
@@ -65,6 +65,13 @@ XPCOMUtils.defineLazyPreferenceGetter(
true
);
+XPCOMUtils.defineLazyPreferenceGetter(
+ lazy,
+ "oauthEnabled",
+ "identity.fxaccounts.oauth.enabled",
+ true
+);
+
export const ERROR_INVALID_ACCOUNT_STATE = "ERROR_INVALID_ACCOUNT_STATE";
// An AccountState object holds all state related to one specific account.
@@ -550,7 +557,7 @@ export class FxAccounts {
await this.signOut();
return null;
}
- if (!this._internal.isUserEmailVerified(data)) {
+ if (!this._internal.isUserEmailVerified(data) && !lazy.oauthEnabled) {
// If the email is not verified, start polling for verification,
// but return null right away. We don't want to return a promise
// that might not be fulfilled for a long time.
@@ -865,7 +872,7 @@ FxAccountsInternal.prototype = {
_oauth: null,
get oauth() {
if (!this._oauth) {
- this._oauth = new lazy.FxAccountsOAuth(this.fxAccountsClient);
+ this._oauth = new lazy.FxAccountsOAuth(this.fxAccountsClient, this.keys);
}
return this._oauth;
},
@@ -995,16 +1002,17 @@ FxAccountsInternal.prototype = {
);
}
await this.abortExistingFlow();
- let currentAccountState = (this.currentAccountState = this.newAccountState(
- Cu.cloneInto(credentials, {}) // Pass a clone of the credentials object.
- ));
+ const currentAccountState = (this.currentAccountState =
+ this.newAccountState(
+ Cu.cloneInto(credentials, {}) // Pass a clone of the credentials object.
+ ));
// This promise waits for storage, but not for verification.
// We're telling the caller that this is durable now (although is that
// really something we should commit to? Why not let the write happen in
// the background? Already does for updateAccountData ;)
await currentAccountState.promiseInitialized;
// Starting point for polling if new user
- if (!this.isUserEmailVerified(credentials)) {
+ if (!this.isUserEmailVerified(credentials) && !lazy.oauthEnabled) {
this.startVerifiedCheck(credentials);
}
await this.notifyObservers(ONLOGIN_NOTIFICATION);
@@ -1478,13 +1486,14 @@ FxAccountsInternal.prototype = {
/** Sets the user to be verified in the account state,
* This prevents any polling for the user's verification state from the FxA server
**/
- setUserVerified() {
- return this.withCurrentAccountState(async currentState => {
+ async setUserVerified() {
+ await this.withCurrentAccountState(async currentState => {
const userData = await currentState.getUserAccountData();
if (!userData.verified) {
- await currentState.updateAccountData({ verified: true });
+ await currentState.updateUserAccountData({ verified: true });
}
});
+ await this.notifyObservers(ONVERIFIED_NOTIFICATION);
},
async _getVerifiedAccountOrReject() {
diff --git a/services/fxaccounts/FxAccountsKeys.sys.mjs b/services/fxaccounts/FxAccountsKeys.sys.mjs
index ad19df31be..9717f010c7 100644
--- a/services/fxaccounts/FxAccountsKeys.sys.mjs
+++ b/services/fxaccounts/FxAccountsKeys.sys.mjs
@@ -132,6 +132,67 @@ export class FxAccountsKeys {
}
/**
+ * Validates if the given scoped keys are valid keys
+ *
+ * @param { Object } scopedKeys: The scopedKeys bundle
+ *
+ * @return { Boolean }: true if the scopedKeys bundle is valid, false otherwise
+ */
+ validScopedKeys(scopedKeys) {
+ for (const expectedScope of Object.keys(scopedKeys)) {
+ const key = scopedKeys[expectedScope];
+ if (
+ !key.hasOwnProperty("scope") ||
+ !key.hasOwnProperty("kid") ||
+ !key.hasOwnProperty("kty") ||
+ !key.hasOwnProperty("k")
+ ) {
+ return false;
+ }
+ const { scope, kid, kty, k } = key;
+ if (scope != expectedScope || kty != "oct") {
+ return false;
+ }
+ // We verify the format of the key id is `timestamp-fingerprint`
+ if (!kid.includes("-")) {
+ return false;
+ }
+ const [keyRotationTimestamp, fingerprint] = kid.split("-");
+ // We then verify that the timestamp is a valid timestamp
+ const keyRotationTimestampNum = Number(keyRotationTimestamp);
+ // If the value we got back is falsy it's not a valid timestamp
+ // note that we treat a 0 timestamp as invalid
+ if (!keyRotationTimestampNum) {
+ return false;
+ }
+ // For extra safety, we validate that the timestamp can be converted into a valid
+ // Date object
+ const date = new Date(keyRotationTimestampNum);
+ if (isNaN(date.getTime()) || date.getTime() <= 0) {
+ return false;
+ }
+
+ // Finally, we validate that the fingerprint and the key itself are valid base64 values
+ // Note that we can't verify the fingerprint is correct here because we don't have kb
+ const validB64String = b64String => {
+ let decoded;
+ try {
+ decoded = ChromeUtils.base64URLDecode(b64String, {
+ padding: "reject",
+ });
+ } catch (e) {
+ return false;
+ }
+ return !!decoded;
+ };
+ if (!validB64String(fingerprint) || !validB64String(k)) {
+ return false;
+ }
+ }
+ return true;
+ }
+
+ /**
* Format a JWK kid as hex rather than base64.
*
* This is a backwards-compatibility helper for code that needs a raw key fingerprint
diff --git a/services/fxaccounts/FxAccountsOAuth.sys.mjs b/services/fxaccounts/FxAccountsOAuth.sys.mjs
index 1935decff2..e8f186d1f7 100644
--- a/services/fxaccounts/FxAccountsOAuth.sys.mjs
+++ b/services/fxaccounts/FxAccountsOAuth.sys.mjs
@@ -22,6 +22,7 @@ export const ERROR_INVALID_STATE = "INVALID_STATE";
export const ERROR_SYNC_SCOPE_NOT_GRANTED = "ERROR_SYNC_SCOPE_NOT_GRANTED";
export const ERROR_NO_KEYS_JWE = "ERROR_NO_KEYS_JWE";
export const ERROR_OAUTH_FLOW_ABANDONED = "ERROR_OAUTH_FLOW_ABANDONED";
+export const ERROR_INVALID_SCOPED_KEYS = "ERROR_INVALID_SCOPED_KEYS";
/**
* Handles all logic and state related to initializing, and completing OAuth flows
@@ -32,14 +33,16 @@ export const ERROR_OAUTH_FLOW_ABANDONED = "ERROR_OAUTH_FLOW_ABANDONED";
export class FxAccountsOAuth {
#flow;
#fxaClient;
+ #fxaKeys;
/**
* Creates a new FxAccountsOAuth
*
* @param { Object } fxaClient: The fxa client used to send http request to the oauth server
*/
- constructor(fxaClient) {
+ constructor(fxaClient, fxaKeys) {
this.#flow = {};
this.#fxaClient = fxaClient;
+ this.#fxaKeys = fxaKeys;
}
/**
@@ -131,8 +134,10 @@ export class FxAccountsOAuth {
// Generate a 43 byte code verifier for PKCE, in accordance with
// https://datatracker.ietf.org/doc/html/rfc7636#section-7.1 which recommends a
// 43-octet URL safe string
- const codeVerifier = new Uint8Array(43);
+ // The byte array is 32 bytes
+ const codeVerifier = new Uint8Array(32);
crypto.getRandomValues(codeVerifier);
+ // When base64 encoded, it is 43 bytes
const codeVerifierB64 = ChromeUtils.base64URLEncode(codeVerifier, {
pad: false,
});
@@ -147,7 +152,7 @@ export class FxAccountsOAuth {
// Generate a public, private key pair to be used during the oauth flow
// to encrypt scoped-keys as they roundtrip through the auth server
const ECDH_KEY = { name: "ECDH", namedCurve: "P-256" };
- const key = await crypto.subtle.generateKey(ECDH_KEY, true, ["deriveKey"]);
+ const key = await crypto.subtle.generateKey(ECDH_KEY, false, ["deriveKey"]);
const publicKey = await crypto.subtle.exportKey("jwk", key.publicKey);
const privateKey = key.privateKey;
@@ -205,6 +210,9 @@ export class FxAccountsOAuth {
scopedKeys = JSON.parse(
new TextDecoder().decode(await lazy.jwcrypto.decryptJWE(keys_jwe, key))
);
+ if (!this.#fxaKeys.validScopedKeys(scopedKeys)) {
+ throw new Error(ERROR_INVALID_SCOPED_KEYS);
+ }
}
// We make sure no other flow snuck in, and completed before we did
diff --git a/services/fxaccounts/FxAccountsWebChannel.sys.mjs b/services/fxaccounts/FxAccountsWebChannel.sys.mjs
index f8d7a3362d..14ba222a9e 100644
--- a/services/fxaccounts/FxAccountsWebChannel.sys.mjs
+++ b/services/fxaccounts/FxAccountsWebChannel.sys.mjs
@@ -80,6 +80,13 @@ XPCOMUtils.defineLazyPreferenceGetter(
val => Services.io.newURI(val)
);
+XPCOMUtils.defineLazyPreferenceGetter(
+ lazy,
+ "oauthEnabled",
+ "identity.fxaccounts.oauth.enabled",
+ false
+);
+
// These engines were added years after Sync had been introduced, they need
// special handling since they are system add-ons and are un-available on
// older versions of Firefox.
@@ -487,16 +494,19 @@ FxAccountsWebChannelHelpers.prototype = {
"webchannel"
);
- const xps = await this._initializeSync();
- await this._fxAccounts._internal.setSignedInUser(accountData);
-
- if (requestedServices) {
- // User has enabled Sync.
- if (requestedServices.sync) {
- const { offeredEngines, declinedEngines } = requestedServices.sync;
- this._setEnabledEngines(offeredEngines, declinedEngines);
- log.debug("Webchannel is enabling sync");
- await xps.Weave.Service.configure();
+ if (lazy.oauthEnabled) {
+ await this._fxAccounts._internal.setSignedInUser(accountData);
+ } else {
+ const xps = await this._initializeSync();
+ await this._fxAccounts._internal.setSignedInUser(accountData);
+ if (requestedServices) {
+ // User has enabled Sync.
+ if (requestedServices.sync) {
+ const { offeredEngines, declinedEngines } = requestedServices.sync;
+ this._setEnabledEngines(offeredEngines, declinedEngines);
+ log.debug("Webchannel is enabling sync");
+ await xps.Weave.Service.configure();
+ }
}
}
},
@@ -628,9 +638,7 @@ FxAccountsWebChannelHelpers.prototype = {
};
},
_getCapabilities() {
- if (
- Services.prefs.getBoolPref("identity.fxaccounts.oauth.enabled", false)
- ) {
+ if (lazy.oauthEnabled) {
return {
multiService: true,
pairing: lazy.pairingEnabled,
diff --git a/services/fxaccounts/tests/xpcshell/test_accounts.js b/services/fxaccounts/tests/xpcshell/test_accounts.js
index 239adb206f..1dcbb2d2f2 100644
--- a/services/fxaccounts/tests/xpcshell/test_accounts.js
+++ b/services/fxaccounts/tests/xpcshell/test_accounts.js
@@ -44,7 +44,7 @@ initTestLogging("Trace");
var log = Log.repository.getLogger("Services.FxAccounts.test");
log.level = Log.Level.Debug;
-// See verbose logging from FxAccounts.jsm and jwcrypto.jsm.
+// See verbose logging from FxAccounts.sys.mjs and jwcrypto.sys.mjs.
Services.prefs.setStringPref("identity.fxaccounts.loglevel", "Trace");
Log.repository.getLogger("FirefoxAccounts").level = Log.Level.Trace;
Services.prefs.setStringPref("services.crypto.jwcrypto.log.level", "Debug");
@@ -217,7 +217,7 @@ function MockFxAccounts() {
},
});
// and for convenience so we don't have to touch as many lines in this test
- // when we refactored FxAccounts.jsm :)
+ // when we refactored FxAccounts.sys.mjs :)
result.setSignedInUser = function (creds) {
return result._internal.setSignedInUser(creds);
};
diff --git a/services/fxaccounts/tests/xpcshell/test_keys.js b/services/fxaccounts/tests/xpcshell/test_keys.js
index 6e650a1609..9a25ca90f3 100644
--- a/services/fxaccounts/tests/xpcshell/test_keys.js
+++ b/services/fxaccounts/tests/xpcshell/test_keys.js
@@ -99,6 +99,128 @@ add_task(async function test_derive_multiple_keys_at_once() {
});
});
+add_task(function test_check_valid_scoped_keys() {
+ const keys = new FxAccountsKeys(null);
+ add_task(function test_missing_key_data() {
+ const scopedKeys = {
+ "https://identity.mozilla.com/apps/oldsync": {
+ kty: "oct",
+ kid: "1510726318123-IqQv4onc7VcVE1kTQkyyOw",
+ scope: "https://identity.mozilla.com/apps/oldsync",
+ },
+ };
+ Assert.equal(keys.validScopedKeys(scopedKeys), false);
+ });
+ add_task(function test_unexpected_scope() {
+ const scopedKeys = {
+ "https://identity.mozilla.com/apps/oldsync": {
+ kty: "oct",
+ kid: "1510726318123-IqQv4onc7VcVE1kTQkyyOw",
+ k: "DW_ll5GwX6SJ5GPqJVAuMUP2t6kDqhUulc2cbt26xbTcaKGQl-9l29FHAQ7kUiJETma4s9fIpEHrt909zgFang",
+ scope: "UnexpectedScope",
+ },
+ };
+ Assert.equal(keys.validScopedKeys(scopedKeys), false);
+ });
+ add_task(function test_not_oct_key() {
+ const scopedKeys = {
+ "https://identity.mozilla.com/apps/oldsync": {
+ // Should be "oct"!
+ kty: "EC",
+ kid: "1510726318123-IqQv4onc7VcVE1kTQkyyOw",
+ k: "DW_ll5GwX6SJ5GPqJVAuMUP2t6kDqhUulc2cbt26xbTcaKGQl-9l29FHAQ7kUiJETma4s9fIpEHrt909zgFang",
+ scope: "https://identity.mozilla.com/apps/oldsync",
+ },
+ };
+ Assert.equal(keys.validScopedKeys(scopedKeys), false);
+ });
+ add_task(function test_invalid_kid_not_timestamp() {
+ const scopedKeys = {
+ "https://identity.mozilla.com/apps/oldsync": {
+ kty: "oct",
+ // Does not have the timestamp!
+ kid: "IqQv4onc7VcVE1kTQkyyOw",
+ k: "DW_ll5GwX6SJ5GPqJVAuMUP2t6kDqhUulc2cbt26xbTcaKGQl-9l29FHAQ7kUiJETma4s9fIpEHrt909zgFang",
+ scope: "https://identity.mozilla.com/apps/oldsync",
+ },
+ };
+ Assert.equal(keys.validScopedKeys(scopedKeys), false);
+ });
+ add_task(function test_invalid_kid_not_valid_timestamp() {
+ const scopedKeys = {
+ "https://identity.mozilla.com/apps/oldsync": {
+ kty: "oct",
+ // foo is not a valid timestamp!
+ kid: "foo-IqQv4onc7VcVE1kTQkyyOw",
+ k: "DW_ll5GwX6SJ5GPqJVAuMUP2t6kDqhUulc2cbt26xbTcaKGQl-9l29FHAQ7kUiJETma4s9fIpEHrt909zgFang",
+ scope: "https://identity.mozilla.com/apps/oldsync",
+ },
+ };
+ Assert.equal(keys.validScopedKeys(scopedKeys), false);
+ });
+ add_task(function test_invalid_kid_not_b64_fingerprint() {
+ const scopedKeys = {
+ "https://identity.mozilla.com/apps/oldsync": {
+ kty: "oct",
+ // fingerprint not a valid base64 encoded string.
+ kid: "1510726318123-notvalidb64][",
+ k: "DW_ll5GwX6SJ5GPqJVAuMUP2t6kDqhUulc2cbt26xbTcaKGQl-9l29FHAQ7kUiJETma4s9fIpEHrt909zgFang",
+ scope: "https://identity.mozilla.com/apps/oldsync",
+ },
+ };
+ Assert.equal(keys.validScopedKeys(scopedKeys), false);
+ });
+ add_task(function test_invalid_k_not_base64() {
+ const scopedKeys = {
+ "https://identity.mozilla.com/apps/oldsync": {
+ kty: "oct",
+ kid: "1510726318123-IqQv4onc7VcVE1kTQkyyOw",
+ k: "notavalidb64[]",
+ scope: "https://identity.mozilla.com/apps/oldsync",
+ },
+ };
+ Assert.equal(keys.validScopedKeys(scopedKeys), false);
+ });
+
+ add_task(function test_multiple_scoped_keys_one_invalid() {
+ const scopedKeys = {
+ // Valid
+ "https://identity.mozilla.com/apps/otherscope": {
+ kty: "oct",
+ kid: "1510726318123-IqQv4onc7VcVE1kTQkyyOw",
+ k: "DW_ll5GwX6SJ5GPqJVAuMUP2t6kDqhUulc2cbt26xbTcaKGQl-9l29FHAQ7kUiJETma4s9fIpEHrt909zgFang",
+ scope: "https://identity.mozilla.com/apps/otherscope",
+ },
+ // Invalid
+ "https://identity.mozilla.com/apps/oldsync": {
+ kty: "oct",
+ kid: "1510726318123-IqQv4onc7VcVE1kTQkyyOw",
+ k: "notavalidb64[]",
+ scope: "https://identity.mozilla.com/apps/oldsync",
+ },
+ };
+ Assert.equal(keys.validScopedKeys(scopedKeys), false);
+ });
+
+ add_task(function test_valid_scopedkeys() {
+ const scopedKeys = {
+ "https://identity.mozilla.com/apps/oldsync": {
+ kty: "oct",
+ kid: "1510726318123-IqQv4onc7VcVE1kTQkyyOw",
+ k: "DW_ll5GwX6SJ5GPqJVAuMUP2t6kDqhUulc2cbt26xbTcaKGQl-9l29FHAQ7kUiJETma4s9fIpEHrt909zgFang",
+ scope: "https://identity.mozilla.com/apps/oldsync",
+ },
+ "https://identity.mozilla.com/apps/otherscope": {
+ kty: "oct",
+ kid: "1510726318123-IqQv4onc7VcVE1kTQkyyOw",
+ k: "DW_ll5GwX6SJ5GPqJVAuMUP2t6kDqhUulc2cbt26xbTcaKGQl-9l29FHAQ7kUiJETma4s9fIpEHrt909zgFang",
+ scope: "https://identity.mozilla.com/apps/otherscope",
+ },
+ };
+ Assert.equal(keys.validScopedKeys(scopedKeys), true);
+ });
+});
+
add_task(async function test_rejects_bad_scoped_key_data() {
const keys = new FxAccountsKeys(null);
const uid = "aeaa1725c7a24ff983c6295725d5fc9b";
diff --git a/services/fxaccounts/tests/xpcshell/test_loginmgr_storage.js b/services/fxaccounts/tests/xpcshell/test_loginmgr_storage.js
index 5b80035418..1fdfecca61 100644
--- a/services/fxaccounts/tests/xpcshell/test_loginmgr_storage.js
+++ b/services/fxaccounts/tests/xpcshell/test_loginmgr_storage.js
@@ -5,7 +5,7 @@
// Tests for FxAccounts, storage and the master password.
-// See verbose logging from FxAccounts.jsm
+// See verbose logging from FxAccounts.sys.mjs
Services.prefs.setStringPref("identity.fxaccounts.loglevel", "Trace");
const { FxAccounts } = ChromeUtils.importESModule(
diff --git a/services/fxaccounts/tests/xpcshell/test_oauth_flow.js b/services/fxaccounts/tests/xpcshell/test_oauth_flow.js
index ef5102ae17..a5f53b6100 100644
--- a/services/fxaccounts/tests/xpcshell/test_oauth_flow.js
+++ b/services/fxaccounts/tests/xpcshell/test_oauth_flow.js
@@ -8,6 +8,7 @@
const {
FxAccountsOAuth,
ERROR_INVALID_SCOPES,
+ ERROR_INVALID_SCOPED_KEYS,
ERROR_INVALID_STATE,
ERROR_SYNC_SCOPE_NOT_GRANTED,
ERROR_NO_KEYS_JWE,
@@ -22,6 +23,7 @@ const { SCOPE_PROFILE, FX_OAUTH_CLIENT_ID } = ChromeUtils.importESModule(
ChromeUtils.defineESModuleGetters(this, {
jwcrypto: "resource://services-crypto/jwcrypto.sys.mjs",
+ FxAccountsKeys: "resource://gre/modules/FxAccountsKeys.sys.mjs",
});
initTestLogging("Trace");
@@ -159,17 +161,21 @@ add_task(function test_complete_oauth_flow() {
const oauthCode = "fake oauth code";
const sessionToken = "01abcef12";
const plainTextScopedKeys = {
- kid: "fake key id",
- k: "fake key",
- kty: "oct",
+ "https://identity.mozilla.com/apps/oldsync": {
+ kty: "oct",
+ kid: "1510726318123-IqQv4onc7VcVE1kTQkyyOw",
+ k: "DW_ll5GwX6SJ5GPqJVAuMUP2t6kDqhUulc2cbt26xbTcaKGQl-9l29FHAQ7kUiJETma4s9fIpEHrt909zgFang",
+ scope: "https://identity.mozilla.com/apps/oldsync",
+ },
};
const fakeAccessToken = "fake access token";
const fakeRefreshToken = "fake refresh token";
// Then, we initialize a fake http client, we'll add our fake oauthToken call
// once we have started the oauth flow (so we have the public keys!)
const fxaClient = {};
+ const fxaKeys = new FxAccountsKeys(null);
// Then, we initialize our oauth object with the given client and begin a new flow
- const oauth = new FxAccountsOAuth(fxaClient);
+ const oauth = new FxAccountsOAuth(fxaClient, fxaKeys);
const queryParams = await oauth.beginOAuthFlow(scopes);
// Now that we have the public keys in `keys_jwk`, we use it to generate a JWE
// representing our scoped keys
@@ -271,4 +277,72 @@ add_task(function test_complete_oauth_flow() {
// Finally, we verify that all stored flows were cleared
Assert.equal(oauth.numOfFlows(), 0);
});
+ add_task(async function test_complete_oauth_invalid_scoped_keys() {
+ // First, we initialize some fake values we would typically get
+ // from outside our system
+ const scopes = [SCOPE_PROFILE, SCOPE_OLD_SYNC];
+ const oauthCode = "fake oauth code";
+ const sessionToken = "01abcef12";
+ const invalidScopedKeys = {
+ "https://identity.mozilla.com/apps/oldsync": {
+ // ====== This is an invalid key type! Should be "oct", so we will raise an error once we realize
+ kty: "EC",
+ kid: "1510726318123-IqQv4onc7VcVE1kTQkyyOw",
+ k: "DW_ll5GwX6SJ5GPqJVAuMUP2t6kDqhUulc2cbt26xbTcaKGQl-9l29FHAQ7kUiJETma4s9fIpEHrt909zgFang",
+ scope: "https://identity.mozilla.com/apps/oldsync",
+ },
+ };
+ const fakeAccessToken = "fake access token";
+ const fakeRefreshToken = "fake refresh token";
+ // Then, we initialize a fake http client, we'll add our fake oauthToken call
+ // once we have started the oauth flow (so we have the public keys!)
+ const fxaClient = {};
+ const fxaKeys = new FxAccountsKeys(null);
+ // Then, we initialize our oauth object with the given client and begin a new flow
+ const oauth = new FxAccountsOAuth(fxaClient, fxaKeys);
+ const queryParams = await oauth.beginOAuthFlow(scopes);
+ // Now that we have the public keys in `keys_jwk`, we use it to generate a JWE
+ // representing our scoped keys
+ const keysJwk = queryParams.keys_jwk;
+ const decodedKeysJwk = JSON.parse(
+ new TextDecoder().decode(
+ ChromeUtils.base64URLDecode(keysJwk, { padding: "reject" })
+ )
+ );
+ delete decodedKeysJwk.key_ops;
+ const jwe = await jwcrypto.generateJWE(
+ decodedKeysJwk,
+ new TextEncoder().encode(JSON.stringify(invalidScopedKeys))
+ );
+ // We also grab the stored PKCE verifier that the oauth object stored internally
+ // to verify that we correctly send it as a part of our HTTP request
+ const storedVerifier = oauth.getFlow(queryParams.state).verifier;
+
+ // Now we initialize our mock of the HTTP request, it verifies we passed in all the correct
+ // parameters and returns what we'd expect a healthy HTTP Response would look like
+ fxaClient.oauthToken = (sessionTokenHex, code, verifier, clientId) => {
+ Assert.equal(sessionTokenHex, sessionToken);
+ Assert.equal(code, oauthCode);
+ Assert.equal(verifier, storedVerifier);
+ Assert.equal(clientId, queryParams.client_id);
+ const response = {
+ access_token: fakeAccessToken,
+ refresh_token: fakeRefreshToken,
+ scope: scopes.join(" "),
+ keys_jwe: jwe,
+ };
+ return Promise.resolve(response);
+ };
+
+ // Then, we call the completeOAuthFlow function, and get back our access token,
+ // refresh token and scopedKeys
+ try {
+ await oauth.completeOAuthFlow(sessionToken, oauthCode, queryParams.state);
+ Assert.fail(
+ "Should have thrown an error because the scoped keys are not valid"
+ );
+ } catch (err) {
+ Assert.equal(err.message, ERROR_INVALID_SCOPED_KEYS);
+ }
+ });
});
diff --git a/services/settings/docs/index.rst b/services/settings/docs/index.rst
index c91d5e6ba6..9cf3e4dc30 100644
--- a/services/settings/docs/index.rst
+++ b/services/settings/docs/index.rst
@@ -183,8 +183,11 @@ The JSON dump will serve as the default dataset for ``.get()``, instead of doing
CID="your-collection"
curl "https://firefox.settings.services.mozilla.com/v1/buckets/main/collections/${CID}/changeset?_expected=0" | jq '{"data": .changes, "timestamp": .timestamp}' > services/settings/dumps/main/${CID}.json``
-#. Add the filename to the ``FINAL_TARGET_FILES`` list in ``services/settings/dumps/main/moz.build``
-#. Add the filename to the ``[browser]`` section of ``mobile/android/installer/package-manifest.in`` IF the file should be bundled with Android.
+#. Add the filename to the relevant ``FINAL_TARGET_FILES`` list in ``services/settings/dumps/main/moz.build``
+
+ * Please consider the application(s) where the collection is used and only include the dump file in the relevant builds.
+ * If it is only for Firefox desktop, i.e. ``browser/``, then add it to a build-specific browser section.
+ * If it is for all applications, i.e. outside of ``browser/`` are other specific area, then add it to the global section.
Now, when ``RemoteSettings("some-key").get()`` is called from an empty profile, the ``some-key.json`` file is going to be loaded before the results are returned.
diff --git a/services/settings/dumps/blocklists/addons-bloomfilters.json b/services/settings/dumps/blocklists/addons-bloomfilters.json
index 3e8d6e5524..489a3dc429 100644
--- a/services/settings/dumps/blocklists/addons-bloomfilters.json
+++ b/services/settings/dumps/blocklists/addons-bloomfilters.json
@@ -3,6 +3,160 @@
{
"stash": {
"blocked": [
+ "hiddenads@addon:1.2",
+ "hiddenads@addon:1.1"
+ ],
+ "unblocked": []
+ },
+ "schema": 1715073387064,
+ "key_format": "{guid}:{version}",
+ "stash_time": 1715085306179,
+ "id": "3f7b0d0a-916d-439f-a4cd-e4f145840961",
+ "last_modified": 1715085361954
+ },
+ {
+ "stash": {
+ "blocked": [
+ "{2a212819-c872-4f67-9268-f08be03d03da}:1.0"
+ ],
+ "unblocked": []
+ },
+ "schema": 1714674961786,
+ "key_format": "{guid}:{version}",
+ "stash_time": 1715020505773,
+ "id": "57ccc528-325f-4491-b0d9-8e5a5dff2d1e",
+ "last_modified": 1715020562858
+ },
+ {
+ "stash": {
+ "blocked": [
+ "{6da3c7e9-ab2e-4f92-9cab-5a6e032f31ed}:2.2.7",
+ "{6da3c7e9-ab2e-4f92-9cab-5a6e032f31ed}:2.2.8",
+ "{6da3c7e9-ab2e-4f92-9cab-5a6e032f31ed}:2.2.9"
+ ],
+ "unblocked": []
+ },
+ "schema": 1714502163393,
+ "key_format": "{guid}:{version}",
+ "stash_time": 1714674905592,
+ "id": "023af584-1406-4d7d-8805-20c3d27838b2",
+ "last_modified": 1714674961628
+ },
+ {
+ "stash": {
+ "blocked": [
+ "superiorblock@addon:1.1",
+ "superiorblock@addon:1.0",
+ "{f350fb55-0f0f-433b-a220-84ecd4e9c1c4}:1.0.0"
+ ],
+ "unblocked": []
+ },
+ "schema": 1714394162589,
+ "key_format": "{guid}:{version}",
+ "stash_time": 1714502105965,
+ "id": "80eb1f71-0a58-4413-979b-31174221e17f",
+ "last_modified": 1714502163258
+ },
+ {
+ "stash": {
+ "blocked": [
+ "{f350fb55-0f0f-455b-a220-84ecd8e9c1c4}:1.0.0",
+ "{f350fb55-0f0f-455b-a220-84ecd8e9c1c4}:1.2.0",
+ "{f350fb55-0f0f-455b-a220-84ecd8e9c1c4}:3.0.0"
+ ],
+ "unblocked": []
+ },
+ "schema": 1714065172023,
+ "key_format": "{guid}:{version}",
+ "stash_time": 1714394105741,
+ "id": "0debaf67-edcf-42d1-8ca6-5d1455a4c624",
+ "last_modified": 1714394162447
+ },
+ {
+ "stash": {
+ "blocked": [
+ "{392032f8-b8b9-4729-8b85-5909a5fb7785}:1.0",
+ "{e6ce6d79-9688-4609-8479-8fe5ce05fb94}:1.0"
+ ],
+ "unblocked": []
+ },
+ "schema": 1713875763544,
+ "key_format": "{guid}:{version}",
+ "stash_time": 1713897306045,
+ "id": "050ef823-a352-4664-8cbd-b932cdaa1abb",
+ "last_modified": 1713897363017
+ },
+ {
+ "stash": {
+ "blocked": [
+ "{93b5bb7e-cd0f-4d35-a941-e916a1f7c4fd}:1.7",
+ "{93b5bb7e-cd0f-4d35-a941-e916a1f7c4fd}:1.5",
+ "{93b5bb7e-cd0f-4d35-a941-e916a1f7c4fd}:2.1",
+ "{93b5bb7e-cd0f-4d35-a941-e916a1f7c4fd}:2.0",
+ "{93b5bb7e-cd0f-4d35-a941-e916a1f7c4fd}:1.2",
+ "{93b5bb7e-cd0f-4d35-a941-e916a1f7c4fd}:1.8",
+ "{93b5bb7e-cd0f-4d35-a941-e916a1f7c4fd}:1.0"
+ ],
+ "unblocked": []
+ },
+ "schema": 1713810962117,
+ "key_format": "{guid}:{version}",
+ "stash_time": 1713875706173,
+ "id": "de91d856-0133-44c6-ae65-47b4d58bb2be",
+ "last_modified": 1713875763407
+ },
+ {
+ "stash": {
+ "blocked": [
+ "{5d24d38f-8929-4cc5-98bd-2b4898b8c48d}:1.0"
+ ],
+ "unblocked": []
+ },
+ "schema": 1713551767144,
+ "key_format": "{guid}:{version}",
+ "stash_time": 1713810905694,
+ "id": "6bf8193f-0042-4ec6-bee5-84e7b687379e",
+ "last_modified": 1713810961988
+ },
+ {
+ "stash": {
+ "blocked": [
+ "aleks-v99@ru.ru:0.1.5",
+ "{c11b3a46-39ba-40fe-9c27-ce55352cdb64}:1.1",
+ "{c11b3a46-39ba-40fe-9c27-ce55352cdb64}:2.2",
+ "dogInformation@shop.com:1.2",
+ "{b686f58b-2bbf-46af-8e60-67596609ae89}:1.2",
+ "{9bb22fbc-fa8a-460f-b39d-720bc622a898}:1.5",
+ "dog@shop.com:1.2",
+ "{02c000a8-1030-4885-847c-4cd68b96d671}:1.1.5",
+ "{415e5339-7d66-4e3b-aa64-8109cc698933}:1.1",
+ "{870e64ef-0747-4338-ad4a-074518eecc01}:1.0.7",
+ "windowTable@windowTable:0.0.2"
+ ],
+ "unblocked": []
+ },
+ "schema": 1713455790845,
+ "key_format": "{guid}:{version}",
+ "stash_time": 1713551706705,
+ "id": "bb59b9a7-e43d-455d-8d74-5d226464f775",
+ "last_modified": 1713551766987
+ },
+ {
+ "stash": {
+ "blocked": [
+ "{329d8f7e-867f-46bb-9cad-9f1e0818a381}:1.5.10.1"
+ ],
+ "unblocked": []
+ },
+ "schema": 1713199745514,
+ "key_format": "{guid}:{version}",
+ "stash_time": 1713357304334,
+ "id": "bfd18f83-1c06-4a82-83d6-ead84cb7684f",
+ "last_modified": 1713357360700
+ },
+ {
+ "stash": {
+ "blocked": [
"{1f7d545d-970e-49e8-acd8-834d4a9aff09}:1.1"
],
"unblocked": []
@@ -524,5 +678,5 @@
"last_modified": 1707395854769
}
],
- "timestamp": 1712860562321
+ "timestamp": 1715085361954
}
diff --git a/services/settings/dumps/blocklists/moz.build b/services/settings/dumps/blocklists/moz.build
index 8ace1d0541..b3d2658cec 100644
--- a/services/settings/dumps/blocklists/moz.build
+++ b/services/settings/dumps/blocklists/moz.build
@@ -7,18 +7,21 @@
with Files("**"):
BUG_COMPONENT = ("Toolkit", "Blocklist Implementation")
-# The addons blocklist is also in mobile/android/installer/package-manifest.in
+# These collections are referenced in toolkit/ or other core code.
FINAL_TARGET_FILES.defaults.settings.blocklists += [
- "addons-bloomfilters.json",
"gfx.json",
]
-if CONFIG["MOZ_WIDGET_TOOLKIT"] != "android":
- FINAL_TARGET_FILES.defaults.settings.blocklists += ["plugins.json"]
-FINAL_TARGET_FILES.defaults.settings.blocklists["addons-bloomfilters"] += [
- "addons-bloomfilters/addons-mlbf.bin",
- "addons-bloomfilters/addons-mlbf.bin.meta.json",
-]
+# The addons blocklist data is not packaged on Android/iOS and will be downloaded
+# after install.
+# See https://bugzilla.mozilla.org/show_bug.cgi?id=1639050#c5
+
+if not CONFIG["MOZ_BUILD_APP"].startswith("mobile/"):
+ FINAL_TARGET_FILES.defaults.settings.blocklists += [
+ "addons-bloomfilters.json",
+ ]
-if CONFIG["MOZ_BUILD_APP"] == "browser":
- DIST_SUBDIR = "browser"
+ FINAL_TARGET_FILES.defaults.settings.blocklists["addons-bloomfilters"] += [
+ "addons-bloomfilters/addons-mlbf.bin",
+ "addons-bloomfilters/addons-mlbf.bin.meta.json",
+ ]
diff --git a/services/settings/dumps/blocklists/plugins.json b/services/settings/dumps/blocklists/plugins.json
deleted file mode 100644
index d9aff97acb..0000000000
--- a/services/settings/dumps/blocklists/plugins.json
+++ /dev/null
@@ -1,3515 +0,0 @@
-{
- "data": [
- {
- "os": "Linux",
- "schema": 1603099489080,
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1671688",
- "why": "Old versions of the Flash Player plugin have known vulnerabilities. All users are strongly recommended to check for updates <a href=\"https://get.adobe.com/flashplayer/\">on Adobe's Flash page</a>.",
- "name": "Flash Player Plugin on Linux 32.0.0.443 and older (click-to-play)"
- },
- "enabled": true,
- "infoURL": "https://get.adobe.com/flashplayer/",
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "32.0.0.443",
- "minVersion": "0",
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "libflashplayer\\.so",
- "id": "49b843cc-a8fc-4ede-be0c-a0da56d0214f",
- "last_modified": 1603126502200
- },
- {
- "schema": 1603050119276,
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1671688",
- "why": "Old versions of the Flash Player plugin have known vulnerabilities. All users are strongly recommended to check for updates <a href=\"https://get.adobe.com/flashplayer/\">on Adobe's Flash page</a>.",
- "name": "Flash Player Plugin 32.0.0.443 and older (click-to-play)"
- },
- "enabled": true,
- "infoURL": "https://get.adobe.com/flashplayer/",
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "32.0.0.443",
- "minVersion": "0",
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "(NPSWF32.*\\.dll)|(NPSWF64.*\\.dll)|(Flash\\ Player\\.plugin)",
- "id": "832dc9ff-3314-4df2-abcf-7bd65a645371",
- "last_modified": 1603126502196
- },
- {
- "schema": 1524072853593,
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1454720",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"https://java.com/\">java.com</a>.",
- "name": "Java Plugin 8 update 76 to 170 (click-to-play), Windows"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "matchName": "Java\\(TM\\) Platform SE 8 U(7[6-9]|[8-9]\\d|1([0-6]\\d|70))(\\s[^\\d\\._U]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "npjp2\\.dll",
- "id": "33147281-45b2-487e-9fea-f66c6517252d",
- "last_modified": 1524073129197
- },
- {
- "schema": 1524072853593,
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1454720",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on <a href=\"https://java.com/\">java.com</a>.",
- "name": "Java Plugin 8 update 76 to 170 (click-to-play), Linux"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "matchName": "Java(\\(TM\\))? Plug-in 11\\.(7[6-9]|[8-9]\\d|1([0-6]\\d|70))(\\.\\d+)?([^\\d\\._]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "libnpjp2\\.so",
- "id": "ab59635e-2e93-423a-9d57-871dde8ae675",
- "last_modified": 1524073076276
- },
- {
- "schema": 1524068554047,
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1454720",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on <a href=\"https://java.com/\">java.com</a>.",
- "name": "Java Plugin 8 update 170 and lower (click-to-play), Mac OS X"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "Java 8 Update 170",
- "minVersion": "Java 8 Update",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "JavaAppletPlugin\\.plugin",
- "id": "f24ffd6f-e02b-4cf4-91d9-d54cd793e4bf",
- "last_modified": 1524072853584
- },
- {
- "schema": 1519390914958,
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1330483",
- "who": "All users who have these versions of the plugin installed.",
- "why": "Old versions of the Adobe Reader plugin have known vulnerabilities. All users are strongly recommended to check for updates <a href=\"https://get.adobe.com/reader/\">on Adobe's Reader page</a>.",
- "name": "Adobe Reader XI 11.0.18 and lower"
- },
- "enabled": true,
- "infoURL": "https://get.adobe.com/reader/",
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "11.0.18",
- "minVersion": "11.0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "(nppdf32\\.dll)|(AdobePDFViewerNPAPI\\.plugin)",
- "id": "59c31ade-88d6-4b22-8601-5316f82e3977",
- "last_modified": 1519390923381
- },
- {
- "schema": 1519390914958,
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1330483",
- "who": "All users who have these versions of the plugin installed.",
- "why": "Old versions of the Adobe Reader plugin have known vulnerabilities. All users are strongly recommended to check for updates <a href=\"https://get.adobe.com/reader/\">on Adobe's Reader page</a>.",
- "name": "Adobe Reader 15.006.30244 and lower"
- },
- "enabled": true,
- "infoURL": "https://get.adobe.com/reader/",
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "15.006.30244",
- "minVersion": "15.006",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "(nppdf32\\.dll)|(AdobePDFViewerNPAPI\\.plugin)",
- "id": "3f136e56-4c93-4619-8c0d-d86258c1065d",
- "last_modified": 1519390923357
- },
- {
- "schema": 1519390914958,
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1330483",
- "who": "All users who have these versions of the plugin installed.",
- "why": "Old versions of the Adobe Reader plugin have known vulnerabilities. All users are strongly recommended to check for updates <a href=\"https://get.adobe.com/reader/\">on Adobe's Reader page</a>.",
- "name": "Adobe Reader 15.020.20042 and lower"
- },
- "enabled": true,
- "infoURL": "https://get.adobe.com/reader/",
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "15.020.20042",
- "minVersion": "15.020",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "(nppdf32\\.dll)|(AdobePDFViewerNPAPI\\.plugin)",
- "id": "43b45ad8-a373-42c1-89c6-64e2746885e5",
- "last_modified": 1519390923333
- },
- {
- "schema": 1519390914958,
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1347194",
- "why": "Old versions of this plugin have critical security vulnerabilities. You can update your plugin on <a href=\"https://get.adobe.com/shockwave/\">Adobe's website</a>.",
- "name": "Adobe Shockwave for Director, version 12.2.7.197"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "12.2.7.197",
- "minVersion": "0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "np32dsw_1227197\\.dll",
- "id": "97647cd8-03c5-416c-b9d3-cd5ef87ab39f",
- "last_modified": 1519390923310
- },
- {
- "schema": 1519390914958,
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1381926",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on <a href=\"https://java.com/\">java.com</a>.",
- "name": "Java Plugin 7 update 97 to 150 (click-to-play), Mac OS X"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "Java 7 Update 150",
- "minVersion": "Java 7 Update 97",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "JavaAppletPlugin\\.plugin",
- "id": "d70fdf87-0441-479c-833f-2213b769eb40",
- "last_modified": 1519390923286
- },
- {
- "schema": 1519390914958,
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1381926",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"https://java.com/\">java.com</a>.",
- "name": "Java Plugin 7 update 97 to 150 (click-to-play), Windows"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "matchName": "Java\\(TM\\) Platform SE 7 U(97|98|99|1([0-4][0-9]|50))(\\s[^\\d\\._U]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "npjp2\\.dll",
- "id": "427f5ec6-d1a7-4725-ac29-d5c5e51de537",
- "last_modified": 1519390923263
- },
- {
- "schema": 1519390914958,
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1381926",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on <a href=\"https://java.com/\">java.com</a>.",
- "name": "Java Plugin 7 update 97 to 150 (click-to-play), Linux"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "matchName": "Java(\\(TM\\))? Plug-in 10\\.(97|98|99|1([0-4]\\d|50))(\\.\\d+)?([^\\d\\._]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "libnpjp2\\.so",
- "id": "fdc40de3-95ab-41a5-94cf-9b400221a713",
- "last_modified": 1519390923239
- },
- {
- "schema": 1519390914958,
- "blockID": "p416",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=885362",
- "who": "All users who have these versions of the plugin installed in Firefox.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 6 updates 42 to 45 (click-to-play), Mac OS X",
- "created": "2013-06-28T12:44:58Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "Java 6 Update 45",
- "minVersion": "Java 6 Update 42",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "17.0"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "*",
- "minVersion": "2.14"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "JavaAppletPlugin\\.plugin",
- "id": "02a5865d-f6ea-a330-674e-7dea7390680f",
- "last_modified": 1519390921640
- },
- {
- "schema": 1519390914958,
- "blockID": "p119",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=780717",
- "who": "All Firefox users who have installed the Java plugin, JRE versions below 1.6.0_33 or between 1.7.0 and 1.7.0_4.",
- "why": "Outdated versions of the Java plugin are vulnerable to an actively exploited security issue. All users are strongly encouraged to <a href=\"http://java.com/inc/BrowserRedirect1.jsp\">update their Java plugin</a>. For more information, please <a href=\"http://blog.mozilla.org/addons/2012/08/14/new-java-blocklist/\">read our blog post</a> or <a href=\"http://www.oracle.com/technetwork/topics/security/javacpujun2012-1515912.html\">Oracle's Advisory</a>.",
- "name": "Java Plugin",
- "created": "2012-08-14T09:27:32Z"
- },
- "enabled": true,
- "matchName": "Java\\(TM\\) Plug-in 1\\.(6\\.0_(\\d|[0-2]\\d?|3[0-2])|7\\.0(_0?([1-4]))?)([^\\d\\._]|$)",
- "versionRange": [
- {
- "severity": 1,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0.1"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "2.14.*",
- "minVersion": "0.1"
- }
- ]
- }
- ],
- "matchFilename": "libnpjp2\\.so",
- "id": "d1aa9366-d40b-a68d-b3ed-4b36e4939442",
- "last_modified": 1519390921616
- },
- {
- "schema": 1519390914958,
- "blockID": "p328",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=853629",
- "who": "All Firefox users who have these versions of the plugin installed.",
- "why": "Old versions of this plugin are potentially insecure and unstable. All affected users should visit the <a href=\"http://www.mozilla.com/plugincheck/\">plugin check</a> page to look for updates for their Silverlight plugin.",
- "name": "Silverlight for Mac OS X between 5.1 and 5.1.20124.* (click-to-play)",
- "created": "2013-03-26T09:35:05Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "5.1.20124.9999",
- "minVersion": "5.1",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "19.0a1"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "*",
- "minVersion": "2.16a1"
- },
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "17.0.4"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "Silverlight\\.plugin",
- "id": "dd81b232-09cb-e31d-ed8b-c5cc6ea28dd0",
- "last_modified": 1519390921592
- },
- {
- "schema": 1519390914958,
- "blockID": "p210",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=812896",
- "who": "All Firefox users who have the Java 7 plugin, updates 7 and below.",
- "why": "The Java 7 Runtime Environment, update version 7, has a <a href=\"http://www.oracle.com/technetwork/topics/security/javacpuoct2012-1515924.html\">serious security vulnerability</a> that is fixed in the latest update. All Firefox users are strongly encouraged to update as soon as possible. This can be done on the <a href=\"http://www.mozilla.com/plugincheck/\">Plugin Check</a> page.",
- "name": "Java Plugin 1.7u7 (Linux)",
- "created": "2012-11-22T09:31:33Z"
- },
- "enabled": true,
- "matchName": "Java\\(TM\\) Plug-in 1\\.7\\.0(_0?7)?([^\\d\\._]|$)",
- "versionRange": [
- {
- "severity": 1,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0.1"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "2.14.*",
- "minVersion": "0.1"
- }
- ]
- }
- ],
- "matchFilename": "libnpjp2\\.so",
- "id": "8e562dba-7ae7-fa85-2c31-479c4e661056",
- "last_modified": 1519390921568
- },
- {
- "schema": 1519390914958,
- "blockID": "p214",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=812896",
- "who": "All Firefox users who have the Java 7 plugin, updates 7 and below.",
- "why": "The Java 7 Runtime Environment, update version 7 and below, has a <a href=\"http://www.oracle.com/technetwork/topics/security/javacpuoct2012-1515924.html\">serious security vulnerability</a> that is fixed in the latest update. All Firefox users are strongly encouraged to update as soon as possible. This can be done on the <a href=\"http://www.mozilla.com/plugincheck/\">Plugin Check</a> page.",
- "name": "Java Plugin 1.7u7 (Windows)",
- "created": "2012-11-22T09:34:13Z"
- },
- "enabled": true,
- "matchName": "Java\\(TM\\) Platform SE 7 U7(\\s[^\\d\\._U]|$)",
- "versionRange": [
- {
- "severity": 1,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0.1"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "2.14.*",
- "minVersion": "0.1"
- }
- ]
- }
- ],
- "matchFilename": "npjp2\\.dll",
- "id": "524ff62f-9564-a2b2-2585-88b88ea4c2f9",
- "last_modified": 1519390921544
- },
- {
- "schema": 1519390914958,
- "blockID": "p414",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=885362",
- "who": "All users who have these versions of the plugin installed in Firefox.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 6 updates 42 to 45 (click-to-play), Windows",
- "created": "2013-06-28T12:43:43Z"
- },
- "enabled": true,
- "matchName": "Java\\(TM\\) Platform SE 6 U4[2-5](\\s[^\\d\\._U]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "17.0"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "*",
- "minVersion": "2.14"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "npjp2\\.dll",
- "id": "e36516a6-8bb3-09cc-02e3-72c67046b42e",
- "last_modified": 1519390921520
- },
- {
- "schema": 1519390914958,
- "blockID": "p184",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=829111",
- "who": "All users who have these versions of the plugin installed in Firefox 17 and above.",
- "why": "The Java plugin is causing significant security problems. All users are strongly recommended to keep the plugin disabled unless necessary.",
- "name": "Java Plugin 7 update 11 and lower (click-to-play), Linux",
- "created": "2012-10-30T14:39:15Z"
- },
- "enabled": true,
- "matchName": "Java\\(TM\\) Plug-in 1\\.7\\.0(_0?([0-9]|(1[0-1]))?)?([^\\d\\._]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "17.0"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "*",
- "minVersion": "2.14"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "libnpjp2\\.so",
- "id": "06621403-39a8-3867-ba6e-406dc20c88af",
- "last_modified": 1519390921496
- },
- {
- "schema": 1519390914958,
- "blockID": "p412",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=885362",
- "who": "All users who have these versions of the plugin installed in Firefox.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 6 updates 42 to 45 (click-to-play), Linux",
- "created": "2013-06-28T12:42:20Z"
- },
- "enabled": true,
- "matchName": "Java\\(TM\\) Plug-in 1\\.6\\.0_4[2-5]([^\\d\\._]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "17.0"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "*",
- "minVersion": "2.14"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "libnpjp2\\.so",
- "id": "8f652c63-cda4-1640-0b0c-23025e336b20",
- "last_modified": 1519390921472
- },
- {
- "schema": 1519390914958,
- "blockID": "p29",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=421993",
- "who": "Users of all versions of Yahoo Application State Plugin for Firefox 3 and later.\r\n\r\nUsers of all versions of Yahoo Application State Plugin for SeaMonkey 1.0.0.5 and later.",
- "why": "This plugin causes a high volume of Firefox and SeaMonkey crashes.",
- "name": "Yahoo Application State Plugin (SeaMonkey)",
- "created": "2011-03-31T16:28:26Z"
- },
- "enabled": true,
- "matchName": "^Yahoo Application State Plugin$",
- "versionRange": [
- {
- "targetApplication": [
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "*",
- "minVersion": "1.0.0.5"
- }
- ]
- }
- ],
- "matchFilename": "npYState.dll",
- "matchDescription": "^Yahoo Application State Plugin$",
- "id": "8f52a562-5438-731b-5c64-7f76009f1489",
- "last_modified": 1519390921448
- },
- {
- "schema": 1519390914958,
- "blockID": "p138",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=794247",
- "who": "All Firefox users who have the Java 7 plugin, update 6 and below.",
- "why": "The Java 7 Runtime Environment, update versions 6 and below, has a <a href=\"https://blog.mozilla.org/security/2012/08/28/protecting-users-against-java-security-vulnerability/\">serious security vulnerability</a> that is fixed in the latest update. All Firefox users are strongly encouraged to update as soon as possible. This can be done on the <a href=\"http://www.mozilla.com/plugincheck/\">Plugin Check</a> page.",
- "name": "Java Plugin",
- "created": "2012-09-13T14:49:52Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 1,
- "maxVersion": "Java 7 Update 06",
- "minVersion": "Java 7 Update 01",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0.1"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "2.14.*",
- "minVersion": "0.1"
- }
- ]
- }
- ],
- "matchFilename": "JavaAppletPlugin\\.plugin",
- "id": "5e898a46-8ea9-2fab-5dfe-a43e51641d81",
- "last_modified": 1519390921424
- },
- {
- "schema": 1519390914958,
- "blockID": "p457",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=927273",
- "who": "All users who have these versions of the plugin installed in Firefox.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 7 update 25 to 44 (click-to-play), Linux",
- "created": "2013-10-16T16:28:58Z"
- },
- "enabled": true,
- "matchName": "Java(\\(TM\\))? Plug-in ((1\\.7\\.0_(2[5-9]|3\\d|4[0-4]))|(10\\.4[0-4](\\.[0-9]+)?))([^\\d\\._]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "17.0"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "*",
- "minVersion": "2.14"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "libnpjp2\\.so",
- "id": "5ca97332-f4b7-81f5-d441-6acb1834f332",
- "last_modified": 1519390921400
- },
- {
- "schema": 1519390914958,
- "blockID": "p294",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=843373",
- "who": "All users who have these versions of the plugin installed in Firefox.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 7 update 12 to 15 (click-to-play), Windows",
- "created": "2013-02-25T12:33:48Z"
- },
- "enabled": true,
- "matchName": "Java\\(TM\\) Platform SE 7 U1[2-5](\\s[^\\d\\._U]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "17.0"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "*",
- "minVersion": "2.14"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "npjp2\\.dll",
- "id": "ab8aff96-ead4-615d-be44-bcb7c31699f0",
- "last_modified": 1519390921376
- },
- {
- "schema": 1519390914958,
- "blockID": "p186",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=829111",
- "who": "All users who have these versions of the plugin installed in Firefox 17 and above.",
- "why": "The Java plugin is causing significant security problems. All users are strongly recommended to keep the plugin disabled unless necessary.",
- "name": "Java Plugin 6 updates 31 through 38 (click-to-play), Windows",
- "created": "2012-10-30T14:45:39Z"
- },
- "enabled": true,
- "matchName": "Java\\(TM\\) Platform SE 6 U3[1-8](\\s[^\\d\\._U]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "17.0"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "*",
- "minVersion": "2.14"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "npjp2\\.dll",
- "id": "8488cdb0-1f00-1349-abfc-f50e85c9163b",
- "last_modified": 1519390921351
- },
- {
- "os": "Darwin",
- "schema": 1519390914958,
- "blockID": "p242",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=821422",
- "who": "All Firefox (18 and above) users on Mac OS X who have installed a version of Flip4Mac older than 2.4.4.",
- "why": "Old versions of the Flip4Mac WMV plugin are causing significant stability problems in Firefox 18 and above. Users are encouraged update to the latest version of the plugin, available at <a href=\"http://www.telestream.net/flip4mac/overview.htm\">the Flip4Mac site</a>.",
- "name": "Flip4Mac WMV Plugin",
- "created": "2012-12-21T13:32:36Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 1,
- "maxVersion": "2.4.3.999",
- "minVersion": "0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "18.0a1"
- }
- ]
- }
- ],
- "matchDescription": "Flip4Mac",
- "id": "cef6f402-bdf8-0ba6-66d8-8ac42c72d4be",
- "last_modified": 1519390921327
- },
- {
- "schema": 1519390914958,
- "blockID": "p26",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=421993",
- "who": "Users of all versions of Yahoo Application State Plugin for Firefox 3 and later.\r\n\r\nUsers of all versions of Yahoo Application State Plugin for SeaMonkey 1.0.0.5 and later.",
- "why": "This plugin causes a high volume of Firefox and SeaMonkey crashes.",
- "name": "Yahoo Application State Plugin",
- "created": "2011-03-31T16:28:26Z"
- },
- "enabled": true,
- "matchName": "^Yahoo Application State Plugin$",
- "versionRange": [
- {
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "3.0a1"
- }
- ]
- }
- ],
- "matchFilename": "npYState.dll",
- "matchDescription": "^Yahoo Application State Plugin$",
- "id": "6a1b6dfe-f463-3061-e8f8-6e896ccf2a8a",
- "last_modified": 1519390921303
- },
- {
- "schema": 1519390914958,
- "blockID": "p459",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=927273",
- "who": "All users who have these versions of the plugin installed in Firefox.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 7 update 25 to 44 (click-to-play), Mac OS X",
- "created": "2013-10-16T16:29:27Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "Java 7 Update 44",
- "minVersion": "Java 7 Update 25",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "17.0"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "*",
- "minVersion": "2.14"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "JavaAppletPlugin\\.plugin",
- "id": "5b0bbf0e-dbae-7896-3c31-c6cb7a74e6fa",
- "last_modified": 1519390921278
- },
- {
- "schema": 1519390914958,
- "blockID": "p188",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=829111",
- "who": "All users who have these versions of the plugin installed in Firefox 17 and above.",
- "why": "The Java plugin is causing significant security problems. All users are strongly recommended to keep the plugin disabled unless necessary.",
- "name": "Java Plugin 6 updates 38 and lower (click-to-play), Mac OS X",
- "created": "2012-10-30T14:48:54Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "Java 6 Update 38",
- "minVersion": "Java 6 Update 0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "17.0"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "*",
- "minVersion": "2.14"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "JavaAppletPlugin\\.plugin",
- "id": "61944828-8178-71ab-e9c6-d846b5f45d96",
- "last_modified": 1519390921253
- },
- {
- "schema": 1519390914958,
- "blockID": "p292",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=843373",
- "who": "All users who have these versions of the plugin installed in Firefox.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 7 update 12 to 15 (click-to-play), Mac OS X",
- "created": "2013-02-25T12:32:41Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "Java 7 Update 15",
- "minVersion": "Java 7 Update 12",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "17.0"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "*",
- "minVersion": "2.14"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "JavaAppletPlugin\\.plugin",
- "id": "9a09fe22-c3d8-57e6-4e99-ecd06fb03081",
- "last_modified": 1519390921228
- },
- {
- "schema": 1519390914958,
- "blockID": "p125",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=780717",
- "who": "All Firefox users who have installed the Java plugin, JRE versions below 1.6.0_33 or between 1.7.0 and 1.7.0_4.",
- "why": "Outdated versions of the Java plugin are vulnerable to an actively exploited security issue. All users are strongly encouraged to <a href=\"http://java.com/inc/BrowserRedirect1.jsp\">update their Java plugin</a>. For more information, please <a href=\"http://blog.mozilla.org/addons/2012/08/14/new-java-blocklist/\">read our blog post</a> or <a href=\"http://www.oracle.com/technetwork/topics/security/javacpujun2012-1515912.html\">Oracle's Advisory</a>.",
- "name": "Java Plugin",
- "created": "2012-08-14T09:31:17Z"
- },
- "enabled": true,
- "matchName": "Java\\(TM\\) Platform SE ((6( U(\\d|([0-2]\\d)|3[0-2]))?)|(7(\\sU[0-4])?))(\\s[^\\d\\._U]|$)",
- "versionRange": [
- {
- "severity": 1,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0.1"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "2.14.*",
- "minVersion": "0.1"
- }
- ]
- }
- ],
- "matchFilename": "npjp2\\.dll",
- "id": "7538347d-ca2e-09b8-c5d8-0a9d140f8c87",
- "last_modified": 1519390921203
- },
- {
- "schema": 1519390914958,
- "blockID": "p134",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=794247",
- "who": "All Firefox users who have the Java 7 plugin, update 6 and below.",
- "why": "The Java 7 Runtime Environment, update versions 6 and below, has a <a href=\"https://blog.mozilla.org/security/2012/08/28/protecting-users-against-java-security-vulnerability/\">serious security vulnerability</a> that is fixed in the latest update. All Firefox users are strongly encouraged to update as soon as possible. This can be done on the <a href=\"http://www.mozilla.com/plugincheck/\">Plugin Check</a> page.",
- "name": "Java Plugin",
- "created": "2012-08-31T15:22:51Z"
- },
- "enabled": true,
- "matchName": "Java\\(TM\\) Platform SE 7 U[5-6](\\s[^\\d\\._U]|$)",
- "versionRange": [
- {
- "severity": 1,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0.1"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "2.14.*",
- "minVersion": "0.1"
- }
- ]
- }
- ],
- "matchFilename": "npjp2\\.dll",
- "id": "1f519b98-a4b6-2a98-b1ff-b642f7b4d2bb",
- "last_modified": 1519390921179
- },
- {
- "schema": 1519390914958,
- "blockID": "p123",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=780717",
- "who": "All Firefox users who have installed the Java plugin, JRE versions below 1.6.0_33 or between 1.7.0 and 1.7.0_4.",
- "why": "Outdated versions of the Java plugin are vulnerable to an actively exploited security issue. All users are strongly encouraged to <a href=\"http://java.com/inc/BrowserRedirect1.jsp\">update their Java plugin</a>. For more information, please <a href=\"http://blog.mozilla.org/addons/2012/08/14/new-java-blocklist/\">read our blog post</a> or <a href=\"http://www.oracle.com/technetwork/topics/security/javacpujun2012-1515912.html\">Oracle's Advisory</a>.",
- "name": "Java Plugin",
- "created": "2012-08-14T09:29:42Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 1,
- "maxVersion": "14.2.0",
- "minVersion": "0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0.1"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "2.14.*",
- "minVersion": "0.1"
- }
- ]
- }
- ],
- "matchFilename": "JavaPlugin2_NPAPI\\.plugin",
- "id": "46bf36a7-1934-38f8-1fcc-c9c4bcc8343e",
- "last_modified": 1519390921152
- },
- {
- "schema": 1519390914958,
- "blockID": "p190",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=829111",
- "who": "All users who have these versions of the plugin installed in Firefox 17 and above.",
- "why": "The Java plugin is causing significant security problems. All users are strongly recommended to keep the plugin disabled unless necessary.",
- "name": "Java Plugin 6 updates 31 through 38 (click-to-play), Linux",
- "created": "2012-10-30T14:55:37Z"
- },
- "enabled": true,
- "matchName": "Java\\(TM\\) Plug-in 1\\.6\\.0_3[1-8]([^\\d\\._]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "17.0"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "*",
- "minVersion": "2.14"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "libnpjp2\\.so",
- "id": "9f9eb0ae-6495-aaa6-041a-d802cdb8e134",
- "last_modified": 1519390921128
- },
- {
- "schema": 1519390914958,
- "blockID": "p418",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=885362",
- "who": "All users who have these versions of the plugin installed in Firefox.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 7 update 16 to 24 (click-to-play), Linux",
- "created": "2013-06-28T12:46:18Z"
- },
- "enabled": true,
- "matchName": "Java\\(TM\\) Plug-in 1\\.7\\.0_(1[6-9]|2[0-4])([^\\d\\._]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "17.0"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "*",
- "minVersion": "2.14"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "libnpjp2\\.so",
- "id": "ee5c1584-0170-8702-5f99-e0325b4a91a8",
- "last_modified": 1519390921103
- },
- {
- "schema": 1519390914958,
- "blockID": "p182",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=829111",
- "who": "All users who have these versions of the plugin installed in Firefox 17 and above.",
- "why": "The Java plugin is causing significant security problems. All users are strongly recommended to keep the plugin disabled unless necessary.",
- "name": "Java Plugin 7 update 11 and lower (click-to-play), Windows",
- "created": "2012-10-30T14:33:04Z"
- },
- "enabled": true,
- "matchName": "Java\\(TM\\) Platform SE 7 U([0-9]|(1[0-1]))(\\s[^\\d\\._U]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "17.0"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "*",
- "minVersion": "2.14"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "npjp2\\.dll",
- "id": "385d9911-f8bc-83e0-8cd2-94c98087938c",
- "last_modified": 1519390919419
- },
- {
- "schema": 1519390914958,
- "blockID": "p422",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=885362",
- "who": "All users who have these versions of the plugin installed in Firefox.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 7 update 16 to 24 (click-to-play), Mac OS X",
- "created": "2013-06-28T12:48:54Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "Java 7 Update 24",
- "minVersion": "Java 7 Update 16",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "17.0"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "*",
- "minVersion": "2.14"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "JavaAppletPlugin\\.plugin",
- "id": "709960a7-d268-0c70-d6ad-17bbed0cd1c4",
- "last_modified": 1519390919396
- },
- {
- "schema": 1519390914958,
- "blockID": "p212",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=812896",
- "who": "All Firefox users who have the Java 7 plugin, updates 7 and below.",
- "why": "The Java 7 Runtime Environment, update version 7, has a <a href=\"http://www.oracle.com/technetwork/topics/security/javacpuoct2012-1515924.html\">serious security vulnerability</a> that is fixed in the latest update. All Firefox users are strongly encouraged to update as soon as possible. This can be done on the <a href=\"http://www.mozilla.com/plugincheck/\">Plugin Check</a> page.",
- "name": "Java Plugin 1.7u7 (Mac OS X)",
- "created": "2012-11-22T09:33:07Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 1,
- "maxVersion": "Java 7 Update 07",
- "minVersion": "Java 7 Update 07",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0.1"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "2.14.*",
- "minVersion": "0.1"
- }
- ]
- }
- ],
- "matchFilename": "JavaAppletPlugin\\.plugin",
- "id": "5ec1cd0f-d478-e6e0-989e-c91694b2a411",
- "last_modified": 1519390919373
- },
- {
- "schema": 1519390914958,
- "blockID": "p302",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=843373",
- "who": "All users who have these versions of the plugin installed in Firefox.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.\r\n",
- "name": "Java Plugin 6 updates 39 to 41 (click-to-play), Linux",
- "created": "2013-02-25T12:37:17Z"
- },
- "enabled": true,
- "matchName": "Java\\(TM\\) Plug-in 1\\.6\\.0_(39|40|41)([^\\d\\._]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "17.0"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "*",
- "minVersion": "2.14"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "libnpjp2\\.so",
- "id": "caec8103-dec9-8018-eb3d-9cf21cbf68a6",
- "last_modified": 1519390919350
- },
- {
- "schema": 1519390914958,
- "blockID": "p132",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=794247",
- "who": "All Firefox users who have the Java 7 plugin, updates 6 and below.",
- "why": "The Java 7 Runtime Environment, update versions 6 and below, has a <a href=\"https://blog.mozilla.org/security/2012/08/28/protecting-users-against-java-security-vulnerability/\">serious security vulnerability</a> that is fixed in the latest update. All Firefox users are strongly encouraged to update as soon as possible. This can be done on the <a href=\"http://www.mozilla.com/plugincheck/\">Plugin Check</a> page.",
- "name": "Java Plugin",
- "created": "2012-08-31T15:21:34Z"
- },
- "enabled": true,
- "matchName": "Java\\(TM\\) Plug-in 1\\.7\\.0(_0?([5-6]))?([^\\d\\._]|$)",
- "versionRange": [
- {
- "severity": 1,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0.1"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "2.14.*",
- "minVersion": "0.1"
- }
- ]
- }
- ],
- "matchFilename": "libnpjp2\\.so",
- "id": "572d0485-3388-7c2a-a062-b062e42c8710",
- "last_modified": 1519390919327
- },
- {
- "schema": 1519390914958,
- "blockID": "p296",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=843373",
- "who": "All users who have these versions of the plugin installed in Firefox.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 7 update 12 to 15 (click-to-play), Linux",
- "created": "2013-02-25T12:34:37Z"
- },
- "enabled": true,
- "matchName": "Java\\(TM\\) Plug-in 1\\.7\\.0_1[2-5]([^\\d\\._]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "17.0"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "*",
- "minVersion": "2.14"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "libnpjp2\\.so",
- "id": "5b7aaf34-48a3-dfa5-1db8-550faef41501",
- "last_modified": 1519390919304
- },
- {
- "schema": 1519390914958,
- "blockID": "p298",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=843373",
- "who": "All users who have these versions of the plugin installed in Firefox.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.\r\n",
- "name": "Java Plugin 6 updates 39 to 41 (click-to-play), Mac OS X",
- "created": "2013-02-25T12:35:34Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "Java 6 Update 41",
- "minVersion": "Java 6 Update 39",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "17.0"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "*",
- "minVersion": "2.14"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "JavaAppletPlugin\\.plugin",
- "id": "cfd76877-e79d-8e8c-c6a7-6b596fd344e8",
- "last_modified": 1519390919281
- },
- {
- "schema": 1519390914958,
- "blockID": "p458",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=927273",
- "who": "All users who have these versions of the plugin installed in Firefox.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 7 update 25 to 44 (click-to-play), Windows",
- "created": "2013-10-16T16:29:18Z"
- },
- "enabled": true,
- "matchName": "Java\\(TM\\) Platform SE 7 U(2[5-9]|3\\d|4[0-4])(\\s[^\\d\\._U]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "17.0"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "*",
- "minVersion": "2.14"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "npjp2\\.dll",
- "id": "d199d513-3c49-b53c-9447-33c8021c0df2",
- "last_modified": 1519390919257
- },
- {
- "schema": 1519390914958,
- "blockID": "p420",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=885362",
- "who": "All users who have these versions of the plugin installed in Firefox.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 7 update 16 to 24 (click-to-play), Windows",
- "created": "2013-06-28T12:47:32Z"
- },
- "enabled": true,
- "matchName": "Java\\(TM\\) Platform SE 7 U(1[6-9]|2[0-4])(\\s[^\\d\\._U]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "17.0"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "*",
- "minVersion": "2.14"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "npjp2\\.dll",
- "id": "5942b7ae-bcdc-e329-9f17-f7a795c9ec83",
- "last_modified": 1519390919234
- },
- {
- "schema": 1519390914958,
- "blockID": "p254",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=830410",
- "who": "All Firefox users on Mac OS X who are using the affected versions of the PDF Browser Plugin.",
- "why": "The PDF Browser Plugin is causing frequent crashes on Firefox 18 and above. All users are recommended to keep the plugin disabled and update it if a new version becomes available.",
- "name": "PDF Browser Plugin 2.4.2 and below",
- "created": "2013-01-15T11:54:24Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 1,
- "maxVersion": "2.4.2",
- "minVersion": "0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "18.0a1"
- }
- ]
- }
- ],
- "matchFilename": "PDF Browser Plugin\\.plugin",
- "id": "2dd1b53a-52db-2d0f-392a-410d5aade9d6",
- "last_modified": 1519390919211
- },
- {
- "schema": 1519390914958,
- "blockID": "p34",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=634639",
- "who": "Users of Java 2 Plugin versions 1.5_00 to 1.6_99 in Firefox 3.6 and later.",
- "why": "These versions of the Java plugin are no longer supported by Oracle and cause a high volume of Firefox crashes.",
- "name": "Java Plugin",
- "created": "2011-02-17T17:20:54Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "3.6a1pre"
- }
- ]
- }
- ],
- "matchFilename": "[Nn][Pp][Jj][Pp][Ii]1[56]0_[0-9]+\\.[Dd][Ll][Ll]",
- "id": "91618232-c650-5dc6-00fe-293c0baedc34",
- "last_modified": 1519390919188
- },
- {
- "schema": 1519390914958,
- "blockID": "p180",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=829111",
- "who": "All users who have these versions of the plugin installed in Firefox 17 and above.",
- "why": "The Java plugin is causing significant security problems. All users are strongly recommended to keep the plugin disabled unless necessary.",
- "name": "Java Plugin 7 update 10 and lower (click-to-play), Mac OS X",
- "created": "2012-10-30T14:29:51Z"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "Java 7 Update 10",
- "minVersion": "Java 7 Update 0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "17.0"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "*",
- "minVersion": "2.14"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "JavaAppletPlugin\\.plugin",
- "id": "12f38c07-c1e1-2464-2eab-d454cf471eab",
- "last_modified": 1519390919165
- },
- {
- "schema": 1519390914958,
- "blockID": "p32",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=539282",
- "who": "All users of the Viewpoint plugin for Firefox 3 and later.",
- "why": "This plugin causes a high volume of Firefox crashes.",
- "name": "Viewpoint",
- "created": "2011-03-31T16:28:26Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "3.0"
- }
- ]
- }
- ],
- "matchFilename": "npViewpoint.dll",
- "id": "1206e79a-4817-16e9-0f5e-7762a8d19216",
- "last_modified": 1519390919142
- },
- {
- "schema": 1519390914958,
- "blockID": "p94",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=754723",
- "who": "All Firefox users who have a version of the Flash Player Plugin older than 10.2.159.1.",
- "why": "Old versions of the Flash Player plugin are targeted by known security vulnerabilities, and cause frequent Firefox crashes. We strongly recommend all users to visit <a href=\"http://get.adobe.com/flashplayer/\">the Flash Player homepage</a> to download and install the latest available version of this plugin.\r\n\r\nThis is not an ordinary block. It's just an upgrade notification that will be shown to all users who have these old versions installed, asking them to download the latest version. If they choose to ignore the notification, the plugin will continue to work normally.",
- "name": "Flash Player Plugin",
- "created": "2012-05-23T09:15:23Z"
- },
- "enabled": true,
- "infoURL": "https://get.adobe.com/flashplayer/",
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "10.2.159.1",
- "minVersion": "0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0.1"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "2.13.*",
- "minVersion": "0"
- }
- ]
- }
- ],
- "matchFilename": "Flash\\ Player\\.plugin",
- "id": "2a741cac-32d7-a67e-0bf7-b5b53a0ff22b",
- "last_modified": 1519390919119
- },
- {
- "schema": 1519390914958,
- "blockID": "p300",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=843373",
- "who": "All users who have these versions of the plugin installed in Firefox.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 6 updates 39 to 41 (click-to-play), Windows",
- "created": "2013-02-25T12:36:25Z"
- },
- "enabled": true,
- "matchName": "Java\\(TM\\) Platform SE 6 U(39|40|41)(\\s[^\\d\\._U]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "17.0"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "*",
- "minVersion": "2.14"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "npjp2\\.dll",
- "id": "d64e08b6-66b2-f534-53d8-1cbcbb139f2a",
- "last_modified": 1519390919095
- },
- {
- "schema": 1519390914958,
- "blockID": "p152",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=797378",
- "who": "All Firefox users who have this plugin installed.",
- "why": "This plugin is outdated and is potentially insecure. Affected users should go to <a href=\"http://www.mozilla.com/plugincheck/\">the plugin check page</a> and update to the latest version.",
- "name": "Silverlight 4.1.10328.0 and lower",
- "created": "2012-10-05T10:34:12Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "4.1.10328.0",
- "minVersion": "0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "npctrl\\.dll",
- "id": "abdcbe90-5575-6b4b-12de-bbabd93ecf57",
- "last_modified": 1519390919072
- },
- {
- "schema": 1519390914958,
- "blockID": "p904",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1159917",
- "who": "All users who have these versions of the plugin installed in Firefox.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 8 update 44 and lower (click-to-play), Mac OS X",
- "created": "2015-05-19T09:01:42Z"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "Java 8 Update 44",
- "minVersion": "Java 8",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "JavaAppletPlugin\\.plugin",
- "id": "47f6217d-0aa6-1e39-a9c9-cc64d57bb91f",
- "last_modified": 1519390919049
- },
- {
- "schema": 1519390914958,
- "blockID": "p1061",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1217932",
- "who": "All users who have these versions of the Java plugin installed.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 7 update 81 to 90 (click-to-play), Windows",
- "created": "2015-12-02T12:39:41Z"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "matchName": "Java\\(TM\\) Platform SE 7 U(8[1-9]|90)(\\s[^\\d\\._U]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "npjp2\\.dll",
- "id": "69196ada-69bd-6454-eea8-6f8b2037368c",
- "last_modified": 1519390919026
- },
- {
- "schema": 1519390914958,
- "blockID": "p1120",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1241237",
- "who": "All users who have these versions of the Silverlight plugin installed.",
- "why": "Old versions of the Silverlight plugin are known to have critical security vulnerabilities. You can get the latest version of Silverlight <a href=\"http://www.microsoft.com/getsilverlight/get-started/install/default.aspx\">here</a>.",
- "name": "Silverlight plugin 5.1.41105.0 and lower (click to play)",
- "created": "2016-02-03T09:42:43Z"
- },
- "enabled": true,
- "infoURL": "https://www.microsoft.com/getsilverlight",
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "5.1.41105.0",
- "minVersion": "5.1.20125",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "(Silverlight\\.plugin|npctrl\\.dll)",
- "id": "f0bfeb8c-04ee-d5ef-6670-b28c0e0d0f58",
- "last_modified": 1519390919002
- },
- {
- "schema": 1519390914958,
- "blockID": "p102",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=695927",
- "who": "All Firefox users who have this plugin installed.",
- "why": "This plugin was discontinued years ago and only worked up to Firefox version 1.5. Because plugins aren't marked as incompatible, there are still many users who have it installed and have recently been experiencing crashes related to it.",
- "name": "Mozilla ActiveX Plug-in",
- "created": "2012-06-07T17:43:57Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "maxVersion": "*",
- "minVersion": "0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ]
- }
- ],
- "matchFilename": "npmozax\\.dll",
- "id": "2e001e2f-483b-7595-8810-3672e0346950",
- "last_modified": 1519390918979
- },
- {
- "os": "Darwin",
- "schema": 1519390914958,
- "blockID": "p252",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=826002",
- "who": "All Firefox users on Mac OS X who have installed the Adobe Reader XI plugin. Users are recommended to update when a new version of Adobe Reader becomes available, or to downgrade to the latest version of Adobe Reader 10.",
- "why": "The Adobe Reader XI plugin is causing frequent crashes on Firefox for Mac OS X. The impact and this block are currently limited to versions 11.0.0 and 11.0.01.",
- "name": "Adobe Reader XI for Mac OS X",
- "created": "2013-01-15T10:56:30Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 1,
- "maxVersion": "11.0.01",
- "minVersion": "11.0.0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ]
- }
- ],
- "matchFilename": "AdobePDFViewerNPAPI\\.plugin",
- "id": "821ddb3d-bba4-6479-28b6-9974383fa8c9",
- "last_modified": 1519390918955
- },
- {
- "schema": 1519390914958,
- "blockID": "p1004",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=974012",
- "who": "All users who have these versions of the plugin installed",
- "why": "These versions of the Unity Web Player plugin have known vulnerabilities that can put users at risk.",
- "name": "Unity Web Player 5.0 to 5.0.3f1 (click-to-play), Mac OS",
- "created": "2015-09-09T14:11:57Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "Unity Web Player\\.plugin",
- "matchDescription": "^($|Unity Web Player version 5.0(\\.([0-2]|3f1))?[^0-9.])",
- "id": "5a0b69cb-a516-e7a2-ea3b-b4fafcc13c6b",
- "last_modified": 1519390918932
- },
- {
- "schema": 1519390914958,
- "blockID": "p248",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=829054",
- "who": "All users who have Firefox 18 or above installed, and the Sibelius Scorch plugin.",
- "why": "The Sibelius Scorch plugin is not compatible with Firefox 18 and above, and is crashing whenever loaded on affected versions of Firefox. ",
- "name": "Sibelius Scorch plugin",
- "created": "2013-01-14T09:26:47Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 1,
- "maxVersion": "6.2.0b88",
- "minVersion": "0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ]
- }
- ],
- "matchFilename": "Scorch\\.plugin",
- "id": "28b5baa1-6490-38e2-395f-53fc84aa12df",
- "last_modified": 1519390918909
- },
- {
- "schema": 1519390914958,
- "blockID": "p1151",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1264874",
- "who": "All users who have the QuickTime Plugin for Windows installed.",
- "why": "The QuickTime Plugin for Windows has been <a href=\"https://support.apple.com/en-us/HT205771\">discontinued by Apple</a> and has known critical security vulnerabilities. All users are strongly encouraged to remove it or keep it disabled.",
- "name": "QuickTime Plugin for Windows",
- "created": "2016-04-18T17:41:00Z"
- },
- "enabled": true,
- "infoURL": "https://support.apple.com/en-us/HT205771",
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "*",
- "minVersion": "0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 2
- }
- ],
- "matchFilename": "npqtplugin\\.dll",
- "id": "bb8db302-9579-42d2-ff75-c61500f6a020",
- "last_modified": 1519390918887
- },
- {
- "schema": 1519390914958,
- "blockID": "p28",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=512406",
- "who": "All users of Internet Saving Optimizer for all Mozilla applications.",
- "why": "This plugin causes a high volume of Firefox crashes and is considered malware.",
- "name": "Internet Saving Optimizer (plugin)",
- "created": "2011-03-31T16:28:26Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "maxVersion": "*",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ]
- }
- ],
- "matchFilename": "NPFFAddOn.dll",
- "id": "c85a4a9c-d61c-130f-d525-ea36becac235",
- "last_modified": 1519390918863
- },
- {
- "schema": 1519390914958,
- "blockID": "p456",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=470936",
- "who": "All Firefox users who are using old versions of the VLC player plugin.",
- "why": "Old versions of the VLC player are known to cause stability problems in Firefox. All users are recommended to update to the latest version of their VLC software.",
- "name": "VLC Player plugin 2.0.5 and lower (click-to-play)",
- "created": "2013-09-30T14:35:07Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "2.0.5",
- "minVersion": "0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "npvlc\\.dll",
- "id": "0cfaaefe-88a4-dda4-96bc-110e402ca9d5",
- "last_modified": 1519390917137
- },
- {
- "schema": 1519390914958,
- "blockID": "p1144",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1259458",
- "who": "All users who have these versions of the Java plugin installed.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 8 update 64 to 76 (click-to-play), Windows",
- "created": "2016-03-31T16:18:15Z"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "matchName": "Java\\(TM\\) Platform SE 8 U(6[4-9]|7[0-6])(\\s[^\\d\\._U]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "npjp2\\.dll",
- "id": "b3c55844-79d2-66dd-0d44-82fb4533307e",
- "last_modified": 1519390917115
- },
- {
- "schema": 1519390914958,
- "blockID": "p408",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=837377",
- "who": "All Firefox users who have affected versions of the QuickTime plugin installed.",
- "why": "Old versions of the QuickTime plugin are known to be insecure and cause stability problems. All users are recommended to update to the latest version available. You can check for updates in the <a href=\"http://www.mozilla.org/plugincheck/\">plugin check page</a>.",
- "name": "QuickTime Plugin 7.6.5 and lower (click-to-play), Mac OS X",
- "created": "2013-06-28T09:52:37Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "7.6.5",
- "minVersion": "0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "QuickTime Plugin\\.plugin",
- "id": "4f39cd0f-976c-1f71-2d9c-2abe1b4706d9",
- "last_modified": 1519390917091
- },
- {
- "schema": 1519390914958,
- "blockID": "p1059",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1217932",
- "who": "All users who have these versions of the Java plugin installed.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 7 update 81 to 90 (click-to-play), Mac OS X",
- "created": "2015-12-02T12:37:58Z"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "Java 7 Update 90",
- "minVersion": "Java 7 Update 81",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "JavaAppletPlugin\\.plugin",
- "id": "799c4f10-d75d-30a0-5570-56df6be628e0",
- "last_modified": 1519390917067
- },
- {
- "schema": 1519390914958,
- "blockID": "p558",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=974012",
- "who": "All Firefox users who have these versions of the plugin installed.",
- "why": "Current versions of the Unity Web Player plugin have known vulnerabilities that can put users at risk.",
- "name": "Unity Web Player 4.6.6f1 and lower (click-to-play), Mac OS",
- "created": "2014-02-25T08:29:51Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "Unity Web Player\\.plugin",
- "matchDescription": "^($|Unity Web Player version ([0-3]|(4\\.([0-5]|6(\\.([0-5]|6f1)))?[^0-9.])))",
- "id": "bbf83e70-65f5-75af-b841-7cebcf3e38c1",
- "last_modified": 1519390917044
- },
- {
- "schema": 1519390914958,
- "blockID": "p1145",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1259458",
- "who": "All users who have these versions of the Java plugin installed.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 7 update 91 to 97 (click-to-play), Linux",
- "created": "2016-03-31T16:18:53Z"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "matchName": "Java(\\(TM\\))? Plug-in 10\\.(9[1-7])(\\.[0-9]+)?([^\\d\\._]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "libnpjp2\\.so",
- "id": "d4e75c8c-9c32-6093-12cc-1de0fd8f9e87",
- "last_modified": 1519390917020
- },
- {
- "schema": 1519390914958,
- "blockID": "p33",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=558584",
- "who": "Users of Java Deployment Toolkit versions 6.0.200.0 and older in all versions of Firefox.",
- "why": "This plugin has publicly-known security vulnerabilities. For more information, please <a href=\"http://java.com/en/download/help/firefox_addons.xml\">visit the vendor page</a>.",
- "name": "Java Deployment Toolkit",
- "created": "2010-04-16T17:52:32Z"
- },
- "enabled": true,
- "matchName": "[0-6]\\.0\\.[01]\\d{2}\\.\\d+",
- "versionRange": [
- {
- "severity": 1,
- "maxVersion": "",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ]
- }
- ],
- "matchFilename": "npdeploytk.dll",
- "id": "b12b4282-d327-06d6-6e62-4788ba2c4b2f",
- "last_modified": 1519390916997
- },
- {
- "schema": 1519390914958,
- "blockID": "p1060",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1217932",
- "who": "All users who have these versions of the Java plugin installed.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 8 update 46 to 64 (click-to-play), Mac OS X",
- "created": "2015-12-02T12:38:53Z"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "Java 8 Update 64",
- "minVersion": "Java 8 Update 46",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "JavaAppletPlugin\\.plugin",
- "id": "aee0ad26-018f-392b-91f7-6a8aaf332774",
- "last_modified": 1519390916973
- },
- {
- "os": "Darwin",
- "schema": 1519390914958,
- "blockID": "p89",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=750387",
- "who": "Firefox users on Mac OS X who have installed the Adobe Acrobat plugin.",
- "why": "The Adobe Acrobat plugin doesn't work on Mac OS X in default (64-bit) mode, showing a blank page when users click on links to PDF files in Firefox. It also causes a significant number of crashes in 32-bit mode.\r\n\r\nThere's more information on <a href=\"http://blog.mozilla.org/addons/2012/05/04/adobe-reader-blocked-mac/\">this blog post</a>.",
- "name": "Adobe Acrobat NPAPI Plug-in",
- "created": "2012-05-04T11:29:46Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 1,
- "maxVersion": "10.1.3",
- "minVersion": "0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ]
- }
- ],
- "matchFilename": "AdobePDFViewerNPAPI\\.plugin",
- "id": "473f4d9c-e38e-a348-26d1-de7b842893d9",
- "last_modified": 1519390916947
- },
- {
- "schema": 1519390914958,
- "blockID": "p129",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=782672",
- "who": "All Firefox users on Mac OS X who have old versions of the Silverlight plugin.",
- "why": "Old versions of the Silverlight plugin for Mac OS X are causing serious stability problems in Firefox. Affected users can visit <a href=\"https://www.microsoft.com/getsilverlight/Get-Started/Install/Default.aspx\">the official Silverlight page</a> and get the latest version of the Silverlight plugin to correct this problem.",
- "name": "Silverlight for Mac OS X",
- "created": "2012-08-22T10:37:12Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 1,
- "maxVersion": "5.0.99999",
- "minVersion": "0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ]
- }
- ],
- "matchFilename": "Silverlight\\.plugin",
- "id": "ab861311-9c24-5f55-0d3a-f0072868357c",
- "last_modified": 1519390916923
- },
- {
- "schema": 1519390914958,
- "blockID": "p1142",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1259458",
- "who": "All users who have these versions of the Java plugin installed.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 8 update 64 to 76 (click-to-play), Mac OS X",
- "created": "2016-03-31T16:16:46Z"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "Java 8 Update 76",
- "minVersion": "Java 8 Update 64",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "JavaAppletPlugin\\.plugin",
- "id": "646ebafe-dd54-e45f-9569-c245ef72259d",
- "last_modified": 1519390916899
- },
- {
- "schema": 1519390914958,
- "blockID": "p250",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=828982",
- "who": "All Firefox users on Windows who have installed the Foxit Reader Plugin, versions 2.2.1.530 and below.",
- "why": "The Foxit Reader plugin is vulnerable to a <a href=\"http://secunia.com/advisories/51733/\">critical security bug</a> that can compromise a user's system by visiting a malicious site.",
- "name": "Foxit Reader Plugin 2.2.1.530 and below",
- "created": "2013-01-14T13:07:03Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "2.2.1.530",
- "minVersion": "0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 2
- }
- ],
- "matchFilename": "npFoxitReaderPlugin\\.dll",
- "id": "c6299be0-ab77-8bbd-bcaf-c886cec4e799",
- "last_modified": 1519390916873
- },
- {
- "schema": 1519390914958,
- "blockID": "p85",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=741592",
- "who": "All Firefox users who have installed the Java plugin, JRE versions below 1.6.0_31 or between 1.7.0 and 1.7.0_2.",
- "why": "Outdated versions of the Java plugin are vulnerable to an actively exploited security issue. All Mac OS X users are strongly encouraged to update their Java plugin through Software Update, or disable it if no alternatives are available. For more information, please <a href=\"http://blog.mozilla.org/addons/2012/04/30/java-block-complete-for-mac-os-x\">read our blog post</a> or <a href=\"http://www.oracle.com/technetwork/topics/security/javacpufeb2012-366318.html\">Oracle's Advisory</a>.\r\n\r\n",
- "name": "Java Plugin",
- "created": "2012-04-16T13:58:43Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 1,
- "maxVersion": "13.6.0",
- "minVersion": "0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ]
- }
- ],
- "matchFilename": "JavaPlugin2_NPAPI\\.plugin",
- "id": "4df1324d-8236-b7ae-db55-4fb1b7db2754",
- "last_modified": 1519390916849
- },
- {
- "schema": 1519390914958,
- "blockID": "p1250",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1286972",
- "who": "All users who have this plugin installed.",
- "why": "Old versions of the Adobe Reader plugin have known vulnerabilities. All users are strongly recommended to check for updates on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Adobe Reader (Continuous) 15.016.20045",
- "created": "2016-07-21T22:22:11Z"
- },
- "enabled": true,
- "infoURL": "https://get.adobe.com/reader",
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "15.016.20045",
- "minVersion": "15.016.20045",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "(nppdf32\\.dll)|(AdobePDFViewerNPAPI\\.plugin)",
- "id": "b9f6998a-7a45-7d83-7ee6-897e6b193e42",
- "last_modified": 1519390916826
- },
- {
- "schema": 1519390914958,
- "blockID": "p1053",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1222130",
- "who": "All users who have these versions of the Real Player plugin. Affected users can visit our <a href=\"http://www.mozilla.org/plugincheck/\">plugin check page</a> and check for updates.",
- "why": "Old versions of the Real Player plugin have serious security problems that could lead to system compromise.",
- "name": "Real Player for Windows, 17.0.10.7 and lower, click-to-play",
- "created": "2015-11-12T09:07:04Z"
- },
- "enabled": true,
- "infoURL": "https://real.com/",
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "17.0.10.7",
- "minVersion": "0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "nprpplugin\\.dll",
- "id": "2a6a7300-fac0-6518-c44a-35b3c4c714c3",
- "last_modified": 1519390916801
- },
- {
- "schema": 1519390914958,
- "blockID": "p1141",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1259458",
- "who": "All users who have these versions of the Java plugin installed.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 7 update 91 to 97 (click-to-play), Mac OS X",
- "created": "2016-03-31T16:16:02Z"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "Java 7 Update 97",
- "minVersion": "Java 7 Update 91",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "JavaAppletPlugin\\.plugin",
- "id": "2a432d6e-9545-66be-9f93-aefe9793f450",
- "last_modified": 1519390916777
- },
- {
- "schema": 1519390914958,
- "blockID": "p158",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=850745",
- "who": "All Firefox users who have this plugin installed.",
- "why": "This plugin is outdated and is potentially insecure. Affected users should go to <a href=\"http://www.mozilla.com/plugincheck/\">the plugin check page</a> and update to the latest version.",
- "name": "Adobe Reader 10.0 to 10.1.5.*",
- "created": "2012-10-05T10:40:20Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "10.1.5.9999",
- "minVersion": "10.0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "nppdf32\\.dll",
- "id": "107c9a8c-2ef8-da26-75c3-bc26f8ae90fa",
- "last_modified": 1519390916752
- },
- {
- "schema": 1519390914958,
- "blockID": "p960",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1183369",
- "who": "All users who have these versions of the Java plugin installed.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 8 update 45 (click-to-play), Windows",
- "created": "2015-07-15T10:50:25Z"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "matchName": "Java\\(TM\\) Platform SE 8 U45(\\s[^\\d\\._U]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "npjp2\\.dll",
- "id": "990fa997-1d4a-98ee-32de-a7471e81db42",
- "last_modified": 1519390916727
- },
- {
- "schema": 1519390914958,
- "blockID": "p113",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=778686",
- "who": "All Firefox users who have this plugin installed.",
- "why": "Version 1.0.0.0 of the Ubisoft Uplay plugin has a security vulnerability that can be exploited by malicious websites to gain control of the user's system.",
- "name": "Ubisoft Uplay",
- "created": "2012-07-30T12:11:59Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 1,
- "maxVersion": "1.0.0.0",
- "minVersion": "0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ]
- }
- ],
- "matchFilename": "npuplaypc\\.dll",
- "id": "ea3b767d-933b-3f54-f447-09bd2bfbc6e0",
- "last_modified": 1519390916703
- },
- {
- "schema": 1519390914958,
- "blockID": "p366",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=879128",
- "who": "All users who have Firefox 18 or above installed, and the Sibelius Scorch plugin.",
- "why": "The Sibelius Scorch plugin is not compatible with Firefox 18 and above, and is crashing whenever loaded on affected versions of Firefox. ",
- "name": "Sibelius Scorch plugin",
- "created": "2013-06-11T13:20:32Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 1,
- "maxVersion": "6.2.0",
- "minVersion": "6.2.0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ]
- }
- ],
- "matchFilename": "Scorch\\.plugin",
- "id": "43ec430a-75ec-6853-f62b-1a54489fea5f",
- "last_modified": 1519390916680
- },
- {
- "schema": 1519390914958,
- "blockID": "p964",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1183369",
- "who": "All users who have these versions of the Java plugin installed.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 8 update 45 (click-to-play), Linux",
- "created": "2015-07-15T10:51:57Z"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "matchName": "Java(\\(TM\\))? Plug-in 11\\.45(\\.[0-9]+)?([^\\d\\._]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "libnpjp2\\.so",
- "id": "c2431673-3478-f1e1-5555-28e2d5377adc",
- "last_modified": 1519390916656
- },
- {
- "schema": 1519390914958,
- "blockID": "p1002",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=974012",
- "who": "All users who have these versions of the plugin installed.",
- "why": "These versions of the Unity Web Player plugin have known vulnerabilities that can put users at risk.",
- "name": "Unity Web Player 5.0 to 5.0.3f1 (click-to-play), Windows",
- "created": "2015-09-09T14:07:27Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "5.0.3f1",
- "minVersion": "5.0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "npUnity3D32\\.dll",
- "id": "48e45eea-fd32-2304-2776-fe75211a69e5",
- "last_modified": 1519390916633
- },
- {
- "schema": 1519390914958,
- "blockID": "p902",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1159917",
- "who": "All users who have these versions of the plugin installed in Firefox.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 7 update 45 to 78 (click-to-play), Mac OS X",
- "created": "2015-05-19T09:00:27Z"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "Java 7 Update 78",
- "minVersion": "Java 7 Update 45",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "JavaAppletPlugin\\.plugin",
- "id": "72de1aa2-6afe-2f5b-a93e-baa4c8c4578d",
- "last_modified": 1519390916609
- },
- {
- "schema": 1519390914958,
- "blockID": "p154",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=850744",
- "who": "All Firefox users who have this plugin installed.",
- "why": "This plugin is outdated and is potentially insecure. Affected users should go to <a href=\"http://www.mozilla.com/plugincheck/\">the plugin check page</a> and update to the latest version.",
- "name": "Silverlight 5.0 to 5.1.20124.*",
- "created": "2012-10-05T10:35:55Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "5.1.20124.9999",
- "minVersion": "5.0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "npctrl\\.dll",
- "id": "64b50946-53f8-182d-a239-bd585b0e0b0e",
- "last_modified": 1519390916585
- },
- {
- "schema": 1519390914958,
- "blockID": "p1247",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1286972",
- "who": "All users who have this plugin installed.",
- "why": "Old versions of the Adobe Reader plugin have known vulnerabilities. All users are strongly recommended to check for updates on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Adobe Reader (Classic) 15.006.30174",
- "created": "2016-07-21T16:21:52Z"
- },
- "enabled": true,
- "infoURL": "https://get.adobe.com/reader",
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "15.006.30174",
- "minVersion": "15.006.30174",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "(nppdf32\\.dll)|(AdobePDFViewerNPAPI\\.plugin)",
- "id": "eba24802-0c93-b8d4-ca2d-c9c194c7462b",
- "last_modified": 1519390916562
- },
- {
- "schema": 1519242099615,
- "blockID": "p31",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=449062",
- "who": "All users of MyWebSearch for all Mozilla applications.",
- "why": "This plugin causes a high volume of Firefox crashes.",
- "name": "MyWebSearch",
- "created": "2011-03-31T16:28:26Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "maxVersion": "*",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ]
- }
- ],
- "matchFilename": "NPMySrch.dll",
- "id": "2b2b85e9-4f64-9894-e3fa-3c05ead892b3",
- "last_modified": 1519390914951
- },
- {
- "schema": 1519242099615,
- "blockID": "p572",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=992976",
- "who": "All Firefox users who have this plugin installed. Updated versions can be found <a href=\"https://www.cuminas.jp/en/downloads/download/?pid=1\">on this site</a>.",
- "why": "Versions 6.1.4.27993 and earlier of this plugin are known to have security vulnerabilities.",
- "name": "DjVu Plugin Viewer 6.1.4.27993 and earlier (Windows)",
- "created": "2014-04-08T14:42:05Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "6.1.4.27993",
- "minVersion": "0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "npdjvu\\.dll",
- "id": "8a416fb1-29bf-ace9-02de-605d805b6e79",
- "last_modified": 1519390914928
- },
- {
- "schema": 1519242099615,
- "blockID": "p592",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=980355",
- "who": "All Firefox users who have installed a version of the Cisco Web Communicator plugin lower than 3.0.6.",
- "why": "Versions lower than 3.0.6 of the Cisco Web Communicator plugin are known to have security issues and should not be used. All users should update to version 3.0.6 or later. <a href=\"https://developer.cisco.com/site/collaboration/jabber/websdk/develop-and-test/voice-and-video/troubleshooting/#plugin_vulnerabilities_user\">Find updates here.</a>",
- "name": "Cisco Web Communicator < 3.0.6 (Mac OS X)",
- "created": "2014-06-11T16:48:48Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "3.0.5.99999999999999",
- "minVersion": "0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "CiscoWebCommunicator\\.plugin",
- "id": "1f9f9b90-e733-3929-821f-1b78a8698747",
- "last_modified": 1519390914905
- },
- {
- "schema": 1519242099615,
- "blockID": "p912",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1159917",
- "who": "All users who have these versions of the plugin installed in Firefox.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 8 update 44 and lower (click-to-play), Linux",
- "created": "2015-05-19T09:05:55Z"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "matchName": "Java(\\(TM\\))? Plug-in 11\\.(\\d|[1-3]\\d|4[0-4])(\\.[0-9]+)?([^\\d\\._]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "libnpjp2\\.so",
- "id": "f0a40537-9a13-1b4b-60e5-b9121835c1ca",
- "last_modified": 1519390914882
- },
- {
- "schema": 1519242099615,
- "blockID": "p908",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1159917",
- "who": "All users who have these versions of the plugin installed in Firefox.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 8 update 44 and lower (click-to-play), Windows",
- "created": "2015-05-19T09:03:44Z"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "matchName": "Java\\(TM\\) Platform SE 8( U([1-3]?\\d|4[0-4]))?(\\s[^\\d\\._U]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "npjp2\\.dll",
- "id": "79e165b4-599b-433d-d618-146f0c121ead",
- "last_modified": 1519390914856
- },
- {
- "schema": 1519242099615,
- "blockID": "p1146",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1259458",
- "who": "All users who have these versions of the Java plugin installed.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 8 update 64 to 76 (click-to-play), Linux",
- "created": "2016-03-31T16:19:31Z"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "matchName": "Java(\\(TM\\))? Plug-in 11\\.(6[4-9]|7[0-6])(\\.[0-9]+)?([^\\d\\._]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "libnpjp2\\.so",
- "id": "bc99ed93-b527-12e2-c6e6-c61668a2e7d0",
- "last_modified": 1519390914833
- },
- {
- "schema": 1519242099615,
- "blockID": "p958",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1183369",
- "who": "All users who have these versions of the Java plugin installed.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 7 update 79 to 80 (click-to-play), Windows",
- "created": "2015-07-15T10:49:33Z"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "matchName": "Java\\(TM\\) Platform SE 7 U(79|80)(\\s[^\\d\\._U]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "npjp2\\.dll",
- "id": "2cfa79ef-a2ab-d868-467d-d182242136a5",
- "last_modified": 1519390914810
- },
- {
- "schema": 1519242099615,
- "blockID": "p156",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=797378",
- "who": "All Firefox users who have this plugin installed.",
- "why": "This plugin is outdated and is potentially insecure. Affected users should go to <a href=\"http://www.mozilla.com/plugincheck/\">the plugin check page</a> and update to the latest version.",
- "name": "Adobe Reader 9.5.1 and lower",
- "created": "2012-10-05T10:38:46Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "9.5.1",
- "minVersion": "0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "nppdf32\\.dll",
- "id": "0dce3611-19e7-e8e4-5b5c-13593230f83c",
- "last_modified": 1519390914787
- },
- {
- "schema": 1519242099615,
- "blockID": "p574",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=992976",
- "who": "All Firefox users who have this plugin installed. Updated versions can be found <a href=\"https://www.cuminas.jp/en/downloads/download/?pid=1\">on this site</a>.",
- "why": "Versions 6.1.1 and earlier of this plugin are known to have security vulnerabilities.\r\n",
- "name": "DjVu Plugin Viewer 6.1.1 and earlier (Mac OS)",
- "created": "2014-04-08T14:43:54Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "6.1.1",
- "minVersion": "0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "NPDjVu\\.plugin",
- "id": "c841472f-f976-c49a-169e-0c751012c3b1",
- "last_modified": 1519390914764
- },
- {
- "schema": 1519242099615,
- "blockID": "p556",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=974012",
- "who": "All Firefox users who have these versions of the plugin installed.",
- "why": "Current versions of the Unity Web Player plugin have known vulnerabilities that can put users at risk.",
- "name": "Unity Web Player 4.6.6f1 and lower (click-to-play), Windows",
- "created": "2014-02-25T08:29:41Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "4.6.6f1",
- "minVersion": "0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "npUnity3D32\\.dll",
- "id": "b90eb83c-1314-5b27-687b-98d8115b6106",
- "last_modified": 1519390914741
- },
- {
- "schema": 1519242099615,
- "blockID": "p956",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1183369",
- "who": "All users who have these versions of the Java plugin installed.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 8 update 45 (click-to-play), Mac OS X",
- "created": "2015-07-15T10:48:44Z"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "Java 8 Update 45",
- "minVersion": "Java 8 Update 45",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "JavaAppletPlugin\\.plugin",
- "id": "111881f9-a5bd-4919-4bab-9d7581d959d3",
- "last_modified": 1519390914718
- },
- {
- "schema": 1519242099615,
- "blockID": "p80",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=739955",
- "who": "All Firefox users who have installed the Java plugin, JRE versions below 1.6.0_31 or between 1.7.0 and 1.7.0_2.",
- "why": "Outdated versions of the Java plugin are vulnerable to an actively exploited security issue. All users are strongly encouraged to <a href=\"http://java.com/inc/BrowserRedirect1.jsp\">update their Java plugin</a>. For more information, please <a href=\"http://blog.mozilla.com/addons/2012/04/02/blocking-java/\">read our blog post</a> or <a href=\"http://www.oracle.com/technetwork/topics/security/javacpufeb2012-366318.html\">Oracle's Advisory</a>.",
- "name": "Java Plugin",
- "created": "2012-04-02T15:18:50Z"
- },
- "enabled": true,
- "matchName": "\\(TM\\)",
- "versionRange": [
- {
- "severity": 1,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ]
- }
- ],
- "matchFilename": "(npjp2\\.dll)|(libnpjp2\\.so)",
- "matchDescription": "[^\\d\\._]((0(\\.\\d+(\\.\\d+([_\\.]\\d+)?)?)?)|(1\\.(([0-5](\\.\\d+([_\\.]\\d+)?)?)|(6(\\.0([_\\.](0?\\d|1\\d|2\\d|30))?)?)|(7(\\.0([_\\.][0-2])?)?))))([^\\d\\._]|$)",
- "id": "34deed93-d9d9-81b4-7983-0594fb829ae7",
- "last_modified": 1519390914684
- },
- {
- "schema": 1519242099615,
- "blockID": "p1052",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=829111",
- "who": "All users who have this version of the plugin installed.",
- "why": "The Java plugin is causing significant security problems. All users are strongly recommended to keep the plugin disabled unless necessary.",
- "name": "Java Plugin 7 update 11 (click-to-play), Mac OS X",
- "created": "2015-11-06T13:30:02Z"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "Java 7 Update 11",
- "minVersion": "Java 7 Update 11",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "JavaAppletPlugin\\.plugin",
- "id": "c62a171f-7564-734f-0310-bae88c3baf85",
- "last_modified": 1519390914657
- },
- {
- "schema": 1519242099615,
- "blockID": "p910",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1159917",
- "who": "All users who have these versions of the plugin installed in Firefox.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 7 update 45 to 78 (click-to-play), Linux",
- "created": "2015-05-19T09:04:46Z"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "matchName": "Java(\\(TM\\))? Plug-in 10\\.(4[5-9]|(5|6)\\d|7[0-8])(\\.[0-9]+)?([^\\d\\._]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "libnpjp2\\.so",
- "id": "f322be12-1b08-0d57-ed51-f7a6d6ec2c17",
- "last_modified": 1519390914634
- },
- {
- "schema": 1519242099615,
- "blockID": "p428",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=636633",
- "who": "All Firefox users who have this plugin installed.",
- "why": "The Java Deployment Toolkit plugin is known to be insecure and is unnecessary in most cases. Users should keep it disabled unless strictly necessary.",
- "name": "Java Deployment Toolkit (click-to-play)",
- "created": "2013-07-18T15:39:12Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 2
- }
- ],
- "matchFilename": "np[dD]eployJava1\\.dll",
- "id": "d30a5b90-b84a-dfec-6147-fc04700a0d8b",
- "last_modified": 1519390914610
- },
- {
- "schema": 1519242099615,
- "blockID": "p594",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=980355",
- "who": "All Firefox users who have installed a version of the Cisco Web Communicator plugin lower than 3.0.6.",
- "why": "Versions lower than 3.0.6 of the Cisco Web Communicator plugin are known to have security issues and should not be used. All users should update to version 3.0.6 or later. <a href=\"https://developer.cisco.com/site/collaboration/jabber/websdk/develop-and-test/voice-and-video/troubleshooting/#plugin_vulnerabilities_user\">Find updates here.</a>",
- "name": "Cisco Web Communicator < 3.0.6 (Windows)",
- "created": "2014-06-11T16:49:00Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "3.0.5.99999999999999",
- "minVersion": "0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "npCiscoWebCommunicator\\.dll",
- "id": "f11f91d6-f65e-8a05-310b-ad20494a868a",
- "last_modified": 1519390914588
- },
- {
- "schema": 1519242099615,
- "blockID": "p1064",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1217932",
- "who": "All users who have these versions of the Java plugin installed.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 8 update 46 to 64 (click-to-play), Linux",
- "created": "2015-12-02T12:42:34Z"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "matchName": "Java(\\(TM\\))? Plug-in 11\\.(4[6-9]|5\\d|6[0-4])(\\.[0-9]+)?([^\\d\\._]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "libnpjp2\\.so",
- "id": "d5cb1745-d144-5375-f3ff-cd603d4c2cee",
- "last_modified": 1519390914565
- },
- {
- "schema": 1519242099615,
- "blockID": "p906",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1159917",
- "who": "All users who have these versions of the plugin installed in Firefox.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 7 update 45 to 78 (click-to-play), Windows",
- "created": "2015-05-19T09:02:45Z"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "matchName": "Java\\(TM\\) Platform SE 7 U(4[5-9]|(5|6)\\d|7[0-8])(\\s[^\\d\\._U]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "npjp2\\.dll",
- "id": "f254e5bc-12c7-7954-fe6b-8f1fdab0ae88",
- "last_modified": 1519390914542
- },
- {
- "schema": 1519242099615,
- "blockID": "p240",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=821972",
- "who": "All Firefox users who have versions of the DivX Web Player plugin lower than 1.4.",
- "why": "Old versions of the DivX Web Player plugin are causing significant stability problems on Firefox 18 and above, on Mac OS X. All users should update their DivX software to the latest available version, available at <a href=\"http://www.divx.com\">divx.com</a>.",
- "name": "DivX Web Player 1.4 (DivX 7) and below",
- "created": "2012-12-19T13:03:27Z"
- },
- "enabled": true,
- "versionRange": [
- {
- "severity": 1,
- "maxVersion": "1.4",
- "minVersion": "0",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ]
- }
- ],
- "matchFilename": "DivXBrowserPlugin\\.plugin",
- "id": "d7f644bb-61aa-4594-f9fc-8dba7d9f3306",
- "last_modified": 1519390914518
- },
- {
- "schema": 1519242099615,
- "blockID": "p962",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1183369",
- "who": "All users who have these versions of the Java plugin installed.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 7 update 79 to 80 (click-to-play), Linux",
- "created": "2015-07-15T10:51:12Z"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "matchName": "Java(\\(TM\\))? Plug-in 10\\.(79|80)(\\.[0-9]+)?([^\\d\\._]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "libnpjp2\\.so",
- "id": "7120e3c2-b293-65b5-2498-6451eab1e2c5",
- "last_modified": 1519390914495
- },
- {
- "schema": 1519242099615,
- "blockID": "p1062",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1217932",
- "who": "All users who have these versions of the Java plugin installed.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 8 update 46 to 64 (click-to-play), Windows",
- "created": "2015-12-02T12:40:28Z"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "matchName": "Java\\(TM\\) Platform SE 8 U(4[6-9]|5\\d|6[0-4])(\\s[^\\d\\._U]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "npjp2\\.dll",
- "id": "a20c77af-721b-833b-8fa8-49091d1c69d4",
- "last_modified": 1519390914472
- },
- {
- "schema": 1519242099615,
- "blockID": "p1143",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1259458",
- "who": "All users who have these versions of the Java plugin installed.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 7 update 91 to 97 (click-to-play), Windows",
- "created": "2016-03-31T16:17:32Z"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "matchName": "Java\\(TM\\) Platform SE 7 U(9[1-7])(\\s[^\\d\\._U]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "npjp2\\.dll",
- "id": "be53f658-e719-fa77-e7fe-6bd6086f888e",
- "last_modified": 1519390914448
- },
- {
- "schema": 1519242099615,
- "blockID": "p954",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1183369",
- "who": "All users who have these versions of the Java plugin installed.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 7 update 79 to 80 (click-to-play), Mac OS X",
- "created": "2015-07-15T10:47:55Z"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "Java 7 Update 80",
- "minVersion": "Java 7 Update 79",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "JavaAppletPlugin\\.plugin",
- "id": "9b6830b4-a4b0-ee63-ee21-e0bd6ba0d6fe",
- "last_modified": 1519390914424
- },
- {
- "schema": 1519242099615,
- "blockID": "p1246",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1286972",
- "who": "All users who have this plugin installed.",
- "why": "Old versions of the Adobe Reader plugin have known vulnerabilities. All users are strongly recommended to check for updates on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Adobe Reader 10.1.6 to 11.0.16",
- "created": "2016-07-20T19:19:58Z"
- },
- "enabled": true,
- "infoURL": "https://get.adobe.com/reader",
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "11.0.16 ",
- "minVersion": "10.1.6",
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "(nppdf32\\.dll)|(AdobePDFViewerNPAPI\\.plugin)",
- "id": "4e29bd83-d074-bd40-f238-5ea38ff0d8d0",
- "last_modified": 1519390914400
- },
- {
- "schema": 1519242099615,
- "blockID": "p1063",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1217932",
- "who": "All users who have these versions of the Java plugin installed.",
- "why": "Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check page</a>.",
- "name": "Java Plugin 7 update 81 to 90 (click-to-play), Linux",
- "created": "2015-12-02T12:41:34Z"
- },
- "enabled": true,
- "infoURL": "https://java.com/",
- "matchName": "Java(\\(TM\\))? Plug-in 10\\.(8[1-9]|90)(\\.[0-9]+)?([^\\d\\._]|$)",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "57.0.*",
- "minVersion": "0"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "libnpjp2\\.so",
- "id": "b6b9c6b9-b8c4-66a9-ed07-125b32e7a5ef",
- "last_modified": 1519390914376
- },
- {
- "schema": 1480349144394,
- "blockID": "p1055",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1218880",
- "who": "All users who have these versions of this plugin installed.",
- "why": "Versions 12.2.0.162 and earlier of this plugin are affected by a critical security vulnerability that puts users at risk.",
- "name": "Shockwave for Director 12.2.0.162 and earlier, Mac OS X (click-to-play)",
- "created": "2015-11-13T14:17:24Z"
- },
- "enabled": true,
- "infoURL": "https://get.adobe.com/shockwave/",
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "12.2.0.162",
- "minVersion": "0",
- "targetApplication": [],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "DirectorShockwave\\.plugin",
- "id": "da3808c0-b460-e177-1c78-0496b3671480",
- "last_modified": 1480349148897
- },
- {
- "schema": 1480349144394,
- "blockID": "p1054",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=1218880",
- "who": "All users who have these versions of this plugin installed.",
- "why": "Versions 12.2.0.162 and earlier of this plugin are affected by a critical security vulnerability that puts users at risk.",
- "name": "Shockwave for Director 12.2.0.162 and earlier, Windows (click-to-play)",
- "created": "2015-11-13T14:15:12Z"
- },
- "enabled": true,
- "infoURL": "https://get.adobe.com/shockwave/",
- "versionRange": [
- {
- "severity": 0,
- "maxVersion": "12.2.0.162",
- "minVersion": "0",
- "targetApplication": [],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "np32dsw_[0-9]+\\.dll",
- "id": "5cc4739b-ba83-7a19-4d85-c5362f5e0ccd",
- "last_modified": 1480349148638
- },
- {
- "schema": 1480349144394,
- "blockID": "p330",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=854550",
- "who": "All Firefox users who have these versions on the Abode Flash plugin installed.",
- "why": "Old versions of the Adobe Flash plugin are potentially insecure and unstable. All users are recommended to visit our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check</a> page and check for updates.",
- "name": "Adobe Flash for Linux 10.3.182.* and lower (click-to-play)",
- "created": "2013-03-26T09:43:25Z"
- },
- "enabled": true,
- "infoURL": "https://get.adobe.com/flashplayer/",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "*",
- "minVersion": "19.0a1"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "*",
- "minVersion": "2.16a1"
- },
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "17.0.*",
- "minVersion": "17.0.4"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "libflashplayer\\.so",
- "matchDescription": "^Shockwave Flash (([1-9]\\.[0-9]+)|(10\\.([0-2]|(3 r(([0-9][0-9]?)|1(([0-7][0-9])|8[0-2]))))))( |$)",
- "id": "abaff0eb-314f-e882-b96c-5c5a4755688f",
- "last_modified": 1480349147797
- },
- {
- "schema": 1480349144394,
- "blockID": "p332",
- "details": {
- "bug": "https://bugzilla.mozilla.org/show_bug.cgi?id=854550",
- "who": "All Firefox users who have these versions of the Adobe Flash Player plugin installed.",
- "why": "Old versions of the Adobe Flash Player plugin are potentially insecure and unstable. All users are recommended to visit our <a href=\"http://www.mozilla.com/plugincheck/\">plugin check</a> to check for updates.",
- "name": "Adobe Flash for Linux 11.0 to 11.1.* (click-to-play)",
- "created": "2013-03-26T09:46:14Z"
- },
- "enabled": true,
- "infoURL": "https://get.adobe.com/flashplayer/",
- "versionRange": [
- {
- "severity": 0,
- "targetApplication": [
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "*",
- "minVersion": "19.0a1"
- },
- {
- "guid": "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}",
- "maxVersion": "*",
- "minVersion": "2.16a1"
- },
- {
- "guid": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}",
- "maxVersion": "17.0.*",
- "minVersion": "17.0.4"
- }
- ],
- "vulnerabilityStatus": 1
- }
- ],
- "matchFilename": "libflashplayer\\.so",
- "matchDescription": "^Shockwave Flash 11.(0|1) r[0-9]{1,3}$",
- "id": "38797744-cb92-1a49-4c81-2a900691fdba",
- "last_modified": 1480349146047
- }
- ],
- "timestamp": 1603126502200
-}
diff --git a/services/settings/dumps/main/cookie-banner-rules-list.json b/services/settings/dumps/main/cookie-banner-rules-list.json
index 5d1c71818f..e1757708ea 100644
--- a/services/settings/dumps/main/cookie-banner-rules-list.json
+++ b/services/settings/dumps/main/cookie-banner-rules-list.json
@@ -2,143 +2,912 @@
"data": [
{
"click": {
- "optIn": "#c-bns #c-p-bn",
- "optOut": "#c-bns button.grey",
- "presence": "#cm"
+ "optIn": "#shopify-pc__banner__btn-accept",
+ "optOut": "#shopify-pc__banner__btn-decline",
+ "presence": "#shopify-pc__banner"
},
- "schema": 1711039008141,
+ "schema": 1714608006998,
+ "domains": [
+ "decathlon.com.sa",
+ "decathlon.gp",
+ "decathlon.mq"
+ ],
+ "id": "1da8a6ad-f894-400e-8b3d-2a281015b86d",
+ "last_modified": 1714811640008
+ },
+ {
+ "click": {
+ "optIn": "#ppms_cm_agree-to-all",
+ "optOut": "#ppms_cm_reject-all",
+ "presence": "#ppms_cm_popup_overlay"
+ },
+ "schema": 1714608006998,
+ "cookies": {},
+ "domains": [
+ "credit-agricole.pl"
+ ],
+ "id": "5050fb9c-fd8a-44c2-817c-23d95f494190",
+ "last_modified": 1714811640004
+ },
+ {
+ "schema": 1714608006998,
"cookies": {
"optOut": [
{
- "name": "cc_cookie",
- "value": "{\"level\":[\"necessary\"],\"revision\":0,\"data\":null,\"rfc_cookie\":false}"
+ "name": "cookie_manager_cookie_marketing_enabled",
+ "value": "false"
+ },
+ {
+ "name": "cookie_manager_cookie_necessary_enabled",
+ "value": "true"
+ },
+ {
+ "name": "cookie_manager_cookie_statistic_enabled",
+ "value": "false"
+ },
+ {
+ "name": "cookie_manager_policy_accepted",
+ "value": "true"
}
]
},
"domains": [
- "yazio.com"
+ "credit-agricole.it"
],
- "id": "B8CB497B-9E12-49A7-BA2A-B7842CAEDFC3",
- "last_modified": 1711550955136
+ "id": "1944a25e-6f16-434d-8c59-0493ba587fe7",
+ "last_modified": 1714811640000
},
{
"click": {
- "optIn": "#rgpd-btn-index-accept",
- "optOut": "#rgpd-btn-index-continue",
- "presence": "#modalTpl"
+ "optIn": "#popin_tc_privacy_button_2",
+ "optOut": "#popin_tc_privacy_button_3",
+ "presence": "#tc-privacy-wrapper"
+ },
+ "schema": 1714608006998,
+ "cookies": {
+ "optOut": [
+ {
+ "name": "TC_PRIVACY",
+ "value": "1%40006%7C86%7C3315%40%40%402524608000000%2C2524608000000%2C2524608000000%40"
+ }
+ ]
},
- "schema": 1711039008141,
"domains": [
- "rueducommerce.fr"
+ "credit-agricole.fr"
],
- "id": "BC3582FC-C5FA-4743-85E8-7E46F67629AB",
- "last_modified": 1711550955133
+ "id": "f643be2a-b805-4ab0-9e67-929419e5c7c7",
+ "last_modified": 1714811639996
},
{
"click": {
- "optIn": "#cookieConsentAcceptButton",
- "optOut": "#cookieConsentRefuseButton",
- "presence": "#cookieConsentBanner"
+ "optIn": ".allow",
+ "optOut": ".deny",
+ "presence": "#tarteaucitronWelcome"
+ },
+ "schema": 1714608006998,
+ "cookies": {
+ "optOut": [
+ {
+ "name": "cookie_manager",
+ "value": "!atinternet=false!recaptcha=false!addthis=false!twitter=false!ezplatform=true!youtube=false!hidebanner=true"
+ }
+ ]
},
- "schema": 1711039008141,
"domains": [
- "ldlc.com",
- "ldlc.pro",
- "materiel.net"
+ "credit-agricole.de"
],
- "id": "4A767353-98B9-4284-857A-D98DC3ECDFE1",
- "last_modified": 1711550955129
+ "id": "1e12c729-34ff-4aa5-9317-d19309affd2c",
+ "last_modified": 1714811639992
},
{
"click": {
- "optIn": "#header_tc_privacy_button_3",
- "optOut": "#header_tc_privacy_button",
- "presence": "#tc-privacy-wrapper"
+ "optIn": ".accept",
+ "optOut": ".deny",
+ "presence": "#tarteaucitronAlertBig"
+ },
+ "schema": 1714608006998,
+ "cookies": {
+ "optOut": [
+ {
+ "name": "cookie_manager",
+ "value": "!atinternet=false!recaptcha=false!addthis=false!linkedin=false!twitter=false!ezplatform=true!youtube=false!hidebanner=true"
+ }
+ ]
},
- "schema": 1711039008141,
"domains": [
- "ovh.com",
- "ovhcloud.com",
- "ovhtelecom.fr"
+ "credit-agricole.com"
],
- "id": "17B1F270-F499-451C-AED5-5C737106F003",
- "last_modified": 1711550955125
+ "id": "1f0a3536-5b09-426a-b6e6-b902c556cb8a",
+ "last_modified": 1714811639989
+ },
+ {
+ "schema": 1714608006998,
+ "cookies": {
+ "optIn": [
+ {
+ "name": "_cookies_v2",
+ "value": "1"
+ }
+ ]
+ },
+ "domains": [
+ "blablacar.com.br",
+ "blablacar.com.tr",
+ "blablacar.com.ua",
+ "blablacar.in",
+ "blablacar.mx",
+ "blablacar.rs",
+ "blablacar.ru"
+ ],
+ "id": "2f4e1235-a360-46ca-bf26-8b09645ee3d5",
+ "last_modified": 1714811639986
},
{
"click": {
- "optIn": "#popin_tc_privacy_button_2",
- "optOut": "#optout_link",
- "presence": "#tc-privacy-wrapper"
+ "optIn": ".allowAll",
+ "optOut": ".denyAll",
+ "presence": ".cookiesjsr-banner"
+ },
+ "schema": 1714608006998,
+ "cookies": {
+ "optOut": [
+ {
+ "name": "cookiesjsr",
+ "value": "%7B%22functional%22%3Afalse%2C%22recaptcha%22%3Afalse%2C%22video%22%3Afalse%7D"
+ }
+ ]
},
- "schema": 1711039008141,
"domains": [
- "laredoute.fr"
+ "mediamarktsaturn.com"
],
- "id": "9022E9FE-2DC2-48DD-BE4A-EFA8A2C81E2B",
- "last_modified": 1711550955121
+ "id": "6f85da65-e44e-4d58-b87c-3e31861de3e0",
+ "last_modified": 1714811639982
},
{
"click": {
- "optIn": "#popin_tc_privacy_button_2",
- "optOut": "#popin_tc_privacy_button",
- "presence": "#tc-privacy-wrapper"
+ "optIn": "#pwa-consent-layer-accept-all-button",
+ "optOut": "[data-test=\"pwa-consent-layer-deny-all\"]",
+ "presence": "[data-test=\"mms-privacy-layer\"]"
+ },
+ "schema": 1714608006998,
+ "cookies": {
+ "optOut": [
+ {
+ "name": "pwaconsent",
+ "value": "v:1.0~required:1&clf:1,cli:1,gfb:1,gtm:1,jot:1,ocx:1|comfort:0&baz:0,cne:0,con:0,fix:0,gfa:0,goa:0,gom:0,grc:0,grv:0,inm:0,lib:0,lob:0,opt:0,orc:0,ore:0,pcl:0,sen:0,sis:0,spe:0,sst:0,swo:0,twi:0,usw:0,usz:0,yte:0|marketing:0&cri:0,eam:0,fab:0,fbc:0,fcm:0,gac:0,gad:0,gcl:0,gcm:0,gdv:0,gos:0,gse:0,msb:0,omp:0,pin:0,ttd:0,twt:0|"
+ }
+ ]
},
- "schema": 1711039008141,
"domains": [
- "quechoisir.org",
- "quechoisirensemble.fr"
+ "mediamarkt.at",
+ "mediamarkt.be",
+ "mediamarkt.de",
+ "mediamarkt.es",
+ "mediamarkt.nl",
+ "mediamarkt.pl",
+ "saturn.de"
],
- "id": "5D50AA8D-D00E-4A51-8D32-64965A0575CA",
- "last_modified": 1711550955117
+ "id": "2a2b8102-d276-4ece-afbd-005e8e917d18",
+ "last_modified": 1714811639978
},
{
"click": {
- "optIn": "button#footer_tc_privacy_button_3",
- "optOut": "button#footer_tc_privacy_button_2",
- "presence": "div#tc-privacy-wrapper"
+ "optIn": "#acceptAllQuick",
+ "optOut": "#rejectAllQuick",
+ "presence": "#gdpr-component",
+ "runContext": "child"
},
- "schema": 1711039008141,
+ "schema": 1714608006998,
+ "cookies": {
+ "optOut": [
+ {
+ "name": "cocos",
+ "value": "%7B%22funkcni%22%3Afalse%2C%22statisticke%22%3Afalse%2C%22reklamni%22%3Afalse%7D"
+ },
+ {
+ "name": "cookieConsent",
+ "value": "%7B%22preferences%22%3Afalse%2C%22statistics%22%3Afalse%2C%22marketing%22%3Afalse%7D"
+ },
+ {
+ "name": "corec",
+ "value": "%7B%22youtube%22%3Afalse%2C%22rtbhouse%22%3Afalse%2C%22google_recaptcha%22%3Atrue%2C%22foxentry_funkcni%22%3Afalse%2C%22tmobile_nezbytne%22%3Atrue%2C%22linkedin%22%3Afalse%2C%22medallia%22%3Afalse%2C%22tmobile_funkcni%22%3Afalse%2C%22tealium%22%3Afalse%2C%22adform%22%3Afalse%2C%22xaxis%22%3Afalse%2C%22twitter%22%3Afalse%2C%22appnexus%22%3Afalse%2C%22gemius%22%3Afalse%2C%22exponea%22%3Afalse%2C%22hotjar%22%3Afalse%2C%22tmobile_reklamni%22%3Afalse%2C%22facebook%22%3Afalse%2C%22inspectlet%22%3Afalse%2C%22cloudflare%22%3Afalse%2C%22google_ads%22%3Afalse%2C%22bing%22%3Afalse%2C%22foxentry_reklamni%22%3Afalse%2C%22clarity%22%3Afalse%2C%22seznam%22%3Afalse%2C%22tmobile_statisticke%22%3Afalse%2C%22google_analytics%22%3Afalse%2C%22rejectAllDate%22%3A%222024-03-28%22%7D"
+ }
+ ]
+ },
+ "domains": [
+ "t-mobile.cz"
+ ],
+ "id": "c7f03541-c93e-4939-a640-7c686d595986",
+ "last_modified": 1714811639975
+ },
+ {
+ "schema": 1714780808679,
+ "cookies": {
+ "optOut": [
+ {
+ "name": "orange_cookieconsent_dismissed",
+ "value": "no"
+ }
+ ]
+ },
+ "domains": [
+ "orange.sn"
+ ],
+ "id": "24350444-6b01-46a5-b8a4-99f4d417f08f",
+ "last_modified": 1714811639972
+ },
+ {
+ "click": {
+ "optIn": ".js-consent-all-submit",
+ "optOut": ".js-consent-bypass-button",
+ "presence": ".fancybox-type-html"
+ },
+ "schema": 1714780808679,
+ "cookies": {
+ "optOut": [
+ {
+ "name": "consent",
+ "value": "bypass"
+ }
+ ]
+ },
+ "domains": [
+ "orange.jobs"
+ ],
+ "id": "2e026e27-1356-40c8-a25c-24fbe4bf8af4",
+ "last_modified": 1714811639968
+ },
+ {
+ "click": {
+ "optIn": "#consent_optin",
+ "optOut": "#consent_optout",
+ "presence": "#__tealiumGDPRecModal"
+ },
+ "schema": 1714780808679,
+ "cookies": {
+ "optOut": [
+ {
+ "name": "CONSENTMGR",
+ "value": "c1:0%7Cc2:0%7Cc3:0%7Cc4:0%7Cc5:0%7Cc6:0%7Cc7:0%7Cc8:0%7Cc9:0%7Cc10:0%7Cc11:0%7Cc12:0%7Cc13:0%7Cc14:0%7Cc15:0%7Cts:2524608000000%7Cconsent:false"
+ }
+ ]
+ },
+ "domains": [
+ "orange.es"
+ ],
+ "id": "1626f70d-7761-467c-b3ed-56e324786902",
+ "last_modified": 1714811639965
+ },
+ {
+ "click": {
+ "optIn": "#consent_prompt_submit",
+ "presence": "#__tealiumGDPRecModal"
+ },
+ "schema": 1714780808679,
+ "cookies": {
+ "optOut": [
+ {
+ "name": "CONSENTMGR",
+ "value": "c1:0%7Cc6:0%7Cc9:0%7Cts:2524608000000%7Cconsent:false"
+ }
+ ]
+ },
+ "domains": [
+ "orange.be"
+ ],
+ "id": "2172b091-8b03-4f66-b20c-08c14e21c0aa",
+ "last_modified": 1714811639961
+ },
+ {
+ "click": {
+ "optIn": ".cookie-agree",
+ "optOut": ".no-agree > a",
+ "presence": "#modal-cookie-info"
+ },
+ "schema": 1714780808679,
+ "cookies": {
+ "optOut": [
+ {
+ "name": "site_cookie_info_i",
+ "value": "2"
+ }
+ ]
+ },
+ "domains": [
+ "intersport.mk"
+ ],
+ "id": "6fdb72ae-429c-49ad-87d3-4ff2675e5d29",
+ "last_modified": 1714811639958
+ },
+ {
+ "click": {
+ "optIn": "#acceptAllCookiesBtn",
+ "optOut": "#acceptNecessaryCookiesBtn",
+ "presence": "#cookieConsentModal"
+ },
+ "schema": 1714780808679,
+ "cookies": {
+ "optOut": [
+ {
+ "name": "ConsentV2",
+ "value": "[%22necessary%22]"
+ }
+ ]
+ },
+ "domains": [
+ "intersport.fo"
+ ],
+ "id": "1450d6da-220a-42dd-b523-1771343cbd90",
+ "last_modified": 1714811639955
+ },
+ {
+ "click": {
+ "optIn": ".js--cookie-banner-accept",
+ "optOut": ".js--cookie-banner-save-required-settings",
+ "presence": ".cookie-banner"
+ },
+ "schema": 1714780808679,
+ "domains": [
+ "intersport.de"
+ ],
+ "id": "de176046-8be7-4876-8332-0559dfd0b70b",
+ "last_modified": 1714811639951
+ },
+ {
+ "click": {
+ "optIn": ".js-accept",
+ "optOut": ".js-decline",
+ "presence": "#fancybox-container-1"
+ },
+ "schema": 1714780808679,
+ "cookies": {
+ "optOut": [
+ {
+ "name": "ConsentChecked",
+ "value": "{\"userHasSetCookies\":true,\"functionalityCookies\":false,\"statisticCookies\":false,\"marketingCookies\":false}"
+ }
+ ]
+ },
+ "domains": [
+ "intersport.bg",
+ "intersport.com.cy",
+ "intersport.gr",
+ "intersport.ro"
+ ],
+ "id": "a8a9ddf7-1cf3-4252-b4f6-6d396e4c7ba7",
+ "last_modified": 1714811639947
+ },
+ {
+ "click": {
+ "optIn": "#CybotCookiebotDialogBodyButtonAccept",
+ "optOut": "#CybotCookiebotDialogBodyButtonDecline",
+ "presence": "#CybotCookiebotDialog"
+ },
+ "schema": 1714780808679,
+ "cookies": {
+ "optOut": [
+ {
+ "name": "CookieConsent",
+ "value": "{necessary:true%2Cpreferences:false%2Cstatistics:false%2Cmarketing:false%2Cmethod:%27explicit%27%2Cver:1%2Cutc:2524608000000%2Cregion:%27zz%27}"
+ }
+ ]
+ },
+ "domains": [
+ "intersport.be"
+ ],
+ "id": "9c762187-68bd-4d9b-b16c-014236082550",
+ "last_modified": 1714811639944
+ },
+ {
+ "click": {
+ "optIn": "#acceptAllQuick",
+ "optOut": "#rejectAllQuick",
+ "presence": "#gdpr-component"
+ },
+ "schema": 1714608006998,
+ "cookies": {
+ "optOut": [
+ {
+ "name": "cookieConsent",
+ "value": "%7B%22strictlyNecessary%22:true,%22preferences%22:false,%22marketing%22:false,%22statistics%22:false%7D"
+ },
+ {
+ "name": "cookieConsentVersion",
+ "value": "V3"
+ },
+ {
+ "name": "purpose_cookie",
+ "value": "1"
+ },
+ {
+ "name": "receiver_cookie",
+ "value": "14"
+ }
+ ]
+ },
+ "domains": [
+ "telekom.sk"
+ ],
+ "id": "7b4506b2-1c6f-4afc-ab5f-892331cabad3",
+ "last_modified": 1714811639941
+ },
+ {
+ "click": {
+ "optIn": "#cookiesModal #all-cookies-btn",
+ "optOut": "#cookiesModal #required-cookies-btn",
+ "presence": "#cookiesModal"
+ },
+ "schema": 1714608006998,
+ "cookies": {
+ "optOut": [
+ {
+ "name": "cookieConsent",
+ "value": "%7B%22strictlyNecessary%22%3Atrue%2C%22marketing%22%3Afalse%2C%22statistics%22%3Afalse%2C%22preferences%22%3Afalse%7D"
+ },
+ {
+ "name": "gdpr",
+ "value": "0"
+ }
+ ]
+ },
+ "domains": [
+ "telekom.mk"
+ ],
+ "id": "2858c963-0a13-4c5b-b7e8-c3f9b79c5b8d",
+ "last_modified": 1714811639937
+ },
+ {
+ "click": {
+ "optIn": "#consentAcceptAll",
+ "optOut": "#rejectAll",
+ "presence": "#__tealiumGDPRecModal"
+ },
+ "schema": 1714608006998,
+ "cookies": {
+ "optOut": [
+ {
+ "name": "CONSENTMGR",
+ "value": "c1:0%7Cc3:0%7Cc7:0%7Cts:2524608000000%7Cconsent:false"
+ }
+ ]
+ },
+ "domains": [
+ "magentacloud.de",
+ "magentasport.de",
+ "t-systems.com",
+ "t-systems.jobs",
+ "telekom-hauptstadtrepraesentanz.com",
+ "telekom.com",
+ "telekom.de",
+ "telekom.jobs"
+ ],
+ "id": "8907164e-17d8-4d27-b0a3-edda59f53dbe",
+ "last_modified": 1714811639934
+ },
+ {
+ "click": {
+ "optIn": "#modals #accept-all",
+ "optOut": "#modals #decline-all",
+ "presence": "#modals"
+ },
+ "schema": 1714608006998,
+ "cookies": {
+ "optOut": [
+ {
+ "name": "cookies",
+ "value": "%7B%22submitted%22%3A%222050-01-01T00%3A00%3A00Z%22%2C%22consent%22%3A%7B%22statistics%22%3Afalse%2C%22marketing%22%3Afalse%7D%7D"
+ }
+ ]
+ },
+ "domains": [
+ "deutschetelekomitsolutions.sk"
+ ],
+ "id": "2f9c701b-8b1f-4f44-82cc-e79d717e390f",
+ "last_modified": 1714811639930
+ },
+ {
+ "click": {
+ "optIn": "#didomi-notice-agree-button",
+ "presence": "#didomi-notice"
+ },
+ "schema": 1714608006998,
"cookies": {},
"domains": [
- "labanquepostale.fr"
+ "decathlon.si",
+ "t-mobile.pl"
],
- "id": "6c1ebd2b-867a-40a5-8184-0ead733eae69",
- "last_modified": 1711550955113
+ "id": "83ad4c2f-e59a-4295-a342-5db40fb81763",
+ "last_modified": 1714811639927
},
{
"click": {
- "optIn": "button.orejime-Notice-saveButton",
- "optOut": "button.orejime-Notice-declineButton",
- "presence": "div.orejime-Notice"
+ "optIn": ".ch2-allow-all-btn",
+ "optOut": ".ch2-deny-all-btn",
+ "presence": ".ch2-dialog"
},
- "schema": 1711039008141,
+ "schema": 1714608006998,
"domains": [
- "service-public.fr"
+ "cookiehub.com",
+ "semrush.com",
+ "vodafone.is"
],
- "id": "7293dc4c-1d3d-4236-84a6-3c5cb3def55a",
- "last_modified": 1711550955109
+ "id": "305b6c0d-5b66-4b3f-bf0f-fb85db21fe60",
+ "last_modified": 1714811639924
},
{
- "schema": 1711039008141,
+ "click": {
+ "optIn": "#didomi-notice-agree-button",
+ "optOut": "#didomi-notice-x-button",
+ "presence": "#didomi-popup"
+ },
+ "schema": 1714608006998,
+ "cookies": {},
+ "domains": [
+ "decathlon.ee"
+ ],
+ "id": "e4b0998b-a54c-458d-935b-6ec957175711",
+ "last_modified": 1714811639920
+ },
+ {
+ "click": {
+ "optIn": "#didomi-notice-agree-button",
+ "optOut": "#didomi-notice-disagree-button",
+ "presence": "#didomi-popup"
+ },
+ "schema": 1714608006998,
+ "cookies": {},
+ "domains": [
+ "orange-business.com"
+ ],
+ "id": "49719e34-a29a-4604-ae3c-b9835e286473",
+ "last_modified": 1714811639917
+ },
+ {
+ "click": {
+ "optIn": "#didomi-notice-agree-button",
+ "optOut": "#didomi-notice-disagree-button",
+ "presence": "#didomi-popup"
+ },
+ "schema": 1714608006998,
+ "cookies": {},
+ "domains": [
+ "blablacar.be",
+ "blablacar.co.uk",
+ "blablacar.cz",
+ "blablacar.de",
+ "blablacar.es",
+ "blablacar.fr",
+ "blablacar.hr",
+ "blablacar.hu",
+ "blablacar.it",
+ "blablacar.nl",
+ "blablacar.pl",
+ "blablacar.pt",
+ "blablacar.ro",
+ "blablacar.sk",
+ "decathlon-united.media",
+ "decathlon.at",
+ "decathlon.be",
+ "decathlon.com.dz",
+ "decathlon.de",
+ "decathlon.pl",
+ "decathlon.pt",
+ "decathlon.ro",
+ "decathlon.sk"
+ ],
+ "id": "3b20cf84-991e-4155-8620-4e897d703530",
+ "last_modified": 1714811639913
+ },
+ {
+ "click": {
+ "optIn": "#didomi-notice-agree-button",
+ "optOut": ".didomi-continue-without-agreeing",
+ "presence": "#didomi-notice"
+ },
+ "schema": 1714608006998,
+ "cookies": {},
+ "domains": [
+ "decathlon.cz",
+ "decathlon.it",
+ "hnonline.sk",
+ "orange.md",
+ "orange.sk"
+ ],
+ "id": "5da98b86-9a16-47ec-8607-046744d93396",
+ "last_modified": 1714811639910
+ },
+ {
+ "click": {
+ "optIn": "#didomi-notice-agree-button",
+ "optOut": ".didomi-continue-without-agreeing",
+ "presence": "#didomi-popup"
+ },
+ "schema": 1714608006998,
+ "cookies": {},
+ "domains": [
+ "decathlon.ch",
+ "decathlon.co.uk",
+ "decathlon.es",
+ "decathlon.fr",
+ "decathlon.hu",
+ "decathlon.media",
+ "decathlon.mt",
+ "decathlon.nl",
+ "decathlon.yoga",
+ "orange.pl",
+ "quechua.fr"
+ ],
+ "id": "05b53737-a488-4312-b845-72d804872158",
+ "last_modified": 1714811639907
+ },
+ {
+ "click": {
+ "optIn": "#cpnb-accept-btn",
+ "optOut": "#cpnb-decline-btn",
+ "presence": "#cpnb"
+ },
+ "schema": 1714608006998,
"cookies": {
- "optIn": [
+ "optOut": [
{
- "name": "cb",
- "value": "1_2055_07_11_"
+ "name": "cpnb_cookiesSettings",
+ "value": "%7B%22required-cookies%22%3A1%2C%22analytical-cookies%22%3A0%2C%22social-media-cookies%22%3A0%2C%22targeted-advertising-cookies%22%3A0%7D"
+ },
+ {
+ "name": "cpnbCookiesDeclined",
+ "value": "1"
}
- ],
+ ]
+ },
+ "domains": [
+ "vodafone.pf"
+ ],
+ "id": "723c6f57-2399-4a6c-bd5e-83650d2db861",
+ "last_modified": 1714811639903
+ },
+ {
+ "click": {
+ "optIn": "#dip-consent-summary-accept-all",
+ "optOut": "#dip-consent-summary-reject-all",
+ "presence": "#dip-consent"
+ },
+ "schema": 1714608006998,
+ "domains": [
+ "vodafone.de"
+ ],
+ "id": "b85f7d67-d6d4-40ee-8472-a32b6cd01e0e",
+ "last_modified": 1714811639900
+ },
+ {
+ "click": {
+ "optIn": "[value=\"allowAll\"]",
+ "optOut": "[value=\"saveNecessarily\"]",
+ "presence": ".vfcc__overlay"
+ },
+ "schema": 1714608006998,
+ "cookies": {
"optOut": [
{
- "name": "cb",
- "value": "1_2055_07_11_2-3"
+ "name": "vfconsents",
+ "value": "\"cvx:5|vt:2524608000000|vn:1|ci:1|funa:o|mktg:o|cond:1|dldt:2524608000000|cvd:5|cvu:5|cdd:2524608000000|vind:1\""
}
]
},
"domains": [
- "threads.net"
+ "vodafone.cz"
],
- "id": "c232eab8-f55a-436a-8033-478746d05d98",
- "last_modified": 1711550955105
+ "id": "ba7bde95-93ff-43fd-845f-b8a396b46480",
+ "last_modified": 1714811639896
+ },
+ {
+ "click": {
+ "optOut": ".cookie-banner__close",
+ "presence": ".cookie-banner"
+ },
+ "schema": 1714608006998,
+ "cookies": {
+ "optOut": [
+ {
+ "name": "meta_connect_cookies_session",
+ "value": "true"
+ }
+ ]
+ },
+ "domains": [
+ "metaconnect.com"
+ ],
+ "id": "529b0511-417d-46e3-a601-4e9c8e662d01",
+ "last_modified": 1714811639893
+ },
+ {
+ "click": {
+ "optIn": "#onetrust-accept-btn-handler",
+ "presence": "div#onetrust-consent-sdk"
+ },
+ "schema": 1714780808679,
+ "cookies": {},
+ "domains": [
+ "gitlab.com",
+ "speedtest.net",
+ "name.com",
+ "mlb.com",
+ "qualtrics.com",
+ "tim.it",
+ "hotnews.ro",
+ "mashable.com",
+ "pcmag.com",
+ "barnesandnoble.com",
+ "politico.com",
+ "quillbot.com",
+ "newyorker.com",
+ "upwork.com",
+ "mediafax.ro",
+ "elisa.fi",
+ "blick.ch",
+ "tvn24.pl",
+ "olx.pl",
+ "olx.bg",
+ "gsp.ro",
+ "fastly.com",
+ "spotify.com",
+ "20min.ch",
+ "olx.ro",
+ "olx.pt",
+ "sportal.bg",
+ "gazeta.pl",
+ "romaniatv.net",
+ "teamviewer.com",
+ "ted.com",
+ "tripadvisor.com",
+ "webmd.com",
+ "cambridge.org",
+ "investing.com",
+ "businesswire.com",
+ "istockphoto.com",
+ "iso.org",
+ "quizlet.com",
+ "genius.com",
+ "jstor.org",
+ "trendmicro.com",
+ "duolingo.com",
+ "sophos.com",
+ "rte.ie",
+ "euro.com.pl",
+ "wired.com",
+ "arstechnica.com",
+ "gartner.com",
+ "thelancet.com",
+ "weebly.com",
+ "irishtimes.com",
+ "libertatea.ro",
+ "otomoto.pl",
+ "sport.pl",
+ "novini.bg",
+ "stiripesurse.ro",
+ "suomi24.fi",
+ "ziare.com",
+ "irishexaminer.com",
+ "tripadvisor.it",
+ "thejournal.ie",
+ "superbet.ro",
+ "g4media.ro",
+ "wyborcza.pl",
+ "nachrichten.at",
+ "tt.com",
+ "three.ie",
+ "tripadvisor.co.uk",
+ "dcnews.ro",
+ "vol.at",
+ "plotek.pl",
+ "howstuffworks.com",
+ "tripadvisor.de",
+ "acer.com",
+ "allaboutcookies.org",
+ "bankier.pl",
+ "brother.co.uk",
+ "brother.es",
+ "brother.it",
+ "digicert.com",
+ "epson.co.uk",
+ "fiverr.com",
+ "frontiersin.org",
+ "glassdoor.com",
+ "global.brother",
+ "gq-magazine.co.uk",
+ "ingka.com",
+ "inpost.pl",
+ "instructure.com",
+ "komputronik.pl",
+ "mediaexpert.pl",
+ "oleole.pl",
+ "ookla.com",
+ "otodom.pl",
+ "play.pl",
+ "prnewswire.com",
+ "salesforce.com",
+ "slack.com",
+ "thawte.com",
+ "ui.com",
+ "uisp.com",
+ "vodafone.com.tr",
+ "vodafone.it"
+ ],
+ "id": "256259D5-28AA-44C4-A837-8A30424005BB",
+ "last_modified": 1714811639888
+ },
+ {
+ "click": {
+ "optIn": "button#popin_tc_privacy_button_2",
+ "presence": "div#popin_tc_privacy_container_button"
+ },
+ "schema": 1714780808679,
+ "cookies": {
+ "optIn": [],
+ "optOut": [
+ {
+ "name": "TC_PRIVACY",
+ "value": "1@006%7C86%7C3315@@@1665406595598%2C1665406595598%2C1680958595598@"
+ }
+ ]
+ },
+ "domains": [
+ "sparkasse.at"
+ ],
+ "id": "850ca0e7-372f-4c9f-bfbd-76d38a076cf7",
+ "last_modified": 1714811639885
+ },
+ {
+ "click": {
+ "optIn": ".cc-btn.cc-allow",
+ "optOut": ".cc-btn.cc-deny",
+ "presence": ".cc-window.cc-banner"
+ },
+ "schema": 1714780809581,
+ "cookies": {
+ "optOut": [
+ {
+ "name": "cookieconsent_status",
+ "value": "deny"
+ }
+ ]
+ },
+ "domains": [
+ "decathlon.nc",
+ "decathlon.re",
+ "magnite.com",
+ "mecklenburg-vorpommern.de",
+ "omv.com",
+ "omv.at",
+ "omv.bg",
+ "omv.de",
+ "omv.nz",
+ "omv.no",
+ "omv.ro",
+ "omv.co.rs",
+ "omv.sk",
+ "omv.cz",
+ "omv.tn",
+ "omv.ae",
+ "omv.hu",
+ "omv.si",
+ "omv-gas.com",
+ "omv-gas.at",
+ "omv-gas.be",
+ "omv-gas.de",
+ "omv-gas.hu",
+ "omv-gas.nl",
+ "omv-gas.com.tr",
+ "omv-gas-storage.com",
+ "omvpetrom.com",
+ "petrom.ro",
+ "petrom.md",
+ "avanti.at",
+ "avanti-tankstellen.de",
+ "diskonttanken.at",
+ "tocimceneje.si"
+ ],
+ "id": "8f401b10-02b6-4e05-88fa-c37012d4c8c0",
+ "last_modified": 1714811639881
},
{
"click": {
@@ -146,7 +915,7 @@
"optOut": ".ot-pc-refuse-all-handler, #onetrust-reject-all-handler",
"presence": "div#onetrust-consent-sdk"
},
- "schema": 1711039008141,
+ "schema": 1714780808679,
"cookies": {},
"domains": [
"espncricinfo.com",
@@ -302,6 +1071,15 @@
"inpost.eu",
"inpost.it",
"intel.com",
+ "intersport.at",
+ "intersport.com",
+ "intersport.com.tr",
+ "intersport.cz",
+ "intersport.dk",
+ "intersport.es",
+ "intersport.hu",
+ "intersport.nl",
+ "intersport.sk",
"kaufland.de",
"lg.com",
"lidl.co.uk",
@@ -324,6 +1102,14 @@
"soundcloud.com",
"trello.com",
"unrealengine.com",
+ "vodafone.al",
+ "vodafone.co.uk",
+ "vodafone.es",
+ "vodafone.gr",
+ "vodafone.hu",
+ "vodafone.ie",
+ "vodafone.nl",
+ "vodafone.ro",
"askubuntu.com",
"mathoverflow.net",
"serverfault.com",
@@ -334,21 +1120,177 @@
"carrefour.fr"
],
"id": "6c7366a0-4762-47b9-8eeb-04e86cc7a0cc",
- "last_modified": 1711550955100
+ "last_modified": 1714811639877
},
{
"click": {
- "optIn": "#footer_tc_privacy_button",
- "optOut": "#footer_tc_privacy_button_2",
- "presence": ".tc-privacy-wrapper.tc-privacy-override.tc-privacy-wrapper"
+ "optIn": "button#didomi-notice-agree-button",
+ "optOut": "button#didomi-notice-disagree-button",
+ "presence": "div#didomi-host"
},
- "schema": 1711039008141,
+ "schema": 1714780809581,
+ "cookies": {},
"domains": [
- "arte.tv",
- "urssaf.fr"
+ "doctolib.fr",
+ "pravda.sk",
+ "topky.sk",
+ "zoznam.sk",
+ "tvnoviny.sk",
+ "aukro.cz",
+ "krone.at",
+ "cas.sk",
+ "heureka.sk",
+ "free.fr",
+ "markiza.sk",
+ "willhaben.at",
+ "francetvinfo.fr",
+ "france.tv",
+ "france24.com",
+ "opodo.at",
+ "opodo.ch",
+ "opodo.co.uk",
+ "opodo.de",
+ "opodo.dk",
+ "opodo.fi",
+ "opodo.fr",
+ "opodo.it",
+ "opodo.nl",
+ "opodo.no",
+ "opodo.pl",
+ "opodo.pt",
+ "radiofrance.fr",
+ "rfi.fr",
+ "rtl.fr",
+ "6play.fr",
+ "marianne.net"
],
- "id": "cc818b41-7b46-46d3-9b17-cf924cbe87d1",
- "last_modified": 1711550955095
+ "id": "690aa076-4a8b-48ec-b52c-1443d44ff008",
+ "last_modified": 1714811639868
+ },
+ {
+ "click": {
+ "optIn": "button#onetrust-accept-btn-handler",
+ "optOut": "button.onetrust-close-btn-handler",
+ "presence": "div#onetrust-consent-sdk"
+ },
+ "schema": 1714780808679,
+ "cookies": {},
+ "domains": [
+ "allopneus.com",
+ "darty.com",
+ "e.leclerc",
+ "fnac.be",
+ "fnac.ch",
+ "fnac.com",
+ "fnac.pt",
+ "leclercdrive.fr",
+ "mondialrelay.fr",
+ "pasteur.fr"
+ ],
+ "id": "2d821158-5945-4134-a078-56c6da4f678d",
+ "last_modified": 1714811639865
+ },
+ {
+ "click": {
+ "optIn": "#popin_tc_privacy_button_3",
+ "optOut": "#popin_tc_privacy_button_2",
+ "presence": "#tc-privacy-wrapper"
+ },
+ "schema": 1714780809581,
+ "domains": [
+ "auto5.be",
+ "bouyguestelecom.fr",
+ "enedis.fr",
+ "fortuneo.fr",
+ "lcl.fr",
+ "norauto-franchise.com",
+ "norauto-pro.com",
+ "norauto.es",
+ "norauto.fr",
+ "norauto.it",
+ "norauto.pt",
+ "tf1.fr",
+ "tf1info.fr"
+ ],
+ "id": "98D89E26-F4B6-4C2D-BABF-4295B922E433",
+ "last_modified": 1714811639861
+ },
+ {
+ "schema": 1714780808679,
+ "domains": [
+ "tumblr.com",
+ "paypal.com",
+ "amazon.co.uk",
+ "amazon.com.be",
+ "amazon.com.tr",
+ "amazon.de",
+ "amazon.es",
+ "amazon.fr",
+ "amazon.it",
+ "amazon.nl",
+ "amazon.pl",
+ "amazon.se"
+ ],
+ "id": "disabled",
+ "last_modified": 1714811639858
+ },
+ {
+ "schema": 1714780809581,
+ "cookies": {
+ "optOut": [
+ {
+ "name": "__Secure-HO_Cookie_Consent_Declined",
+ "value": "1"
+ }
+ ]
+ },
+ "domains": [
+ "hetzner.com"
+ ],
+ "id": "a8222cf2-8f6c-48df-8215-05a15d4ac592",
+ "last_modified": 1714811639846
+ },
+ {
+ "click": {
+ "optIn": "#didomi-notice-agree-button",
+ "presence": "#didomi-popup"
+ },
+ "schema": 1714780809581,
+ "cookies": {},
+ "domains": [
+ "decathlon.bg",
+ "decathlon.ca",
+ "decathlon.hr",
+ "decathlon.ie",
+ "decathlon.lt",
+ "decathlon.lv",
+ "decathlon.se",
+ "orange.lu",
+ "reverso.net"
+ ],
+ "id": "05157ed1-12c2-4f84-9dff-718fae5bc096",
+ "last_modified": 1714811639843
+ },
+ {
+ "click": {
+ "optIn": ".t_cm_ec_continue_button",
+ "optOut": ".t_cm_ec_reject_button",
+ "presence": "#__tealiumGDPRecModal"
+ },
+ "schema": 1714780808679,
+ "cookies": {
+ "optOut": [
+ {
+ "name": "CONSENTMGR",
+ "value": "c1:0%7Cc2:0%7Cc3:0%7Cc4:0%7Cc5:0%7Cc6:0%7Cc7:0%7Cc8:0%7Cc9:0%7Cc10:0%7Cc11:0%7Cc12:0%7Cc13:0%7Cc14:0%7Cc15:0%7Cts:2524608000000%7Cconsent:false"
+ }
+ ]
+ },
+ "domains": [
+ "vodafone.com"
+ ],
+ "id": "a4cb7b9f-0a47-4fc8-ac4c-5e9d0d598531",
+ "last_modified": 1714811639839
},
{
"click": {
@@ -356,7 +1298,7 @@
"optOut": "span.didomi-continue-without-agreeing",
"presence": "div#didomi-popup"
},
- "schema": 1711039008141,
+ "schema": 1714780808679,
"cookies": {},
"domains": [
"theconversation.com",
@@ -364,13 +1306,14 @@
"lesechos.fr",
"numerama.com",
"jofogas.hu",
+ "orange.com",
"orange.fr",
"meteofrance.com",
"subito.it",
"hasznaltauto.hu",
"zdnet.de",
+ "zdnet.fr",
"intersport.fr",
- "decathlon.fr",
"leboncoin.fr",
"boursorama.com",
"boursobank.com",
@@ -386,23 +1329,69 @@
"largus.fr"
],
"id": "c1d7be10-151e-4a66-b83b-31a762869a97",
- "last_modified": 1711550955088
+ "last_modified": 1714811639831
},
{
- "click": {
- "optIn": "button#footer_tc_privacy_button_2",
- "optOut": "button#footer_tc_privacy_button_3",
- "presence": "div#tc-privacy-wrapper"
+ "schema": 1714780808679,
+ "cookies": {
+ "optOut": [
+ {
+ "name": "gdpr",
+ "value": "1"
+ }
+ ]
},
- "schema": 1711039008141,
- "cookies": {},
"domains": [
- "cdiscount.com",
- "laposte.net",
- "laposte.fr"
+ "kinopoisk.ru",
+ "ya.ru",
+ "yandex.az",
+ "yandex.by",
+ "yandex.co.il",
+ "yandex.com",
+ "yandex.com.am",
+ "yandex.com.ge",
+ "yandex.com.tr",
+ "yandex.ee",
+ "yandex.eu",
+ "yandex.kz",
+ "yandex.lt",
+ "yandex.lv",
+ "yandex.md",
+ "yandex.pt",
+ "yandex.ru",
+ "yandex.tj",
+ "yandex.tm",
+ "yandex.uz",
+ "yandex.vc"
],
- "id": "1871561d-65f8-4972-8e8a-84fa9eb704b4",
- "last_modified": 1711550955084
+ "id": "37319f5d-9484-4da8-aee1-570a78688da3",
+ "last_modified": 1714811639827
+ },
+ {
+ "schema": 1714780808679,
+ "cookies": {
+ "optIn": [
+ {
+ "name": "d_prefs",
+ "value": "MToxLGNvbnNlbnRfdmVyc2lvbjoyLHRleHRfdmVyc2lvbjoxMDAw"
+ }
+ ],
+ "optOut": [
+ {
+ "name": "d_prefs",
+ "value": "MjoxLGNvbnNlbnRfdmVyc2lvbjoyLHRleHRfdmVyc2lvbjoxMDAw"
+ },
+ {
+ "name": "twtr_pixel_opt_in",
+ "value": "N"
+ }
+ ]
+ },
+ "domains": [
+ "twitter.com"
+ ],
+ "id": "05b3b417-c4c7-4ed0-a3cf-43053e8b33ab",
+ "last_modified": 1714811639824
},
{
"click": {
@@ -410,77 +1399,578 @@
"optOut": "button#CybotCookiebotDialogBodyButtonDecline",
"presence": "div#CybotCookiebotDialog"
},
- "schema": 1711039008141,
+ "schema": 1714780808679,
"cookies": {},
"domains": [
- "politiken.dk"
+ "intermarche.be",
+ "intermarche.pl",
+ "intermarche.pt",
+ "intersport.hr",
+ "intersport.it",
+ "intersport.pl",
+ "intersport.si",
+ "issuu.com",
+ "telekom.ro",
+ "voetbal24.be",
+ "weforum.org"
],
- "id": "1006f951-cd51-47cc-9527-5036cef4b85a",
- "last_modified": 1711550955080
+ "id": "019c0709-e9ef-4b0d-94bf-958d251a51b5",
+ "last_modified": 1714811639820
+ },
+ {
+ "click": {
+ "optIn": "#gdpr-banner-accept",
+ "optOut": "#gdpr-banner-decline",
+ "presence": "#gdpr-banner"
+ },
+ "schema": 1714780808679,
+ "domains": [
+ "ebay.at",
+ "ebay.be",
+ "ebay.ca",
+ "ebay.ch",
+ "ebay.co.uk",
+ "ebay.com",
+ "ebay.com.au",
+ "ebay.com.hk",
+ "ebay.com.my",
+ "ebay.com.sg",
+ "ebay.de",
+ "ebay.es",
+ "ebay.fr",
+ "ebay.ie",
+ "ebay.it",
+ "ebay.nl",
+ "ebay.ph",
+ "ebay.pl",
+ "ebay.vn"
+ ],
+ "id": "1e6d35e7-b907-4f5c-a09a-9f3336ef6e61",
+ "last_modified": 1714811639817
+ },
+ {
+ "click": {
+ "optIn": "[data-t=\"acceptAllBtn\"]",
+ "optOut": "[data-t=\"continueWithoutAcceptingBtn\"]",
+ "presence": "[data-t=\"cookiesMessage\"]"
+ },
+ "schema": 1714780808679,
+ "cookies": {
+ "optOut": [
+ {
+ "name": "cookie_policy_agreement",
+ "value": "3"
+ },
+ {
+ "name": "dont-track",
+ "value": "1"
+ },
+ {
+ "name": "f_c",
+ "value": "0"
+ },
+ {
+ "name": "g_p",
+ "value": "0"
+ }
+ ]
+ },
+ "domains": [
+ "chollometro.com",
+ "dealabs.com",
+ "hotukdeals.com",
+ "mydealz.de",
+ "pepper.com",
+ "pepper.it",
+ "pepper.pl",
+ "preisjaeger.at"
+ ],
+ "id": "069f4d94-8031-4b83-b8f9-89752c5c1353",
+ "last_modified": 1714811639813
+ },
+ {
+ "click": {
+ "optIn": ".js-accept",
+ "optOut": ".js-refuse",
+ "presence": ".cookie-banner-buttons"
+ },
+ "schema": 1714780808679,
+ "domains": [
+ "emag.bg",
+ "emag.hu",
+ "emag.ro"
+ ],
+ "id": "dbbccc0a-13ba-4cd8-9cf0-32420401be55",
+ "last_modified": 1714811639809
+ },
+ {
+ "click": {
+ "optIn": "#kc-acceptAndHide",
+ "optOut": "#kc-denyAndHide",
+ "presence": ".kc-onsent"
+ },
+ "schema": 1714780809581,
+ "domains": [
+ "intersport.fi",
+ "k-ruoka.fi"
+ ],
+ "id": "282ff551-ce28-4b7f-9633-eaaa7ce89890",
+ "last_modified": 1714811639806
+ },
+ {
+ "click": {
+ "optIn": "#uc-btn-accept-banner",
+ "optOut": "#uc-btn-deny-banner",
+ "presence": "#uc-main-banner"
+ },
+ "schema": 1714780809581,
+ "domains": [
+ "zalando.at",
+ "zalando.be",
+ "zalando.ch",
+ "zalando.co.uk",
+ "zalando.com",
+ "zalando.cz",
+ "zalando.de",
+ "zalando.dk",
+ "zalando.ee",
+ "zalando.es",
+ "zalando.fi",
+ "zalando.fr",
+ "zalando.hr",
+ "zalando.hu",
+ "zalando.ie",
+ "zalando.it",
+ "zalando.lt",
+ "zalando.lv",
+ "zalando.nl",
+ "zalando.no",
+ "zalando.pl",
+ "zalando.ro",
+ "zalando.se",
+ "zalando.si",
+ "zalando.sk"
+ ],
+ "id": "3203ac4e-2454-4022-90fb-d4f51467ce20",
+ "last_modified": 1714811639802
+ },
+ {
+ "click": {
+ "optIn": ".ebu-cookies-layer__modal-buttons > .confirm",
+ "presence": "#cookiesModal"
+ },
+ "schema": 1714780808679,
+ "cookies": {
+ "optOut": [
+ {
+ "name": "OPTOUTCONSENT",
+ "value": "1:1&2:0&3:0&4:0"
+ }
+ ]
+ },
+ "domains": [
+ "vodafone.pt"
+ ],
+ "id": "522a2d72-8131-406e-b058-b27ec07808fc",
+ "last_modified": 1714811639799
+ },
+ {
+ "click": {
+ "optIn": "[data-testid=\"uc-accept-all-button\"]",
+ "optOut": "[data-testid=\"uc-deny-all-button\"]",
+ "presence": "#focus-lock-id"
+ },
+ "schema": 1714780808679,
+ "domains": [
+ "magenta.at",
+ "post.ch",
+ "rts.ch"
+ ],
+ "id": "c40f3982-0372-4cdd-8aea-c150afd8328e",
+ "last_modified": 1714811639795
+ },
+ {
+ "click": {
+ "optIn": "button.cc-banner__button-accept",
+ "optOut": "button.cc-banner__button-reject",
+ "presence": ".cc-banner"
+ },
+ "schema": 1714780809581,
+ "cookies": {},
+ "domains": [
+ "springer.com",
+ "nature.com"
+ ],
+ "id": "9ab30eae-9592-47b1-b46e-7640c4316f14",
+ "last_modified": 1714811639789
+ },
+ {
+ "click": {},
+ "schema": 1714780809581,
+ "cookies": {
+ "optIn": [
+ {
+ "name": ".consent",
+ "value": "fu1-ma1-pe1"
+ }
+ ],
+ "optOut": [
+ {
+ "name": ".consent",
+ "value": "fu0-ma0-pe0"
+ }
+ ]
+ },
+ "domains": [
+ "galaxus.de"
+ ],
+ "id": "cc78c082-2dc6-4287-9a7c-168c591810fd",
+ "last_modified": 1714811639782
+ },
+ {
+ "click": {
+ "optIn": ".sp_choice_type_11",
+ "presence": ".message-container > #notice",
+ "runContext": "child"
+ },
+ "schema": 1714780809581,
+ "cookies": {},
+ "domains": [
+ "thetimes.co.uk",
+ "qz.com",
+ "privacy-mgmt.com",
+ "independent.co.uk",
+ "gizmodo.com",
+ "e24.no",
+ "thesun.co.uk",
+ "thesun.ie",
+ "focus.de",
+ "bild.de",
+ "computerbild.de",
+ "t-online.de",
+ "wetteronline.de",
+ "chip-kiosk.de",
+ "chip.de",
+ "chip.info",
+ "n-tv.de",
+ "newsnow.co.uk",
+ "telegraph.co.uk",
+ "theguardian.com",
+ "faz.net",
+ "sueddeutsche.de",
+ "rtl.de",
+ "gutefrage.net",
+ "express.de",
+ "tvspielfilm.de",
+ "finanzen.net",
+ "tag24.de",
+ "kino.de",
+ "heise.de",
+ "bunte.de",
+ "golem.de",
+ "meinestadt.de",
+ "berliner-zeitung.de",
+ "karlsruhe-insider.de",
+ "wetter.de"
+ ],
+ "id": "d42bbaee-f96e-47e7-8e81-efc642518e97",
+ "last_modified": 1714811639779
},
{
"click": {
"optIn": "button#didomi-notice-agree-button",
- "optOut": "button#didomi-notice-disagree-button",
"presence": "div#didomi-host"
},
+ "schema": 1714780808679,
+ "cookies": {},
+ "domains": [
+ "echo24.cz",
+ "jeuxvideo.com",
+ "24sata.hr",
+ "nova.cz",
+ "lidovky.cz",
+ "jutarnji.hr",
+ "vecernji.hr",
+ "sport.es",
+ "elespanol.com",
+ "in-pocasi.cz",
+ "20minutes.fr",
+ "actu.fr",
+ "hbvl.be",
+ "naszemiasto.pl",
+ "rtbf.be",
+ "20minutos.es",
+ "sudinfo.be",
+ "elpais.com",
+ "sinoptik.bg",
+ "lequipe.fr",
+ "abc.es",
+ "gva.be",
+ "eltiempo.es",
+ "eldiario.es",
+ "larazon.es",
+ "extra.cz",
+ "ladepeche.fr",
+ "marmiton.org",
+ "poslovni.hr",
+ "softonic.com",
+ "sydsvenskan.se",
+ "telecinco.es",
+ "giphy.com",
+ "filmstarts.de",
+ "funda.nl",
+ "idnes.cz",
+ "aktualne.cz",
+ "blesk.cz",
+ "centrum.cz",
+ "denik.cz",
+ "csfd.cz",
+ "hn.cz",
+ "moviepilot.de",
+ "chip.cz"
+ ],
+ "id": "af4c5b38-d210-472b-9a07-21cbe53c85ab",
+ "last_modified": 1714811639775
+ },
+ {
+ "click": {
+ "optIn": "#accept-btn",
+ "optOut": "#decline-btn",
+ "presence": "#privacy-manager-popin"
+ },
+ "schema": 1713199742998,
+ "domains": [
+ "canalplus.com"
+ ],
+ "id": "7b2e3401-697f-440a-b418-8477fcf2cfeb",
+ "last_modified": 1713281881442
+ },
+ {
+ "click": {
+ "optIn": ".btn-ok",
+ "optOut": ".btn-reject",
+ "presence": "#cookie-policy-info"
+ },
+ "schema": 1713199742998,
+ "cookies": {
+ "optOut": [
+ {
+ "name": "isReadCookiePolicyDNT",
+ "value": "No"
+ },
+ {
+ "name": "isReadCookiePolicyDNTAa",
+ "value": "false"
+ }
+ ]
+ },
+ "domains": [
+ "asus.com"
+ ],
+ "id": "8c949b75-4c7b-4559-8ade-780064af370a",
+ "last_modified": 1713281881428
+ },
+ {
+ "click": {
+ "optOut": ".sp_choice_type_13",
+ "presence": ".message-container > #notice",
+ "runContext": "child"
+ },
+ "schema": 1713199742998,
+ "cookies": {},
+ "domains": [
+ "aktuality.sk",
+ "sky.it",
+ "azet.sk",
+ "bloomberg.com",
+ "formula1.com"
+ ],
+ "id": "ae8f7761-35ff-45b2-92df-7868ca288ad2",
+ "last_modified": 1713281881424
+ },
+ {
+ "click": {
+ "optIn": "#c-bns #c-p-bn",
+ "optOut": "#c-bns button.grey",
+ "presence": "#cm"
+ },
+ "schema": 1711039008141,
+ "cookies": {
+ "optOut": [
+ {
+ "name": "cc_cookie",
+ "value": "{\"level\":[\"necessary\"],\"revision\":0,\"data\":null,\"rfc_cookie\":false}"
+ }
+ ]
+ },
+ "domains": [
+ "yazio.com"
+ ],
+ "id": "B8CB497B-9E12-49A7-BA2A-B7842CAEDFC3",
+ "last_modified": 1711550955136
+ },
+ {
+ "click": {
+ "optIn": "#rgpd-btn-index-accept",
+ "optOut": "#rgpd-btn-index-continue",
+ "presence": "#modalTpl"
+ },
+ "schema": 1711039008141,
+ "domains": [
+ "rueducommerce.fr"
+ ],
+ "id": "BC3582FC-C5FA-4743-85E8-7E46F67629AB",
+ "last_modified": 1711550955133
+ },
+ {
+ "click": {
+ "optIn": "#cookieConsentAcceptButton",
+ "optOut": "#cookieConsentRefuseButton",
+ "presence": "#cookieConsentBanner"
+ },
+ "schema": 1711039008141,
+ "domains": [
+ "ldlc.com",
+ "ldlc.pro",
+ "materiel.net"
+ ],
+ "id": "4A767353-98B9-4284-857A-D98DC3ECDFE1",
+ "last_modified": 1711550955129
+ },
+ {
+ "click": {
+ "optIn": "#header_tc_privacy_button_3",
+ "optOut": "#header_tc_privacy_button",
+ "presence": "#tc-privacy-wrapper"
+ },
+ "schema": 1711039008141,
+ "domains": [
+ "ovh.com",
+ "ovhcloud.com",
+ "ovhtelecom.fr"
+ ],
+ "id": "17B1F270-F499-451C-AED5-5C737106F003",
+ "last_modified": 1711550955125
+ },
+ {
+ "click": {
+ "optIn": "#popin_tc_privacy_button_2",
+ "optOut": "#optout_link",
+ "presence": "#tc-privacy-wrapper"
+ },
+ "schema": 1711039008141,
+ "domains": [
+ "laredoute.fr"
+ ],
+ "id": "9022E9FE-2DC2-48DD-BE4A-EFA8A2C81E2B",
+ "last_modified": 1711550955121
+ },
+ {
+ "click": {
+ "optIn": "#popin_tc_privacy_button_2",
+ "optOut": "#popin_tc_privacy_button",
+ "presence": "#tc-privacy-wrapper"
+ },
+ "schema": 1711039008141,
+ "domains": [
+ "quechoisir.org",
+ "quechoisirensemble.fr"
+ ],
+ "id": "5D50AA8D-D00E-4A51-8D32-64965A0575CA",
+ "last_modified": 1711550955117
+ },
+ {
+ "click": {
+ "optIn": "button#footer_tc_privacy_button_3",
+ "optOut": "button#footer_tc_privacy_button_2",
+ "presence": "div#tc-privacy-wrapper"
+ },
"schema": 1711039008141,
"cookies": {},
"domains": [
- "doctolib.fr",
- "pravda.sk",
- "topky.sk",
- "zoznam.sk",
- "tvnoviny.sk",
- "aukro.cz",
- "krone.at",
- "cas.sk",
- "heureka.sk",
- "free.fr",
- "markiza.sk",
- "willhaben.at",
- "francetvinfo.fr",
- "france.tv",
- "france24.com",
- "opodo.at",
- "opodo.ch",
- "opodo.co.uk",
- "opodo.de",
- "opodo.dk",
- "opodo.fi",
- "opodo.fr",
- "opodo.it",
- "opodo.nl",
- "opodo.no",
- "opodo.pl",
- "opodo.pt",
- "radiofrance.fr",
- "rfi.fr",
- "blablacar.fr",
- "6play.fr"
+ "labanquepostale.fr"
],
- "id": "690aa076-4a8b-48ec-b52c-1443d44ff008",
- "last_modified": 1711550955075
+ "id": "6c1ebd2b-867a-40a5-8184-0ead733eae69",
+ "last_modified": 1711550955113
},
{
"click": {
- "optIn": "button#onetrust-accept-btn-handler",
- "optOut": "button.onetrust-close-btn-handler",
- "presence": "div#onetrust-consent-sdk"
+ "optIn": "button.orejime-Notice-saveButton",
+ "optOut": "button.orejime-Notice-declineButton",
+ "presence": "div.orejime-Notice"
+ },
+ "schema": 1711039008141,
+ "domains": [
+ "service-public.fr"
+ ],
+ "id": "7293dc4c-1d3d-4236-84a6-3c5cb3def55a",
+ "last_modified": 1711550955109
+ },
+ {
+ "schema": 1711039008141,
+ "cookies": {
+ "optIn": [
+ {
+ "name": "cb",
+ "value": "1_2055_07_11_"
+ }
+ ],
+ "optOut": [
+ {
+ "name": "cb",
+ "value": "1_2055_07_11_2-3"
+ }
+ ]
+ },
+ "domains": [
+ "threads.net"
+ ],
+ "id": "c232eab8-f55a-436a-8033-478746d05d98",
+ "last_modified": 1711550955105
+ },
+ {
+ "click": {
+ "optIn": "#footer_tc_privacy_button",
+ "optOut": "#footer_tc_privacy_button_2",
+ "presence": ".tc-privacy-wrapper.tc-privacy-override.tc-privacy-wrapper"
+ },
+ "schema": 1711039008141,
+ "domains": [
+ "arte.tv",
+ "urssaf.fr"
+ ],
+ "id": "cc818b41-7b46-46d3-9b17-cf924cbe87d1",
+ "last_modified": 1711550955095
+ },
+ {
+ "click": {
+ "optIn": "button#footer_tc_privacy_button_2",
+ "optOut": "button#footer_tc_privacy_button_3",
+ "presence": "div#tc-privacy-wrapper"
},
"schema": 1711039008141,
"cookies": {},
"domains": [
- "e.leclerc",
- "fnac.be",
- "fnac.ch",
- "fnac.com",
- "fnac.pt",
- "leclercdrive.fr",
- "mondialrelay.fr"
+ "cdiscount.com",
+ "laposte.net",
+ "laposte.fr"
],
- "id": "2d821158-5945-4134-a078-56c6da4f678d",
- "last_modified": 1711550955071
+ "id": "1871561d-65f8-4972-8e8a-84fa9eb704b4",
+ "last_modified": 1711550955084
+ },
+ {
+ "click": {
+ "optIn": "button#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll",
+ "optOut": "button#CybotCookiebotDialogBodyButtonDecline",
+ "presence": "div#CybotCookiebotDialog"
+ },
+ "schema": 1711039008141,
+ "cookies": {},
+ "domains": [
+ "politiken.dk"
+ ],
+ "id": "1006f951-cd51-47cc-9527-5036cef4b85a",
+ "last_modified": 1711550955080
},
{
"click": {
@@ -500,23 +1990,6 @@
},
{
"click": {
- "optIn": "#popin_tc_privacy_button_3",
- "optOut": "#popin_tc_privacy_button_2",
- "presence": "#tc-privacy-wrapper"
- },
- "schema": 1711039008141,
- "domains": [
- "bouyguestelecom.fr",
- "enedis.fr",
- "fortuneo.fr",
- "lcl.fr",
- "tf1.fr"
- ],
- "id": "98D89E26-F4B6-4C2D-BABF-4295B922E433",
- "last_modified": 1711550955063
- },
- {
- "click": {
"optIn": ".moove-gdpr-infobar-allow-all",
"optOut": ".moove-gdpr-infobar-reject-btn",
"presence": "#moove_gdpr_cookie_info_bar"
@@ -739,125 +2212,6 @@
},
{
"click": {
- "optIn": ".sp_choice_type_11",
- "presence": ".message-container > #notice",
- "runContext": "child"
- },
- "schema": 1710174339269,
- "cookies": {},
- "domains": [
- "thetimes.co.uk",
- "qz.com",
- "privacy-mgmt.com",
- "independent.co.uk",
- "gizmodo.com",
- "e24.no",
- "thesun.co.uk",
- "thesun.ie",
- "focus.de",
- "bild.de",
- "computerbild.de",
- "t-online.de",
- "wetteronline.de",
- "chip.de",
- "n-tv.de",
- "newsnow.co.uk",
- "telegraph.co.uk",
- "theguardian.com",
- "faz.net",
- "sueddeutsche.de",
- "rtl.de",
- "gutefrage.net",
- "express.de",
- "tvspielfilm.de",
- "finanzen.net",
- "tag24.de",
- "kino.de",
- "heise.de",
- "bunte.de",
- "golem.de",
- "meinestadt.de",
- "berliner-zeitung.de",
- "karlsruhe-insider.de",
- "wetter.de"
- ],
- "id": "d42bbaee-f96e-47e7-8e81-efc642518e97",
- "last_modified": 1710331175368
- },
- {
- "click": {
- "optOut": ".sp_choice_type_13",
- "presence": ".message-container > #notice",
- "runContext": "child"
- },
- "schema": 1710174339269,
- "cookies": {},
- "domains": [
- "aktuality.sk",
- "sky.it",
- "azet.sk",
- "bloomberg.com"
- ],
- "id": "ae8f7761-35ff-45b2-92df-7868ca288ad2",
- "last_modified": 1710331175359
- },
- {
- "click": {
- "optIn": "button#didomi-notice-agree-button",
- "presence": "div#didomi-host"
- },
- "schema": 1710174339269,
- "cookies": {},
- "domains": [
- "echo24.cz",
- "jeuxvideo.com",
- "24sata.hr",
- "nova.cz",
- "lidovky.cz",
- "jutarnji.hr",
- "vecernji.hr",
- "sport.es",
- "elespanol.com",
- "in-pocasi.cz",
- "20minutes.fr",
- "actu.fr",
- "hbvl.be",
- "naszemiasto.pl",
- "rtbf.be",
- "20minutos.es",
- "sudinfo.be",
- "elpais.com",
- "sinoptik.bg",
- "lequipe.fr",
- "abc.es",
- "gva.be",
- "eltiempo.es",
- "eldiario.es",
- "larazon.es",
- "extra.cz",
- "ladepeche.fr",
- "marmiton.org",
- "poslovni.hr",
- "softonic.com",
- "sydsvenskan.se",
- "telecinco.es",
- "giphy.com",
- "filmstarts.de",
- "funda.nl",
- "idnes.cz",
- "aktualne.cz",
- "blesk.cz",
- "centrum.cz",
- "denik.cz",
- "csfd.cz",
- "hn.cz",
- "moviepilot.de"
- ],
- "id": "af4c5b38-d210-472b-9a07-21cbe53c85ab",
- "last_modified": 1710331175354
- },
- {
- "click": {
"optOut": "button[data-js-item=\"privacy-protection-default\"]",
"presence": ".c-privacy-protection-banner"
},
@@ -1075,57 +2429,6 @@
"last_modified": 1708772697226
},
{
- "click": {
- "optIn": ".cc-btn.cc-allow",
- "optOut": ".cc-btn.cc-deny",
- "presence": ".cc-window.cc-banner"
- },
- "schema": 1708732808372,
- "cookies": {
- "optOut": [
- {
- "name": "cookieconsent_status",
- "value": "deny"
- }
- ]
- },
- "domains": [
- "magnite.com",
- "mecklenburg-vorpommern.de",
- "omv.com",
- "omv.at",
- "omv.bg",
- "omv.de",
- "omv.nz",
- "omv.no",
- "omv.ro",
- "omv.co.rs",
- "omv.sk",
- "omv.cz",
- "omv.tn",
- "omv.ae",
- "omv.hu",
- "omv.si",
- "omv-gas.com",
- "omv-gas.at",
- "omv-gas.be",
- "omv-gas.de",
- "omv-gas.hu",
- "omv-gas.nl",
- "omv-gas.com.tr",
- "omv-gas-storage.com",
- "omvpetrom.com",
- "petrom.ro",
- "petrom.md",
- "avanti.at",
- "avanti-tankstellen.de",
- "diskonttanken.at",
- "tocimceneje.si"
- ],
- "id": "8f401b10-02b6-4e05-88fa-c37012d4c8c0",
- "last_modified": 1708772697214
- },
- {
"click": {},
"schema": 1708732808372,
"cookies": {
@@ -1251,19 +2554,6 @@
},
{
"click": {
- "optIn": ".btn-ok",
- "optOut": ".btn-reject",
- "presence": "#cookie-policy-info"
- },
- "schema": 1708699541450,
- "domains": [
- "asus.com"
- ],
- "id": "8c949b75-4c7b-4559-8ade-780064af370a",
- "last_modified": 1708772697161
- },
- {
- "click": {
"optIn": "[data-cookieman-accept-all]",
"optOut": "[data-cookieman-accept-none]",
"presence": "#cookieman-modal"
@@ -1862,120 +3152,6 @@
},
{
"click": {
- "optIn": "#onetrust-accept-btn-handler",
- "presence": "div#onetrust-consent-sdk"
- },
- "schema": 1702598407647,
- "cookies": {},
- "domains": [
- "gitlab.com",
- "speedtest.net",
- "name.com",
- "mlb.com",
- "qualtrics.com",
- "tim.it",
- "hotnews.ro",
- "mashable.com",
- "pcmag.com",
- "barnesandnoble.com",
- "politico.com",
- "quillbot.com",
- "newyorker.com",
- "upwork.com",
- "mediafax.ro",
- "elisa.fi",
- "blick.ch",
- "tvn24.pl",
- "olx.pl",
- "olx.bg",
- "gsp.ro",
- "fastly.com",
- "spotify.com",
- "20min.ch",
- "olx.ro",
- "olx.pt",
- "sportal.bg",
- "gazeta.pl",
- "romaniatv.net",
- "teamviewer.com",
- "ted.com",
- "tripadvisor.com",
- "webmd.com",
- "cambridge.org",
- "investing.com",
- "businesswire.com",
- "istockphoto.com",
- "iso.org",
- "quizlet.com",
- "genius.com",
- "jstor.org",
- "trendmicro.com",
- "duolingo.com",
- "sophos.com",
- "rte.ie",
- "euro.com.pl",
- "wired.com",
- "arstechnica.com",
- "gartner.com",
- "thelancet.com",
- "weebly.com",
- "irishtimes.com",
- "libertatea.ro",
- "otomoto.pl",
- "sport.pl",
- "novini.bg",
- "stiripesurse.ro",
- "suomi24.fi",
- "ziare.com",
- "irishexaminer.com",
- "tripadvisor.it",
- "thejournal.ie",
- "superbet.ro",
- "g4media.ro",
- "wyborcza.pl",
- "nachrichten.at",
- "tt.com",
- "three.ie",
- "tripadvisor.co.uk",
- "dcnews.ro",
- "vol.at",
- "plotek.pl",
- "howstuffworks.com",
- "tripadvisor.de",
- "acer.com",
- "allaboutcookies.org",
- "bankier.pl",
- "brother.co.uk",
- "brother.es",
- "brother.it",
- "digicert.com",
- "epson.co.uk",
- "fiverr.com",
- "frontiersin.org",
- "glassdoor.com",
- "global.brother",
- "gq-magazine.co.uk",
- "ingka.com",
- "inpost.pl",
- "instructure.com",
- "komputronik.pl",
- "mediaexpert.pl",
- "oleole.pl",
- "ookla.com",
- "otodom.pl",
- "play.pl",
- "prnewswire.com",
- "salesforce.com",
- "slack.com",
- "thawte.com",
- "ui.com",
- "uisp.com"
- ],
- "id": "256259D5-28AA-44C4-A837-8A30424005BB",
- "last_modified": 1702633230640
- },
- {
- "click": {
"optIn": "button[data-qa=\"privacy-settings-action-info\"]",
"optOut": "button[data-qa=\"privacy-settings-action-close\"]",
"presence": "[data-qa=\"privacy-settings\"]"
@@ -2007,28 +3183,6 @@
},
{
"click": {
- "optIn": "button#popin_tc_privacy_button_2",
- "presence": "div#popin_tc_privacy_container_button"
- },
- "schema": 1702598407647,
- "cookies": {
- "optIn": [],
- "optOut": [
- {
- "name": "TC_PRIVACY",
- "value": "1@006%7C86%7C3315@@@1665406595598%2C1665406595598%2C1680958595598@"
- }
- ]
- },
- "domains": [
- "credit-agricole.fr",
- "sparkasse.at"
- ],
- "id": "850ca0e7-372f-4c9f-bfbd-76d38a076cf7",
- "last_modified": 1702633230606
- },
- {
- "click": {
"optIn": "button#ccc-recommended-settings",
"optOut": "button#ccc-reject-settings",
"presence": "div#ccc"
@@ -2308,20 +3462,6 @@
},
{
"click": {
- "optIn": "[data-testid=\"uc-accept-all-button\"]",
- "optOut": "[data-testid=\"uc-deny-all-button\"]",
- "presence": "#usercentrics-root"
- },
- "schema": 1700313507200,
- "cookies": {},
- "domains": [
- "rts.ch"
- ],
- "id": "9f5f0c06-5221-45b2-a174-7d70fd128eb3",
- "last_modified": 1700826062713
- },
- {
- "click": {
"optIn": ".cky-btn.cky-btn-accept",
"optOut": ".cky-btn.cky-btn-reject",
"presence": ".cky-consent-bar"
@@ -2336,21 +3476,6 @@
},
{
"click": {
- "optIn": "#didomi-notice-agree-button",
- "optOut": ".didomi-continue-without-agreeing",
- "presence": "div#didomi-notice"
- },
- "schema": 1700313507200,
- "cookies": {},
- "domains": [
- "orange.sk",
- "hnonline.sk"
- ],
- "id": "688d29a8-e1c7-4d62-b3d4-53b451ff5a48",
- "last_modified": 1700826062705
- },
- {
- "click": {
"optIn": ".sp_choice_type_11",
"presence": ".message-container > #notice",
"runContext": "child",
@@ -2509,20 +3634,6 @@
},
{
"click": {
- "optIn": ".sc-1olg58b-0.bXsYmb.sc-1olg58b-1.KXemC",
- "optOut": ".sc-1olg58b-0.jHiTgL.sc-1olg58b-1.sc-1hth3pd-7.KXemC.kSupJA",
- "presence": ".sc-mgoo3k-0.jFxlDH"
- },
- "schema": 1700784006705,
- "cookies": {},
- "domains": [
- "galaxus.de"
- ],
- "id": "cc78c082-2dc6-4287-9a7c-168c591810fd",
- "last_modified": 1700826062657
- },
- {
- "click": {
"optIn": "button.fc-cta-consent",
"presence": "div.fc-footer-buttons-container"
},
@@ -2881,22 +3992,6 @@
"last_modified": 1700826062543
},
{
- "schema": 1700130283852,
- "domains": [
- "tumblr.com",
- "paypal.com",
- "amazon.se",
- "amazon.fr",
- "amazon.nl",
- "amazon.es",
- "amazon.co.uk",
- "amazon.de",
- "amazon.it"
- ],
- "id": "disabled",
- "last_modified": 1700313506967
- },
- {
"click": {
"optOut": ".CookiesAlert_cookiesAlert__3qSl1 .Button_button__3Me73",
"presence": ".CookiesAlert_cookiesAlert__3qSl1"
@@ -2980,22 +4075,6 @@
"last_modified": 1700313506945
},
{
- "schema": 1699660804881,
- "cookies": {
- "optOut": [
- {
- "name": "CookieConsentDeclined",
- "value": "1"
- }
- ]
- },
- "domains": [
- "hetzner.com"
- ],
- "id": "a8222cf2-8f6c-48df-8215-05a15d4ac592",
- "last_modified": 1700130283634
- },
- {
"click": {
"optIn": ".banner-actions-container > #onetrust-accept-btn-handler, #onetrust-button-group > #onetrust-accept-btn-handler, .onetrust-banner-options > #onetrust-accept-btn-handler",
"optOut": ".banner-actions-container > #onetrust-reject-all-handler, #onetrust-button-group > #onetrust-reject-all-handler, .onetrust-banner-options > #onetrust-reject-all-handler",
@@ -3134,28 +4213,6 @@
},
{
"click": {
- "optIn": "button[data-test=\"pwa-consent-layer-accept-all\"]",
- "optOut": "button[data-test=\"pwa-consent-layer-deny-all\"]",
- "presence": "#mms-consent-portal-container"
- },
- "schema": 1697557061727,
- "cookies": {
- "optOut": [
- {
- "name": "pwaconsent",
- "value": "v:1.0~required:1&clf:1,cli:1,gfb:1,gtm:1,jot:1,ocx:1|comfort:0&baz:0,cne:0,con:0,fix:0,gfa:0,goa:0,gom:0,grc:0,grv:0,inm:0,lib:0,lob:0,opt:0,orc:0,ore:0,pcl:0,sen:0,sis:0,spe:0,sst:0,swo:0,twi:0,usw:0,usz:0,yte:0|marketing:0&cri:0,eam:0,fab:0,fbc:0,fcm:0,gac:0,gad:0,gcl:0,gcm:0,gdv:0,gos:0,gse:0,msb:0,omp:0,pin:0,ttd:0,twt:0|"
- }
- ]
- },
- "domains": [
- "mediamarkt.de",
- "saturn.de"
- ],
- "id": "2A2B8102-D276-4ECE-AFBD-005E8E917D18",
- "last_modified": 1697710931632
- },
- {
- "click": {
"optIn": "div[data-tracking-opt-in-accept=\"true\"]",
"presence": "div[data-tracking-opt-in-overlay=\"true\"]"
},
@@ -3167,34 +4224,6 @@
"last_modified": 1697710931628
},
{
- "click": {
- "optIn": "#consentAcceptAll",
- "optOut": "#rejectAll",
- "presence": "#__tealiumGDPRecModal"
- },
- "schema": 1697557061727,
- "domains": [
- "telekom.com",
- "telekom.de"
- ],
- "id": "8907164E-17D8-4D27-B0A3-EDDA59F53DBE",
- "last_modified": 1697710931625
- },
- {
- "click": {
- "optIn": "#dip-consent-summary-accept-all",
- "optOut": "#dip-consent-summary-reject-all",
- "presence": "#dip-consent"
- },
- "schema": 1697557061727,
- "cookies": {},
- "domains": [
- "vodafone.de"
- ],
- "id": "B85F7D67-D6D4-40EE-8472-A32B6CD01E0E",
- "last_modified": 1697710931621
- },
- {
"schema": 1697557061727,
"cookies": {
"optOut": [
@@ -3292,32 +4321,6 @@
"last_modified": 1697710931573
},
{
- "click": {
- "optIn": "button#uc-btn-accept-banner",
- "optOut": "button#uc-btn-deny-banner",
- "presence": "div#uc-banner-modal"
- },
- "schema": 1697557061727,
- "cookies": {},
- "domains": [
- "zalando.ch",
- "zalando.dk",
- "zalando.be",
- "zalando.de",
- "zalando.at",
- "zalando.co.uk",
- "zalando.com",
- "zalando.cz",
- "zalando.ee",
- "zalando.es",
- "zalando.fi",
- "zalando.fr",
- "zalando.hr"
- ],
- "id": "3203ac4e-2454-4022-90fb-d4f51467ce20",
- "last_modified": 1697710931567
- },
- {
"schema": 1696497904676,
"cookies": {
"optOut": [
@@ -3419,26 +4422,6 @@
},
{
"click": {
- "optIn": "#didomi-notice-agree-button",
- "presence": "#didomi-popup"
- },
- "schema": 1690070404721,
- "cookies": {
- "optOut": [
- {
- "name": "euconsent-v2",
- "value": "CRolnUARolnUAAHABBENDHCgAAAAAAAAAAAAAAAAAAAA.YAAAAAAAAAAA"
- }
- ]
- },
- "domains": [
- "reverso.net"
- ],
- "id": "05157ed1-12c2-4f84-9dff-718fae5bc096",
- "last_modified": 1690359097310
- },
- {
- "click": {
"optIn": "#acceptAllButton",
"optOut": "#rejectAllButton",
"presence": "#cookiePrefPopup"
@@ -4178,23 +5161,6 @@
"last_modified": 1676903765490
},
{
- "click": {},
- "schema": 1676828360243,
- "cookies": {
- "optOut": [
- {
- "name": "OPTOUTCONSENT",
- "value": "1:1&2:0&3:0&4:0"
- }
- ]
- },
- "domains": [
- "vodafone.pt"
- ],
- "id": "522a2d72-8131-406e-b058-b27ec07808fc",
- "last_modified": 1676903765486
- },
- {
"click": {
"optIn": "div#cookiescript_accept",
"optOut": "div#cookiescript_reject ",
@@ -4605,19 +5571,6 @@
},
{
"click": {
- "optIn": "button#kc-acceptAndHide",
- "presence": "div#kconsent"
- },
- "schema": 1676900249813,
- "cookies": {},
- "domains": [
- "k-ruoka.fi"
- ],
- "id": "282ff551-ce28-4b7f-9633-eaaa7ce89890",
- "last_modified": 1676903765343
- },
- {
- "click": {
"optIn": "button.css-tzlaik",
"presence": "div#qc-cmp2-ui"
},
@@ -4965,19 +5918,6 @@
},
{
"click": {
- "optIn": "button.js-accept",
- "presence": "div.cookie-banner-buttons"
- },
- "schema": 1676900248050,
- "cookies": {},
- "domains": [
- "emag.hu"
- ],
- "id": "e78a3fdb-bcba-402c-b2da-63994aba1b30",
- "last_modified": 1676903765229
- },
- {
- "click": {
"optIn": "button.css-b2defl",
"presence": "div#qc-cmp2-container"
},
@@ -5278,19 +6218,6 @@
},
{
"click": {
- "optIn": "button#consent_prompt_submit",
- "presence": "div#__tealiumGDPRecModal"
- },
- "schema": 1676900248923,
- "cookies": {},
- "domains": [
- "post.ch"
- ],
- "id": "c40f3982-0372-4cdd-8aea-c150afd8328e",
- "last_modified": 1676903765151
- },
- {
- "click": {
"optIn": "button#didomi-notice-agree-button",
"presence": "div#buttons"
},
@@ -5462,20 +6389,6 @@
},
{
"click": {
- "optIn": "button.ch2-allow-all-btn",
- "optOut": "button.ch2-deny-all-btn",
- "presence": "div.ch2-container"
- },
- "schema": 1676900251552,
- "cookies": {},
- "domains": [
- "semrush.com"
- ],
- "id": "2f54e492-0f33-4496-ab08-99af50bf6f22",
- "last_modified": 1676903765096
- },
- {
- "click": {
"optIn": "button.btn-success",
"presence": "div.vue-component"
},
@@ -5670,20 +6583,6 @@
},
{
"click": {
- "optIn": "button.cc-banner__button-accept",
- "presence": "section.cc-banner"
- },
- "schema": 1676900250688,
- "cookies": {},
- "domains": [
- "springer.com",
- "nature.com"
- ],
- "id": "9ab30eae-9592-47b1-b46e-7640c4316f14",
- "last_modified": 1676903765022
- },
- {
- "click": {
"optIn": "button#cookie-accept-all-secondary",
"optOut": "button.CookieConsentSecondary__RejectAllButton-sc-12do1ry-2",
"presence": "div.ModalInner__Backdrop-sc-1ghkydj-1"
@@ -5698,19 +6597,6 @@
},
{
"click": {
- "optIn": "button#accept_all_cookies",
- "presence": "section#cookie_consent"
- },
- "schema": 1676900250688,
- "cookies": {},
- "domains": [
- "telekom.hu"
- ],
- "id": "80d51057-06fe-4469-be50-0438c9165020",
- "last_modified": 1676903765015
- },
- {
- "click": {
"optIn": "button.primary",
"presence": "div#camus-cookie-disclaimer"
},
@@ -6624,26 +7510,6 @@
"last_modified": 1674560738076
},
{
- "click": {},
- "schema": 1674521303759,
- "cookies": {
- "optOut": [
- {
- "name": "gdpr",
- "value": "1"
- }
- ]
- },
- "domains": [
- "yandex.com",
- "yandex.ru",
- "ya.ru",
- "kinopoisk.ru"
- ],
- "id": "37319f5d-9484-4da8-aee1-570a78688da3",
- "last_modified": 1674560738073
- },
- {
"click": {
"optIn": "button.cmp-intro_acceptAll",
"presence": "div.cmp-popup_popup"
@@ -7752,22 +8618,6 @@
},
{
"click": {
- "optIn": "button#gdpr-banner-accept",
- "optOut": "button#gdpr-banner-decline",
- "presence": "div#gdpr-banner"
- },
- "schema": 1670460527205,
- "cookies": {},
- "domains": [
- "ebay.com",
- "ebay.de",
- "ebay.co.uk"
- ],
- "id": "1e6d35e7-b907-4f5c-a09a-9f3336ef6e61",
- "last_modified": 1670498157322
- },
- {
- "click": {
"optIn": "button[data-a-target=consent-banner-accept]",
"presence": "div.consent-banner"
},
@@ -7826,27 +8676,6 @@
"click": {},
"schema": 1670460528099,
"cookies": {
- "optOut": [
- {
- "name": "cookie_policy_agreement",
- "value": "3"
- },
- {
- "name": "dont-track",
- "value": "1"
- }
- ]
- },
- "domains": [
- "mydealz.de"
- ],
- "id": "069f4d94-8031-4b83-b8f9-89752c5c1353",
- "last_modified": 1670498157271
- },
- {
- "click": {},
- "schema": 1670460528099,
- "cookies": {
"optIn": [
{
"name": "wa_cb",
@@ -7897,23 +8726,6 @@
},
{
"click": {
- "optIn": "button#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll",
- "optOut": "button#CybotCookiebotDialogBodyButtonDecline",
- "presence": "div#CybotCookiebotDialog"
- },
- "schema": 1670460528099,
- "cookies": {},
- "domains": [
- "issuu.com",
- "dobrenoviny.sk",
- "voetbal24.be",
- "weforum.org"
- ],
- "id": "019c0709-e9ef-4b0d-94bf-958d251a51b5",
- "last_modified": 1670498157239
- },
- {
- "click": {
"optIn": ".btn--primary",
"presence": "div#cookie-consent"
},
@@ -8234,20 +9046,6 @@
},
{
"click": {
- "optIn": "button#gdpr-banner-accept",
- "optOut": "button#gdpr-banner-decline",
- "presence": "div.gdpr-banner__wrapper"
- },
- "schema": 1670460537691,
- "cookies": {},
- "domains": [
- "ebay.it"
- ],
- "id": "0bee4c78-484e-4f21-8585-f089bc7618f5",
- "last_modified": 1670498156804
- },
- {
- "click": {
"optIn": "button#truste-consent-button",
"optOut": "div#truste-consent-required",
"presence": "div.truste-consent-content"
@@ -8752,20 +9550,6 @@
},
{
"click": {
- "optIn": "button.t_cm_ec_continue_button",
- "optOut": "button.t_cm_ec_reject_button",
- "presence": "div.t_cm_ec_modal_footer"
- },
- "schema": 1670460531110,
- "cookies": {},
- "domains": [
- "vodafone.com"
- ],
- "id": "a4cb7b9f-0a47-4fc8-ac4c-5e9d0d598531",
- "last_modified": 1670498156229
- },
- {
- "click": {
"optIn": "button.eu-cookie-compliance-secondary-button",
"optOut": "button.eu-cookie-compliance-default-button",
"presence": "div#popup-buttons"
@@ -8940,19 +9724,6 @@
},
{
"click": {
- "optIn": "button.js-accept",
- "presence": "div.cookie-banner-buttons"
- },
- "schema": 1670460529016,
- "cookies": {},
- "domains": [
- "emag.ro"
- ],
- "id": "dbbccc0a-13ba-4cd8-9cf0-32420401be55",
- "last_modified": 1670498156032
- },
- {
- "click": {
"optIn": "button#accept-all",
"optOut": "button#accept-essential",
"presence": "div.actions"
@@ -9342,29 +10113,7 @@
],
"id": "999c2b81-8c59-43d0-b73e-cd76b71a2b7c",
"last_modified": 1670498155651
- },
- {
- "schema": 1670460527205,
- "cookies": {
- "optIn": [
- {
- "name": "d_prefs",
- "value": "MToxLGNvbnNlbnRfdmVyc2lvbjoyLHRleHRfdmVyc2lvbjoxMDAw"
- }
- ],
- "optOut": [
- {
- "name": "d_prefs",
- "value": "MjoxLGNvbnNlbnRfdmVyc2lvbjoyLHRleHRfdmVyc2lvbjoxMDAw"
- }
- ]
- },
- "domains": [
- "twitter.com"
- ],
- "id": "05b3b417-c4c7-4ed0-a3cf-43053e8b33ab",
- "last_modified": 1670498155641
}
],
- "timestamp": 1711550955136
+ "timestamp": 1714811640008
}
diff --git a/services/settings/dumps/main/devtools-compatibility-browsers.json b/services/settings/dumps/main/devtools-compatibility-browsers.json
index 6cf0847350..4f78ce96d0 100644
--- a/services/settings/dumps/main/devtools-compatibility-browsers.json
+++ b/services/settings/dumps/main/devtools-compatibility-browsers.json
@@ -1,238 +1,247 @@
{
"data": [
{
- "name": "Deno",
- "schema": 1712707507752,
- "status": "current",
- "version": "1.42",
- "browserid": "deno",
- "id": "a308f3c2-cc19-4a1e-825f-898696606328",
- "last_modified": 1712840749681
- },
- {
- "name": "Edge",
- "schema": 1712707507922,
+ "name": "Firefox",
+ "schema": 1715731507143,
"status": "planned",
- "version": "126",
- "browserid": "edge",
- "id": "c8bf4918-03b7-4be2-bf75-4d6139dbd7c9",
- "last_modified": 1712840749678
+ "version": "129",
+ "browserid": "firefox",
+ "id": "aed9aeed-2d00-44d3-9b04-065a3df6af27",
+ "last_modified": 1715839095932
},
{
- "name": "Safari",
- "schema": 1712707507975,
- "status": "beta",
- "version": "17.5",
- "browserid": "safari",
- "id": "24e30aff-fbf8-4a96-a036-84f970447d4b",
- "last_modified": 1712840749675
+ "name": "Firefox for Android",
+ "schema": 1715731507714,
+ "status": "planned",
+ "version": "129",
+ "browserid": "firefox_android",
+ "id": "0e014c85-acab-44d6-8108-3441175573e2",
+ "last_modified": 1715839095930
},
{
"name": "Safari on iOS",
- "schema": 1712707508032,
- "status": "beta",
+ "schema": 1715731507984,
+ "status": "current",
"version": "17.5",
"browserid": "safari_ios",
"id": "4375a82d-f2f1-4883-8da7-0aedfb05b8f9",
- "last_modified": 1712840749673
- },
- {
- "name": "Edge",
- "schema": 1712707507808,
- "status": "beta",
- "version": "124",
- "browserid": "edge",
- "id": "3837dc37-38b7-483b-82b3-c5593e7a4c91",
- "last_modified": 1712840749668
+ "last_modified": 1715839095923
},
{
- "name": "Edge",
- "schema": 1712707507867,
- "status": "nightly",
- "version": "125",
- "browserid": "edge",
- "id": "f1147d5f-d690-43d0-879d-117c6ca24a16",
- "last_modified": 1712840749665
+ "name": "Safari",
+ "schema": 1715731507854,
+ "status": "current",
+ "version": "17.5",
+ "browserid": "safari",
+ "id": "24e30aff-fbf8-4a96-a036-84f970447d4b",
+ "last_modified": 1715839095920
},
{
"name": "Firefox",
- "schema": 1711497908121,
- "status": "planned",
+ "schema": 1715731506990,
+ "status": "beta",
"version": "127",
"browserid": "firefox",
"id": "1477a1c3-a8be-4e6f-916e-8cf8eb789e3f",
- "last_modified": 1711547229147
+ "last_modified": 1715839095918
},
{
"name": "Firefox for Android",
- "schema": 1711497908436,
- "status": "planned",
+ "schema": 1715731507415,
+ "status": "beta",
"version": "127",
"browserid": "firefox_android",
"id": "13f02b93-14c9-4ca4-937d-0a83fb7fb3a5",
- "last_modified": 1711547229144
- },
- {
- "name": "Firefox",
- "schema": 1711497908007,
- "status": "beta",
- "version": "125",
- "browserid": "firefox",
- "id": "5ae5bd40-deb0-40c4-bba6-cd411b78ee16",
- "last_modified": 1711547229141
- },
- {
- "name": "Firefox for Android",
- "schema": 1711497908310,
- "status": "beta",
- "version": "125",
- "browserid": "firefox_android",
- "id": "a8f570e9-574d-4193-891f-fa8e0a875388",
- "last_modified": 1711547229139
+ "last_modified": 1715839095915
},
{
"name": "Firefox for Android",
- "schema": 1711497908249,
+ "schema": 1715731507341,
"status": "current",
- "version": "124",
+ "version": "126",
"browserid": "firefox_android",
- "id": "1b3c619a-5ca8-4f5f-8f0b-57a3a27a589f",
- "last_modified": 1711547229132
+ "id": "b77524e9-58dc-4196-acbd-41dddc4daea2",
+ "last_modified": 1715839095908
},
{
"name": "Firefox",
- "schema": 1711497907952,
+ "schema": 1715731506911,
"status": "current",
- "version": "124",
+ "version": "126",
"browserid": "firefox",
- "id": "7f93cadc-411f-4e31-938c-cc5bfc173f85",
- "last_modified": 1711547229129
+ "id": "70b05b0b-bbef-486c-901a-ea3221a28fc1",
+ "last_modified": 1715839095906
},
{
"name": "Firefox for Android",
- "schema": 1711497908374,
+ "schema": 1715731507485,
"status": "nightly",
- "version": "126",
+ "version": "128",
"browserid": "firefox_android",
- "id": "b77524e9-58dc-4196-acbd-41dddc4daea2",
- "last_modified": 1711547229127
+ "id": "05aa43eb-3966-4fc1-8b33-53c493448d2d",
+ "last_modified": 1715839095903
},
{
"name": "Firefox",
- "schema": 1711497908064,
+ "schema": 1715731507063,
"status": "nightly",
- "version": "126",
+ "version": "128",
"browserid": "firefox",
- "id": "70b05b0b-bbef-486c-901a-ea3221a28fc1",
- "last_modified": 1711547229124
+ "id": "565161dc-52d8-4cb1-8cf3-8171b960f9e4",
+ "last_modified": 1715839095900
},
{
- "name": "Edge",
- "schema": 1711497907820,
+ "name": "Node.js",
+ "schema": 1715126727137,
"status": "current",
- "version": "123",
- "browserid": "edge",
- "id": "d0c3d84f-8d27-455b-8746-7e25607e5b78",
- "last_modified": 1711547229120
+ "version": "22.0.0",
+ "browserid": "nodejs",
+ "id": "c28dfac7-c7de-4e20-8212-abc7c0de635a",
+ "last_modified": 1715589742262
},
{
- "name": "WebView Android",
- "schema": 1710547503853,
+ "name": "Chrome",
+ "schema": 1715385903539,
"status": "beta",
- "version": "124",
- "browserid": "webview_android",
- "id": "2dd2f70c-7c64-4aee-a05e-a0eb05d29ed5",
- "last_modified": 1710742064656
+ "version": "126",
+ "browserid": "chrome",
+ "id": "329bb17c-2556-40a6-8e88-eb2fe353913a",
+ "last_modified": 1715589742259
},
{
- "name": "Chrome",
- "schema": 1710547503371,
+ "name": "Chrome Android",
+ "schema": 1715385903774,
"status": "beta",
- "version": "124",
- "browserid": "chrome",
- "id": "f26cb7b0-cf29-4c33-8fb7-a2cc466a7e3c",
- "last_modified": 1710742064653
+ "version": "126",
+ "browserid": "chrome_android",
+ "id": "e8108829-a3d5-4363-86c9-7e9f1015c2fd",
+ "last_modified": 1715589742256
},
{
- "name": "Chrome",
- "schema": 1710547503307,
+ "name": "Opera",
+ "schema": 1715385903851,
+ "status": "nightly",
+ "version": "111",
+ "browserid": "opera",
+ "id": "880cc50c-e430-43ac-aa57-d1f02fae0e30",
+ "last_modified": 1715589742254
+ },
+ {
+ "name": "Opera Android",
+ "schema": 1715385904000,
"status": "current",
- "version": "123",
- "browserid": "chrome",
- "id": "66e79095-2721-4a9e-9139-1a5f1afe1311",
- "last_modified": 1710742064649
+ "version": "82",
+ "browserid": "opera_android",
+ "id": "dad8a164-2e60-4363-a9b2-169aa15ea735",
+ "last_modified": 1715589742251
+ },
+ {
+ "name": "WebView Android",
+ "schema": 1715385904222,
+ "status": "beta",
+ "version": "126",
+ "browserid": "webview_android",
+ "id": "97b0b530-34a9-4e02-949f-d525bf6bc793",
+ "last_modified": 1715589742248
},
{
"name": "WebView Android",
- "schema": 1710547503750,
+ "schema": 1715385904147,
"status": "current",
- "version": "123",
+ "version": "125",
"browserid": "webview_android",
- "id": "97f38fec-64b0-4f0f-addc-03ac1b11d512",
- "last_modified": 1710742064638
+ "id": "c9ec1a0b-5d6d-4727-9f93-fb4dd3f1979f",
+ "last_modified": 1715589742235
},
{
"name": "Chrome Android",
- "schema": 1710547503606,
- "status": "beta",
- "version": "124",
+ "schema": 1715385903692,
+ "status": "current",
+ "version": "125",
"browserid": "chrome_android",
- "id": "6946fbe1-bfff-4b64-aead-f001f0e486de",
- "last_modified": 1710742064634
+ "id": "7cb3db05-b658-4c6c-a57a-c17a1ceefd38",
+ "last_modified": 1715589742230
},
{
- "name": "Chrome Android",
- "schema": 1710547503508,
+ "name": "Chrome",
+ "schema": 1715385903420,
"status": "current",
- "version": "123",
- "browserid": "chrome_android",
- "id": "a0ce8ad2-5c66-4e9e-987a-8a66c30e13f5",
- "last_modified": 1710742064631
+ "version": "125",
+ "browserid": "chrome",
+ "id": "98f20ad9-f47a-476b-b376-be58dbcc76ff",
+ "last_modified": 1715589742227
},
{
- "name": "Safari",
- "schema": 1709769903331,
+ "name": "Edge",
+ "schema": 1714867506498,
+ "status": "planned",
+ "version": "127",
+ "browserid": "edge",
+ "id": "9e227c6c-b6ca-4c69-868c-e133a0ee9dbd",
+ "last_modified": 1715003394961
+ },
+ {
+ "name": "Edge",
+ "schema": 1714638388703,
+ "status": "beta",
+ "version": "125",
+ "browserid": "edge",
+ "id": "f1147d5f-d690-43d0-879d-117c6ca24a16",
+ "last_modified": 1715003394958
+ },
+ {
+ "name": "Edge",
+ "schema": 1714867506401,
+ "status": "nightly",
+ "version": "126",
+ "browserid": "edge",
+ "id": "c8bf4918-03b7-4be2-bf75-4d6139dbd7c9",
+ "last_modified": 1715003394956
+ },
+ {
+ "name": "Samsung Internet",
+ "schema": 1714521906708,
"status": "current",
- "version": "17.4",
- "browserid": "safari",
- "id": "380463f2-6aa8-499e-b186-5f80cf4cc573",
- "last_modified": 1709801393999
+ "version": "25.0",
+ "browserid": "samsunginternet_android",
+ "id": "91fb10f8-ce37-4722-9eac-296c08d297c6",
+ "last_modified": 1714638388565
},
{
- "name": "Safari on iOS",
- "schema": 1709769903472,
+ "name": "Edge",
+ "schema": 1714521906580,
"status": "current",
- "version": "17.4",
- "browserid": "safari_ios",
- "id": "b99772c5-e366-42c6-b2db-330aca62dba5",
- "last_modified": 1709801393995
+ "version": "124",
+ "browserid": "edge",
+ "id": "3837dc37-38b7-483b-82b3-c5593e7a4c91",
+ "last_modified": 1714638388557
},
{
"name": "Opera",
- "schema": 1708473904223,
- "status": "beta",
- "version": "108",
+ "schema": 1713917107636,
+ "status": "current",
+ "version": "109",
"browserid": "opera",
- "id": "765d6fa9-857a-4918-9a85-fd40f73c9159",
- "last_modified": 1708507560606
+ "id": "bd13befe-c011-403f-a0d5-b6f691ff03fb",
+ "last_modified": 1713943930230
},
{
"name": "Opera",
- "schema": 1708473904160,
- "status": "current",
- "version": "107",
+ "schema": 1713917107684,
+ "status": "beta",
+ "version": "110",
"browserid": "opera",
- "id": "8d9d78bb-ebc3-4931-a98b-bdefc339061d",
- "last_modified": 1708507560573
+ "id": "08a3849f-52fd-40ae-9054-b0e33272d279",
+ "last_modified": 1713943930228
},
{
- "name": "Opera Android",
- "schema": 1706313908456,
+ "name": "Deno",
+ "schema": 1712707507752,
"status": "current",
- "version": "80",
- "browserid": "opera_android",
- "id": "534dc626-14f0-479e-9912-043e3da31e91",
- "last_modified": 1706515991120
+ "version": "1.42",
+ "browserid": "deno",
+ "id": "a308f3c2-cc19-4a1e-825f-898696606328",
+ "last_modified": 1712840749681
},
{
"name": "Node.js",
@@ -244,24 +253,6 @@
"last_modified": 1702890886929
},
{
- "name": "Node.js",
- "schema": 1700957104515,
- "status": "current",
- "version": "21.2.0",
- "browserid": "nodejs",
- "id": "b9979c74-bcbd-478d-99bc-55b92fcb2833",
- "last_modified": 1701078578067
- },
- {
- "name": "Samsung Internet",
- "schema": 1700352303815,
- "status": "current",
- "version": "23.0",
- "browserid": "samsunginternet_android",
- "id": "b6194ce4-1588-4c83-9a7c-54081c540d01",
- "last_modified": 1700557930484
- },
- {
"name": "Firefox for Android",
"schema": 1698797104411,
"status": "esr",
@@ -298,5 +289,5 @@
"last_modified": 1665656484764
}
],
- "timestamp": 1712840749681
+ "timestamp": 1715839095932
}
diff --git a/services/settings/dumps/main/moz.build b/services/settings/dumps/main/moz.build
index 6352c00f5d..af9b22cf24 100644
--- a/services/settings/dumps/main/moz.build
+++ b/services/settings/dumps/main/moz.build
@@ -2,120 +2,130 @@
# 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/.
+if CONFIG["MOZ_BUILD_APP"] == "browser":
+ # These collections are only referenced from browser/
+ FINAL_TARGET_FILES.defaults.settings.main += [
+ "language-dictionaries.json",
+ "search-telemetry-v2.json",
+ "sites-classification.json",
+ "top-sites.json",
+ ]
+
+# These collections are referenced in toolkit/ or other core code, however
+# Android/iOS don't use/want the dumps.
+if not CONFIG["MOZ_BUILD_APP"].startswith("mobile/"):
+ FINAL_TARGET_FILES.defaults.settings.main += [
+ "anti-tracking-url-decoration.json",
+ "cookie-banner-rules-list.json",
+ "devtools-compatibility-browsers.json",
+ "devtools-devices.json",
+ "example.json",
+ "hijack-blocklists.json",
+ "password-rules.json",
+ "search-config-icons.json",
+ "search-config-overrides-v2.json",
+ "search-config-overrides.json",
+ "search-config-v2.json",
+ "search-config.json",
+ "search-default-override-allowlist.json",
+ "translations-models.json",
+ "translations-wasm.json",
+ "url-classifier-skip-urls.json",
+ "websites-with-shared-credential-backends.json",
+ ]
+
+# These collections are referenced in toolkit/ or other core code.
FINAL_TARGET_FILES.defaults.settings.main += [
- "anti-tracking-url-decoration.json",
- "cookie-banner-rules-list.json",
- "devtools-compatibility-browsers.json",
- "devtools-devices.json",
- "example.json",
- "hijack-blocklists.json",
- "language-dictionaries.json",
"password-recipes.json",
- "password-rules.json",
- "search-config-icons.json",
- "search-config-overrides-v2.json",
- "search-config-overrides.json",
- "search-config-v2.json",
- "search-config.json",
- "search-default-override-allowlist.json",
- "search-telemetry-v2.json",
- "sites-classification.json",
- "top-sites.json",
- "translations-identification-models.json",
- "translations-models.json",
- "translations-wasm.json",
- "url-classifier-skip-urls.json",
- "websites-with-shared-credential-backends.json",
-]
-
-FINAL_TARGET_FILES.defaults.settings.main["search-config-icons"] += [
- "search-config-icons/001500a9-1a6c-3f5a-ba15-a5f5a075d256",
- "search-config-icons/001500a9-1a6c-3f5a-ba15-a5f5a075d256.meta.json",
- "search-config-icons/06cf7432-efd7-f244-927b-5e423005e1ea",
- "search-config-icons/06cf7432-efd7-f244-927b-5e423005e1ea.meta.json",
- "search-config-icons/0d7668a8-c3f4-cfee-cbc8-536511528937",
- "search-config-icons/0d7668a8-c3f4-cfee-cbc8-536511528937.meta.json",
- "search-config-icons/0eec5640-6fde-d6fe-322a-c72c6d5bd5a2",
- "search-config-icons/0eec5640-6fde-d6fe-322a-c72c6d5bd5a2.meta.json",
- "search-config-icons/101ce01d-2691-b729-7f16-9d389803384b",
- "search-config-icons/101ce01d-2691-b729-7f16-9d389803384b.meta.json",
- "search-config-icons/177aba42-9bed-4078-e36b-580e8794cd7f",
- "search-config-icons/177aba42-9bed-4078-e36b-580e8794cd7f.meta.json",
- "search-config-icons/25de0352-aabb-d31f-15f7-bf9299fb004c",
- "search-config-icons/25de0352-aabb-d31f-15f7-bf9299fb004c.meta.json",
- "search-config-icons/2bbe48f4-d3b8-c9e0-86e3-a54c37ec3335",
- "search-config-icons/2bbe48f4-d3b8-c9e0-86e3-a54c37ec3335.meta.json",
- "search-config-icons/2e835b0e-9709-d1bb-9725-87f59f3445ca",
- "search-config-icons/2e835b0e-9709-d1bb-9725-87f59f3445ca.meta.json",
- "search-config-icons/32d26d19-aeb0-5c01-32e8-f8970be9246f",
- "search-config-icons/32d26d19-aeb0-5c01-32e8-f8970be9246f.meta.json",
- "search-config-icons/47da97b5-600f-c450-fd15-a52bb2169c11",
- "search-config-icons/47da97b5-600f-c450-fd15-a52bb2169c11.meta.json",
- "search-config-icons/4e271681-3e0f-91ac-9750-03f665efc171",
- "search-config-icons/4e271681-3e0f-91ac-9750-03f665efc171.meta.json",
- "search-config-icons/50f6171f-8e7a-b41b-862e-f97397038fb2",
- "search-config-icons/50f6171f-8e7a-b41b-862e-f97397038fb2.meta.json",
- "search-config-icons/5ded611d-44b2-dc46-fd67-fb116888d75d",
- "search-config-icons/5ded611d-44b2-dc46-fd67-fb116888d75d.meta.json",
- "search-config-icons/5e03d6f4-6ee9-8bc8-cf22-7a5f2cf55c41",
- "search-config-icons/5e03d6f4-6ee9-8bc8-cf22-7a5f2cf55c41.meta.json",
- "search-config-icons/6a83583a-f0ba-fd39-2fdb-fd2b6990ea3b",
- "search-config-icons/6a83583a-f0ba-fd39-2fdb-fd2b6990ea3b.meta.json",
- "search-config-icons/6d10d702-7bd6-1452-90a5-3df665a38f66",
- "search-config-icons/6d10d702-7bd6-1452-90a5-3df665a38f66.meta.json",
- "search-config-icons/6f4da442-d31e-28f8-03af-797d16bbdd27",
- "search-config-icons/6f4da442-d31e-28f8-03af-797d16bbdd27.meta.json",
- "search-config-icons/70fdd651-6c50-b7bb-09ec-7e85da259173",
- "search-config-icons/70fdd651-6c50-b7bb-09ec-7e85da259173.meta.json",
- "search-config-icons/74793ce1-a918-a5eb-d3c0-2aadaff3c88c",
- "search-config-icons/74793ce1-a918-a5eb-d3c0-2aadaff3c88c.meta.json",
- "search-config-icons/7bbe6c5c-fdb8-2845-a4f4-e1382e708a0e",
- "search-config-icons/7bbe6c5c-fdb8-2845-a4f4-e1382e708a0e.meta.json",
- "search-config-icons/7efbed51-813c-581d-d8d3-f8758434e451",
- "search-config-icons/7efbed51-813c-581d-d8d3-f8758434e451.meta.json",
- "search-config-icons/84bb4962-e571-227a-9ef6-2ac5f2aac361",
- "search-config-icons/84bb4962-e571-227a-9ef6-2ac5f2aac361.meta.json",
- "search-config-icons/87ac4cde-f581-398b-1e32-eb4079183b36",
- "search-config-icons/87ac4cde-f581-398b-1e32-eb4079183b36.meta.json",
- "search-config-icons/8831ce10-b1e4-6eb4-4975-83c67457288e",
- "search-config-icons/8831ce10-b1e4-6eb4-4975-83c67457288e.meta.json",
- "search-config-icons/890de5c4-0941-a116-473a-5d240e79497a",
- "search-config-icons/890de5c4-0941-a116-473a-5d240e79497a.meta.json",
- "search-config-icons/91a9672d-e945-8e1e-0996-aefdb0190716",
- "search-config-icons/91a9672d-e945-8e1e-0996-aefdb0190716.meta.json",
- "search-config-icons/96327a73-c433-5eb4-a16d-b090cadfb80b",
- "search-config-icons/96327a73-c433-5eb4-a16d-b090cadfb80b.meta.json",
- "search-config-icons/a06db97d-1210-ea2e-5474-0e2f7d295bfd",
- "search-config-icons/a06db97d-1210-ea2e-5474-0e2f7d295bfd.meta.json",
- "search-config-icons/a06dc3fd-4bdb-41f3-2ebc-4cbed06a9bd3",
- "search-config-icons/a06dc3fd-4bdb-41f3-2ebc-4cbed06a9bd3.meta.json",
- "search-config-icons/a2c7d4e9-f770-51e1-0963-3c2c8401631d",
- "search-config-icons/a2c7d4e9-f770-51e1-0963-3c2c8401631d.meta.json",
- "search-config-icons/b64f09fd-52d1-c48e-af23-4ce918e7bf3b",
- "search-config-icons/b64f09fd-52d1-c48e-af23-4ce918e7bf3b.meta.json",
- "search-config-icons/b8ca5a94-8fff-27ad-6e00-96e244a32e21",
- "search-config-icons/b8ca5a94-8fff-27ad-6e00-96e244a32e21.meta.json",
- "search-config-icons/c411adc1-9661-4fb5-a4c1-8cfe74911943",
- "search-config-icons/c411adc1-9661-4fb5-a4c1-8cfe74911943.meta.json",
- "search-config-icons/cbf9e891-d079-2b28-5617-283450d463dd",
- "search-config-icons/cbf9e891-d079-2b28-5617-283450d463dd.meta.json",
- "search-config-icons/d87f251c-3e12-a8bf-e2d0-afd43d36c5f9",
- "search-config-icons/d87f251c-3e12-a8bf-e2d0-afd43d36c5f9.meta.json",
- "search-config-icons/e02f23df-8d48-2b1b-3b5c-6dd27302c61c",
- "search-config-icons/e02f23df-8d48-2b1b-3b5c-6dd27302c61c.meta.json",
- "search-config-icons/e718e983-09aa-e8f6-b25f-cd4b395d4785",
- "search-config-icons/e718e983-09aa-e8f6-b25f-cd4b395d4785.meta.json",
- "search-config-icons/e7547f62-187b-b641-d462-e54a3f813d9a",
- "search-config-icons/e7547f62-187b-b641-d462-e54a3f813d9a.meta.json",
- "search-config-icons/f312610a-ebfb-a106-ea92-fd643c5d3636",
- "search-config-icons/f312610a-ebfb-a106-ea92-fd643c5d3636.meta.json",
- "search-config-icons/fa0fc42c-d91d-fca7-34eb-806ff46062dc",
- "search-config-icons/fa0fc42c-d91d-fca7-34eb-806ff46062dc.meta.json",
- "search-config-icons/fca3e3ee-56cd-f474-dc31-307fd24a891d",
- "search-config-icons/fca3e3ee-56cd-f474-dc31-307fd24a891d.meta.json",
- "search-config-icons/fed4f021-ff3e-942a-010e-afa43fda2136",
- "search-config-icons/fed4f021-ff3e-942a-010e-afa43fda2136.meta.json",
]
+# These search config icons only apply to desktop.
if CONFIG["MOZ_BUILD_APP"] == "browser":
- DIST_SUBDIR = "browser"
+ FINAL_TARGET_FILES.defaults.settings.main["search-config-icons"] += [
+ "search-config-icons/001500a9-1a6c-3f5a-ba15-a5f5a075d256",
+ "search-config-icons/001500a9-1a6c-3f5a-ba15-a5f5a075d256.meta.json",
+ "search-config-icons/06cf7432-efd7-f244-927b-5e423005e1ea",
+ "search-config-icons/06cf7432-efd7-f244-927b-5e423005e1ea.meta.json",
+ "search-config-icons/0d7668a8-c3f4-cfee-cbc8-536511528937",
+ "search-config-icons/0d7668a8-c3f4-cfee-cbc8-536511528937.meta.json",
+ "search-config-icons/0eec5640-6fde-d6fe-322a-c72c6d5bd5a2",
+ "search-config-icons/0eec5640-6fde-d6fe-322a-c72c6d5bd5a2.meta.json",
+ "search-config-icons/101ce01d-2691-b729-7f16-9d389803384b",
+ "search-config-icons/101ce01d-2691-b729-7f16-9d389803384b.meta.json",
+ "search-config-icons/177aba42-9bed-4078-e36b-580e8794cd7f",
+ "search-config-icons/177aba42-9bed-4078-e36b-580e8794cd7f.meta.json",
+ "search-config-icons/25de0352-aabb-d31f-15f7-bf9299fb004c",
+ "search-config-icons/25de0352-aabb-d31f-15f7-bf9299fb004c.meta.json",
+ "search-config-icons/2bbe48f4-d3b8-c9e0-86e3-a54c37ec3335",
+ "search-config-icons/2bbe48f4-d3b8-c9e0-86e3-a54c37ec3335.meta.json",
+ "search-config-icons/2e835b0e-9709-d1bb-9725-87f59f3445ca",
+ "search-config-icons/2e835b0e-9709-d1bb-9725-87f59f3445ca.meta.json",
+ "search-config-icons/32d26d19-aeb0-5c01-32e8-f8970be9246f",
+ "search-config-icons/32d26d19-aeb0-5c01-32e8-f8970be9246f.meta.json",
+ "search-config-icons/47da97b5-600f-c450-fd15-a52bb2169c11",
+ "search-config-icons/47da97b5-600f-c450-fd15-a52bb2169c11.meta.json",
+ "search-config-icons/4e271681-3e0f-91ac-9750-03f665efc171",
+ "search-config-icons/4e271681-3e0f-91ac-9750-03f665efc171.meta.json",
+ "search-config-icons/50f6171f-8e7a-b41b-862e-f97397038fb2",
+ "search-config-icons/50f6171f-8e7a-b41b-862e-f97397038fb2.meta.json",
+ "search-config-icons/5ded611d-44b2-dc46-fd67-fb116888d75d",
+ "search-config-icons/5ded611d-44b2-dc46-fd67-fb116888d75d.meta.json",
+ "search-config-icons/5e03d6f4-6ee9-8bc8-cf22-7a5f2cf55c41",
+ "search-config-icons/5e03d6f4-6ee9-8bc8-cf22-7a5f2cf55c41.meta.json",
+ "search-config-icons/6a83583a-f0ba-fd39-2fdb-fd2b6990ea3b",
+ "search-config-icons/6a83583a-f0ba-fd39-2fdb-fd2b6990ea3b.meta.json",
+ "search-config-icons/6d10d702-7bd6-1452-90a5-3df665a38f66",
+ "search-config-icons/6d10d702-7bd6-1452-90a5-3df665a38f66.meta.json",
+ "search-config-icons/6f4da442-d31e-28f8-03af-797d16bbdd27",
+ "search-config-icons/6f4da442-d31e-28f8-03af-797d16bbdd27.meta.json",
+ "search-config-icons/70fdd651-6c50-b7bb-09ec-7e85da259173",
+ "search-config-icons/70fdd651-6c50-b7bb-09ec-7e85da259173.meta.json",
+ "search-config-icons/74793ce1-a918-a5eb-d3c0-2aadaff3c88c",
+ "search-config-icons/74793ce1-a918-a5eb-d3c0-2aadaff3c88c.meta.json",
+ "search-config-icons/7bbe6c5c-fdb8-2845-a4f4-e1382e708a0e",
+ "search-config-icons/7bbe6c5c-fdb8-2845-a4f4-e1382e708a0e.meta.json",
+ "search-config-icons/7efbed51-813c-581d-d8d3-f8758434e451",
+ "search-config-icons/7efbed51-813c-581d-d8d3-f8758434e451.meta.json",
+ "search-config-icons/84bb4962-e571-227a-9ef6-2ac5f2aac361",
+ "search-config-icons/84bb4962-e571-227a-9ef6-2ac5f2aac361.meta.json",
+ "search-config-icons/87ac4cde-f581-398b-1e32-eb4079183b36",
+ "search-config-icons/87ac4cde-f581-398b-1e32-eb4079183b36.meta.json",
+ "search-config-icons/8831ce10-b1e4-6eb4-4975-83c67457288e",
+ "search-config-icons/8831ce10-b1e4-6eb4-4975-83c67457288e.meta.json",
+ "search-config-icons/890de5c4-0941-a116-473a-5d240e79497a",
+ "search-config-icons/890de5c4-0941-a116-473a-5d240e79497a.meta.json",
+ "search-config-icons/91a9672d-e945-8e1e-0996-aefdb0190716",
+ "search-config-icons/91a9672d-e945-8e1e-0996-aefdb0190716.meta.json",
+ "search-config-icons/96327a73-c433-5eb4-a16d-b090cadfb80b",
+ "search-config-icons/96327a73-c433-5eb4-a16d-b090cadfb80b.meta.json",
+ "search-config-icons/a06db97d-1210-ea2e-5474-0e2f7d295bfd",
+ "search-config-icons/a06db97d-1210-ea2e-5474-0e2f7d295bfd.meta.json",
+ "search-config-icons/a06dc3fd-4bdb-41f3-2ebc-4cbed06a9bd3",
+ "search-config-icons/a06dc3fd-4bdb-41f3-2ebc-4cbed06a9bd3.meta.json",
+ "search-config-icons/a2c7d4e9-f770-51e1-0963-3c2c8401631d",
+ "search-config-icons/a2c7d4e9-f770-51e1-0963-3c2c8401631d.meta.json",
+ "search-config-icons/b64f09fd-52d1-c48e-af23-4ce918e7bf3b",
+ "search-config-icons/b64f09fd-52d1-c48e-af23-4ce918e7bf3b.meta.json",
+ "search-config-icons/b8ca5a94-8fff-27ad-6e00-96e244a32e21",
+ "search-config-icons/b8ca5a94-8fff-27ad-6e00-96e244a32e21.meta.json",
+ "search-config-icons/c411adc1-9661-4fb5-a4c1-8cfe74911943",
+ "search-config-icons/c411adc1-9661-4fb5-a4c1-8cfe74911943.meta.json",
+ "search-config-icons/cbf9e891-d079-2b28-5617-283450d463dd",
+ "search-config-icons/cbf9e891-d079-2b28-5617-283450d463dd.meta.json",
+ "search-config-icons/d87f251c-3e12-a8bf-e2d0-afd43d36c5f9",
+ "search-config-icons/d87f251c-3e12-a8bf-e2d0-afd43d36c5f9.meta.json",
+ "search-config-icons/e02f23df-8d48-2b1b-3b5c-6dd27302c61c",
+ "search-config-icons/e02f23df-8d48-2b1b-3b5c-6dd27302c61c.meta.json",
+ "search-config-icons/e718e983-09aa-e8f6-b25f-cd4b395d4785",
+ "search-config-icons/e718e983-09aa-e8f6-b25f-cd4b395d4785.meta.json",
+ "search-config-icons/e7547f62-187b-b641-d462-e54a3f813d9a",
+ "search-config-icons/e7547f62-187b-b641-d462-e54a3f813d9a.meta.json",
+ "search-config-icons/f312610a-ebfb-a106-ea92-fd643c5d3636",
+ "search-config-icons/f312610a-ebfb-a106-ea92-fd643c5d3636.meta.json",
+ "search-config-icons/fa0fc42c-d91d-fca7-34eb-806ff46062dc",
+ "search-config-icons/fa0fc42c-d91d-fca7-34eb-806ff46062dc.meta.json",
+ "search-config-icons/fca3e3ee-56cd-f474-dc31-307fd24a891d",
+ "search-config-icons/fca3e3ee-56cd-f474-dc31-307fd24a891d.meta.json",
+ "search-config-icons/fed4f021-ff3e-942a-010e-afa43fda2136",
+ "search-config-icons/fed4f021-ff3e-942a-010e-afa43fda2136.meta.json",
+ ]
diff --git a/services/settings/dumps/main/search-config-v2.json b/services/settings/dumps/main/search-config-v2.json
index e360ad9ee3..ec2e2cd829 100644
--- a/services/settings/dumps/main/search-config-v2.json
+++ b/services/settings/dumps/main/search-config-v2.json
@@ -1,109 +1,334 @@
{
"data": [
{
+ "globalDefault": "google",
+ "id": "f3891684-2348-4e7a-9765-0c5d2d0ab1b9",
+ "last_modified": 1702906502241,
+ "recordType": "defaultEngines",
+ "schema": 1702901837584,
+ "specificDefaults": [
+ {
+ "default": "baidu",
+ "environment": {
+ "locales": [
+ "zh-CN"
+ ],
+ "regions": [
+ "cn"
+ ]
+ }
+ },
+ {
+ "default": "baidu",
+ "environment": {
+ "distributions": [
+ "MozillaOnline"
+ ]
+ }
+ },
+ {
+ "default": "1und1",
+ "environment": {
+ "distributions": [
+ "1und1"
+ ]
+ }
+ },
+ {
+ "default": "webde",
+ "environment": {
+ "distributions": [
+ "webde"
+ ]
+ }
+ },
+ {
+ "default": "mailcom",
+ "environment": {
+ "distributions": [
+ "mail.com"
+ ]
+ }
+ },
+ {
+ "default": "qwant",
+ "environment": {
+ "distributions": [
+ "qwant-001",
+ "qwant-002"
+ ]
+ }
+ },
+ {
+ "default": "gmx-de",
+ "environment": {
+ "distributions": [
+ "gmx"
+ ]
+ }
+ },
+ {
+ "default": "gmx-en-GB",
+ "environment": {
+ "distributions": [
+ "gmxcouk"
+ ]
+ }
+ },
+ {
+ "default": "gmx-es",
+ "environment": {
+ "distributions": [
+ "gmxes"
+ ]
+ }
+ },
+ {
+ "default": "gmx-fr",
+ "environment": {
+ "distributions": [
+ "gmxfr"
+ ]
+ }
+ }
+ ]
+ },
+ {
"base": {
- "name": "Qwant",
+ "classification": "unknown",
+ "name": "1&1 Suche",
"urls": {
"search": {
- "base": "https://www.qwant.com/",
+ "base": "https://go.1und1.de/br/moz_search_web/",
"params": [
{
- "name": "client",
- "value": "{partnerCode}"
+ "name": "enc",
+ "value": "UTF-8"
}
],
"searchTermParamName": "q"
},
"suggestions": {
- "base": "https://api.qwant.com/api/suggest/",
+ "base": "https://suggestplugin.ui-portal.de/s",
"params": [
{
- "name": "client",
- "value": "opensearch"
+ "name": "brand",
+ "value": "1und1"
+ },
+ {
+ "name": "origin",
+ "value": "br_splugin_ff_sg"
}
],
"searchTermParamName": "q"
}
- },
- "aliases": [
- "qwant"
- ],
- "partnerCode": "brz-moz",
- "classification": "general"
+ }
},
- "schema": 1710460806956,
+ "id": "e870e51d-efed-41d3-8d65-f833ee8e9d96",
+ "identifier": "1und1",
+ "last_modified": 1702906502336,
+ "recordType": "engine",
+ "schema": 1702901817337,
+ "variants": [
+ {
+ "environment": {
+ "distributions": [
+ "1und1"
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "base": {
+ "classification": "unknown",
+ "name": "Allegro",
+ "urls": {
+ "search": {
+ "base": "https://allegro.pl/listing",
+ "params": [
+ {
+ "name": "sourceid",
+ "value": "Mozilla-search"
+ }
+ ],
+ "searchTermParamName": "string"
+ }
+ }
+ },
+ "id": "3cc3f699-284a-4320-b131-395d9b218ade",
+ "identifier": "allegro-pl",
+ "last_modified": 1702906502364,
+ "recordType": "engine",
+ "schema": 1702901811834,
"variants": [
{
"environment": {
"locales": [
- "fr"
+ "pl",
+ "szl"
]
}
- },
+ }
+ ]
+ },
+ {
+ "base": {
+ "aliases": [
+ "amazon"
+ ],
+ "classification": "unknown",
+ "name": "Amazon.co.jp",
+ "urls": {
+ "search": {
+ "base": "https://www.amazon.co.jp/exec/obidos/external-search/",
+ "params": [
+ {
+ "name": "mode",
+ "value": "blended"
+ },
+ {
+ "name": "tag",
+ "value": "mozillajapan-fx-22"
+ },
+ {
+ "name": "sourceid",
+ "value": "Mozilla-search"
+ }
+ ],
+ "searchTermParamName": "field-keywords"
+ }
+ }
+ },
+ "id": "9d089e46-dc94-4d4f-8f17-cc07b59aa9e4",
+ "identifier": "amazon-jp",
+ "last_modified": 1702906502401,
+ "recordType": "engine",
+ "schema": 1702901805111,
+ "variants": [
{
"environment": {
"regions": [
- "be",
- "ch",
- "es",
- "fr",
- "it",
- "nl"
+ "jp"
]
}
- },
+ }
+ ]
+ },
+ {
+ "base": {
+ "aliases": [
+ "amazon"
+ ],
+ "classification": "unknown",
+ "name": "Amazon.com",
+ "urls": {
+ "search": {
+ "base": "https://www.amazon.com/s",
+ "searchTermParamName": "k"
+ }
+ }
+ },
+ "id": "788a2ded-6872-4742-8115-c14dde7a18f9",
+ "identifier": "amazondotcom-us",
+ "last_modified": 1702906502412,
+ "notes": "Amazon.com (us only)",
+ "recordType": "engine",
+ "schema": 1702901802672,
+ "variants": [
{
"environment": {
- "distributions": [
- "qwant-001",
- "qwant-002"
+ "regions": [
+ "us"
]
- },
- "partnerCode": "firefoxqwant",
- "telemetrySuffix": "qwant"
+ }
}
- ],
- "identifier": "qwant",
- "recordType": "engine",
- "id": "2e62746e-b90a-42ee-b0f2-9ed0e1e2eaf0",
- "last_modified": 1710766863306
+ ]
},
{
- "orders": [
+ "base": {
+ "classification": "unknown",
+ "name": "Azerdict",
+ "urls": {
+ "search": {
+ "base": "https://azerdict.com/english/",
+ "searchTermParamName": "word"
+ }
+ }
+ },
+ "id": "786aa916-a331-4b0c-8099-85927dd87be8",
+ "identifier": "azerdict",
+ "last_modified": 1702906502323,
+ "recordType": "engine",
+ "schema": 1702901819798,
+ "variants": [
{
- "order": [
- "baidu",
- "bing",
- "google",
- "wikipedia*"
- ],
"environment": {
- "distributions": [
- "MozillaOnline"
+ "locales": [
+ "az"
]
}
- },
+ }
+ ]
+ },
+ {
+ "base": {
+ "aliases": [
+ "百度",
+ "baidu"
+ ],
+ "classification": "general",
+ "name": "百度",
+ "urls": {
+ "search": {
+ "base": "https://www.baidu.com/baidu",
+ "params": [
+ {
+ "name": "ie",
+ "value": "utf-8"
+ }
+ ],
+ "searchTermParamName": "wd"
+ },
+ "suggestions": {
+ "base": "https://www.baidu.com/su",
+ "params": [
+ {
+ "name": "ie",
+ "value": "utf-8"
+ },
+ {
+ "name": "action",
+ "value": "opensearch"
+ }
+ ],
+ "searchTermParamName": "wd"
+ }
+ }
+ },
+ "id": "ad58537f-f397-46ec-a1a8-935e12f0aab6",
+ "identifier": "baidu",
+ "last_modified": 1702906502749,
+ "recordType": "engine",
+ "schema": 1702901740286,
+ "variants": [
{
- "order": [
- "qwant",
- "qwantjr"
- ],
"environment": {
- "distributions": [
- "qwant-001",
- "qwant-002"
+ "locales": [
+ "zh-CN"
]
}
}
- ],
- "schema": 1707824831520,
- "recordType": "engineOrders",
- "id": "3e1fed64-5ec7-4b1c-bedc-741fe3c59bc3",
- "last_modified": 1707833224345
+ ]
},
{
"base": {
+ "aliases": [
+ "bing"
+ ],
+ "classification": "general",
"name": "Bing",
+ "partnerCode": "MOZI",
"urls": {
"search": {
"base": "https://www.bing.com/search",
@@ -115,19 +340,16 @@
{
"name": "form",
"searchAccessPoint": {
- "newtab": "MOZTSB",
- "homepage": "MOZSPG",
- "searchbar": "MOZSBR",
"addressbar": "MOZLBR",
- "contextmenu": "MOZCON"
+ "contextmenu": "MOZCON",
+ "homepage": "MOZSPG",
+ "newtab": "MOZTSB",
+ "searchbar": "MOZSBR"
}
}
],
"searchTermParamName": "q"
},
- "trending": {
- "base": "https://www.bing.com/osjson.aspx"
- },
"suggestions": {
"base": "https://www.bing.com/osjson.aspx",
"params": [
@@ -137,15 +359,17 @@
}
],
"searchTermParamName": "query"
+ },
+ "trending": {
+ "base": "https://www.bing.com/osjson.aspx"
}
- },
- "aliases": [
- "bing"
- ],
- "partnerCode": "MOZI",
- "classification": "general"
+ }
},
- "schema": 1706918405822,
+ "id": "05645095-d26e-4f20-9137-f24a14a23f28",
+ "identifier": "bing",
+ "last_modified": 1713282817048,
+ "recordType": "engine",
+ "schema": 1713199744323,
"variants": [
{
"environment": {
@@ -234,236 +458,191 @@
"xh",
"zh-CN"
]
+ },
+ "subVariants": [
+ {
+ "environment": {
+ "channels": [
+ "esr"
+ ]
+ },
+ "partnerCode": "MOZR",
+ "telemetrySuffix": "esr"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "base": {
+ "classification": "unknown",
+ "name": "Ordbok",
+ "urls": {
+ "search": {
+ "base": "https://ordbok.uib.no/perl/ordbok.cgi",
+ "params": [
+ {
+ "name": "sourceid",
+ "value": "Mozilla-search"
+ }
+ ],
+ "searchTermParamName": "OPP"
}
- },
+ }
+ },
+ "id": "7ed2240b-b161-4b49-a7fe-35db89544f74",
+ "identifier": "bok-NO",
+ "last_modified": 1702906502320,
+ "recordType": "engine",
+ "schema": 1702901820444,
+ "variants": [
{
"environment": {
- "channels": [
- "esr"
+ "locales": [
+ "nb-NO",
+ "nn-NO"
]
- },
- "partnerCode": "MOZR",
- "telemetrySuffix": "esr"
+ }
}
- ],
- "identifier": "bing",
- "recordType": "engine",
- "id": "05645095-d26e-4f20-9137-f24a14a23f28",
- "last_modified": 1707833224310
+ ]
},
{
"base": {
- "name": "Google",
+ "classification": "unknown",
+ "name": "Ceneje.si",
"urls": {
"search": {
- "base": "https://www.google.com/search",
+ "base": "https://www.ceneje.si/search_new.aspx",
"params": [
{
- "name": "client",
- "value": "{partnerCode}"
- },
- {
- "name": "channel",
- "experimentConfig": "google_channel_row"
+ "name": "FF-SearchBox",
+ "value": "1"
}
],
"searchTermParamName": "q"
- },
- "trending": {
- "base": "https://www.google.com/complete/search",
- "method": "GET",
+ }
+ }
+ },
+ "id": "5e515970-4129-48fc-b0d0-8a61c92903d2",
+ "identifier": "ceneji",
+ "last_modified": 1702906502317,
+ "recordType": "engine",
+ "schema": 1702901821058,
+ "variants": [
+ {
+ "environment": {
+ "locales": [
+ "sl"
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "base": {
+ "classification": "unknown",
+ "name": "Cốc Cốc",
+ "urls": {
+ "search": {
+ "base": "https://coccoc.com/search",
"params": [
{
- "name": "client",
- "value": "firefox"
+ "name": "s",
+ "value": "ff"
},
{
- "name": "channel",
- "value": "ftr"
+ "name": "utm_source",
+ "value": "firefox"
}
],
- "searchTermParamName": "q"
+ "searchTermParamName": "query"
},
"suggestions": {
- "base": "https://www.google.com/complete/search",
+ "base": "https://coccoc.com/composer/autocomplete",
"params": [
{
- "name": "client",
- "value": "firefox"
+ "name": "of",
+ "value": "b"
},
{
- "name": "channel",
- "experimentConfig": "search_rich_suggestions"
+ "name": "s",
+ "value": "ff"
}
],
"searchTermParamName": "q"
}
- },
- "aliases": [
- "google"
- ],
- "partnerCode": "firefox-b-d",
- "classification": "general"
+ }
},
- "schema": 1702901739026,
+ "id": "20104daa-cb8a-40b9-a8c5-2433f4476c3e",
+ "identifier": "coccoc",
+ "last_modified": 1702906502314,
+ "recordType": "engine",
+ "schema": 1702901821664,
"variants": [
{
"environment": {
- "allRegionsAndLocales": true
- },
- "telemetrySuffix": "b-d"
- },
- {
- "environment": {
- "channels": [
- "esr"
- ]
- },
- "partnerCode": "firefox-b-e",
- "telemetrySuffix": "b-e"
- },
- {
- "urls": {
- "search": {
- "params": []
- }
- },
- "environment": {
- "regions": [
- "ru",
- "tr",
- "by",
- "kz"
- ]
- },
- "telemetrySuffix": "com-nocodes"
- },
- {
- "urls": {
- "search": {
- "params": [
- {
- "name": "client",
- "value": "{partnerCode}"
- },
- {
- "name": "channel",
- "experimentConfig": "google_channel_us"
- }
- ]
- }
- },
- "environment": {
- "regions": [
- "us"
+ "locales": [
+ "vi"
]
- },
- "partnerCode": "firefox-b-1-d",
- "telemetrySuffix": "b-1-d"
- },
- {
- "urls": {
- "search": {
- "params": [
- {
- "name": "client",
- "value": "{partnerCode}"
- },
- {
- "name": "channel",
- "experimentConfig": "google_channel_us"
- }
- ]
- }
- },
- "environment": {
- "regions": [
- "us"
+ }
+ }
+ ]
+ },
+ {
+ "base": {
+ "classification": "unknown",
+ "name": "다음",
+ "urls": {
+ "search": {
+ "base": "https://search.daum.net/search",
+ "params": [
+ {
+ "name": "w",
+ "value": "tot"
+ },
+ {
+ "name": "nil_ch",
+ "value": "ffsr"
+ }
],
- "channels": [
- "esr"
- ]
- },
- "partnerCode": "firefox-b-1-e",
- "telemetrySuffix": "b-1-e"
- },
- {
- "urls": {
- "search": {
- "params": [
- {
- "name": "client",
- "value": "{partnerCode}"
- },
- {
- "name": "channel",
- "value": "fs"
- }
- ]
- }
- },
- "environment": {
- "distributions": [
- "canonical",
- "canonical-001"
- ]
- },
- "partnerCode": "ubuntu",
- "telemetrySuffix": "canonical"
- },
- {
- "urls": {
- "search": {
- "params": [
- {
- "name": "client",
- "value": "{partnerCode}"
- },
- {
- "name": "channel",
- "value": "fs"
- }
- ]
- }
- },
- "environment": {
- "distributions": [
- "canonical-002"
- ]
- },
- "partnerCode": "ubuntu-sn",
- "telemetrySuffix": "ubuntu-sn"
- },
- {
- "environment": {
- "distributions": [
- "mint-001"
- ]
+ "searchTermParamName": "q"
},
- "partnerCode": "firefox-b-lm",
- "telemetrySuffix": "b-lm"
- },
+ "suggestions": {
+ "base": "https://suggest.search.daum.net/sushi/opensearch/pc",
+ "params": [
+ {
+ "name": "DA",
+ "value": "JU2"
+ }
+ ],
+ "searchTermParamName": "q"
+ }
+ }
+ },
+ "id": "3330e927-6733-4239-9738-b41c5c460b11",
+ "identifier": "daum-kr",
+ "last_modified": 1702906502311,
+ "recordType": "engine",
+ "schema": 1702901822275,
+ "variants": [
{
"environment": {
- "regions": [
- "us"
- ],
- "distributions": [
- "mint-001"
+ "locales": [
+ "ko"
]
- },
- "partnerCode": "firefox-b-1-lm",
- "telemetrySuffix": "b-1-lm"
+ }
}
- ],
- "identifier": "google",
- "recordType": "engine",
- "id": "7ace4aa1-e762-4f4b-87b9-b23b3c3a930b",
- "last_modified": 1702906502757
+ ]
},
{
"base": {
+ "aliases": [
+ "duckduckgo",
+ "ddg"
+ ],
+ "classification": "general",
"name": "DuckDuckGo",
+ "partnerCode": "ffab",
"urls": {
"search": {
"base": "https://duckduckgo.com/",
@@ -485,29 +664,29 @@
],
"searchTermParamName": "q"
}
- },
- "aliases": [
- "duckduckgo",
- "ddg"
- ],
- "partnerCode": "ffab",
- "classification": "general"
+ }
},
- "schema": 1702901739665,
+ "id": "04e99a38-13ee-47d8-8aa4-64482b3dea99",
+ "identifier": "ddg",
+ "last_modified": 1713282817053,
+ "recordType": "engine",
+ "schema": 1713282081098,
"variants": [
{
"environment": {
"allRegionsAndLocales": true
- }
- },
- {
- "environment": {
- "channels": [
- "esr"
- ]
},
- "partnerCode": "ftsa",
- "telemetrySuffix": "esr"
+ "subVariants": [
+ {
+ "environment": {
+ "channels": [
+ "esr"
+ ]
+ },
+ "partnerCode": "ftsa",
+ "telemetrySuffix": "esr"
+ }
+ ]
},
{
"environment": {
@@ -518,1741 +697,2480 @@
"partnerCode": "lm",
"telemetrySuffix": "lm"
}
- ],
- "identifier": "ddg",
- "recordType": "engine",
- "id": "04e99a38-13ee-47d8-8aa4-64482b3dea99",
- "last_modified": 1702906502754
+ ]
},
{
"base": {
- "name": "百度",
+ "aliases": [
+ "ebay"
+ ],
+ "classification": "unknown",
+ "name": "eBay",
+ "partnerCode": "5338192028",
"urls": {
"search": {
- "base": "https://www.baidu.com/baidu",
+ "base": "https://www.ebay.com/sch/",
"params": [
{
- "name": "ie",
- "value": "utf-8"
+ "name": "toolid",
+ "value": "20004"
+ },
+ {
+ "name": "campid",
+ "value": "{partnerCode}"
+ },
+ {
+ "name": "mkevt",
+ "value": "1"
+ },
+ {
+ "name": "mkcid",
+ "value": "1"
+ },
+ {
+ "name": "mkrid",
+ "value": "711-53200-19255-0"
}
],
- "searchTermParamName": "wd"
+ "searchTermParamName": "kw"
},
"suggestions": {
- "base": "https://www.baidu.com/su",
+ "base": "https://autosug.ebay.com/autosug",
"params": [
{
- "name": "ie",
- "value": "utf-8"
+ "name": "sId",
+ "value": "0"
},
{
- "name": "action",
- "value": "opensearch"
+ "name": "fmt",
+ "value": "osr"
}
],
- "searchTermParamName": "wd"
+ "searchTermParamName": "kwd"
}
- },
- "aliases": [
- "百度",
- "baidu"
- ],
- "classification": "general"
+ }
},
- "schema": 1702901740286,
+ "id": "d8b7ed81-00f3-478a-a835-dc0677d7190a",
+ "identifier": "ebay",
+ "last_modified": 1702906502450,
+ "recordType": "engine",
+ "schema": 1702901794691,
"variants": [
{
"environment": {
"locales": [
- "zh-CN"
+ "en-US"
+ ],
+ "regions": [
+ "us"
]
}
}
- ],
- "identifier": "baidu",
- "recordType": "engine",
- "id": "ad58537f-f397-46ec-a1a8-935e12f0aab6",
- "last_modified": 1702906502749
+ ]
},
{
"base": {
- "name": "Wikipedia (en)",
+ "aliases": [
+ "ebay"
+ ],
+ "classification": "unknown",
+ "name": "eBay",
+ "partnerCode": "5338192028",
"urls": {
"search": {
- "base": "https://en.wikipedia.org/wiki/Special:Search",
+ "base": "https://www.ebay.at/sch/",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
+ "name": "toolid",
+ "value": "20004"
+ },
+ {
+ "name": "campid",
+ "value": "{partnerCode}"
+ },
+ {
+ "name": "mkevt",
+ "value": "1"
+ },
+ {
+ "name": "mkcid",
+ "value": "1"
+ },
+ {
+ "name": "mkrid",
+ "value": "5221-53469-19255-0"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "kw"
},
"suggestions": {
- "base": "https://en.wikipedia.org/w/api.php",
+ "base": "https://autosug.ebay.com/autosug",
"params": [
{
- "name": "action",
- "value": "opensearch"
+ "name": "sId",
+ "value": "16"
+ },
+ {
+ "name": "fmt",
+ "value": "osr"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "kwd"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901740904,
+ "id": "8dee7454-6c6c-4b22-a411-4e474c7afbb3",
+ "identifier": "ebay-at",
+ "last_modified": 1702906502421,
+ "recordType": "engine",
+ "schema": 1702901800849,
"variants": [
{
"environment": {
- "excludedLocales": [
- "af",
- "an",
- "ar",
- "ast",
- "az",
- "be",
- "bg",
- "bn",
- "br",
- "bs",
- "ca",
- "ca-valencia",
- "cs",
- "cy",
- "da",
+ "locales": [
"de",
"dsb",
- "el",
- "eo",
- "cak",
- "es-AR",
- "es-CL",
- "es-ES",
- "es-MX",
- "trs",
- "et",
- "eu",
- "fa",
- "fi",
- "fr",
- "ff",
- "son",
- "fy-NL",
- "ga-IE",
- "gd",
- "gl",
- "gn",
- "gu-IN",
- "hi-IN",
- "he",
- "hr",
- "hsb",
- "hu",
- "hy-AM",
- "ia",
- "id",
- "is",
- "ja",
- "ja-JP-macos",
- "ka",
- "kab",
- "kk",
- "km",
- "kn",
- "ko",
- "it",
- "fur",
- "sc",
- "lij",
- "lo",
- "lt",
- "ltg",
- "lv",
- "mk",
- "mr",
- "ms",
- "my",
- "nb-NO",
- "ne-NP",
- "nl",
- "nn-NO",
- "oc",
- "pa-IN",
- "pl",
- "szl",
- "pt-BR",
- "pt-PT",
- "rm",
- "ro",
- "ru",
- "si",
- "sk",
- "sl",
- "sq",
- "sr",
- "sv-SE",
- "ta",
- "te",
- "th",
- "tl",
- "tr",
- "uk",
- "ur",
- "uz",
- "vi",
- "wo",
- "zh-CN",
- "zh-TW"
+ "hsb"
],
- "allRegionsAndLocales": true
+ "regions": [
+ "at"
+ ]
}
}
- ],
- "identifier": "wikipedia",
- "recordType": "engine",
- "id": "7f6d23c2-191e-483e-af3a-ce6451e3a8dd",
- "last_modified": 1702906502744
+ ]
},
{
"base": {
- "name": "Wikipedia (af)",
+ "aliases": [
+ "ebay"
+ ],
+ "classification": "unknown",
+ "name": "eBay",
+ "partnerCode": "5338192028",
"urls": {
"search": {
- "base": "https://af.wikipedia.org/wiki/Spesiaal:Soek",
+ "base": "https://www.ebay.com.au/sch/",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
+ "name": "toolid",
+ "value": "20004"
+ },
+ {
+ "name": "campid",
+ "value": "{partnerCode}"
+ },
+ {
+ "name": "mkevt",
+ "value": "1"
+ },
+ {
+ "name": "mkcid",
+ "value": "1"
+ },
+ {
+ "name": "mkrid",
+ "value": "705-53470-19255-0"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "kw"
},
"suggestions": {
- "base": "https://af.wikipedia.org/w/api.php",
+ "base": "https://autosug.ebay.com/autosug",
"params": [
{
- "name": "action",
- "value": "opensearch"
+ "name": "sId",
+ "value": "15"
+ },
+ {
+ "name": "fmt",
+ "value": "osr"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "kwd"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901741515,
+ "id": "e5a64fe0-2cb9-4b22-83d3-4e529c3702a9",
+ "identifier": "ebay-au",
+ "last_modified": 1702906502429,
+ "recordType": "engine",
+ "schema": 1702901799015,
"variants": [
{
"environment": {
"locales": [
- "af"
+ "cy",
+ "en-GB",
+ "en-US",
+ "gd"
+ ],
+ "regions": [
+ "au"
]
}
}
- ],
- "identifier": "wikipedia-af",
- "recordType": "engine",
- "id": "9dcc6d57-1b00-4cdc-bc11-d70593a3da30",
- "last_modified": 1702906502739
+ ]
},
{
"base": {
- "name": "Biquipedia (an)",
+ "aliases": [
+ "ebay"
+ ],
+ "classification": "unknown",
+ "name": "eBay",
+ "partnerCode": "5338192028",
"urls": {
"search": {
- "base": "https://an.wikipedia.org/wiki/Especial:Mirar",
+ "base": "https://www.befr.ebay.be/sch/",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
+ "name": "toolid",
+ "value": "20004"
+ },
+ {
+ "name": "campid",
+ "value": "{partnerCode}"
+ },
+ {
+ "name": "mkevt",
+ "value": "1"
+ },
+ {
+ "name": "mkcid",
+ "value": "1"
+ },
+ {
+ "name": "mkrid",
+ "value": "1553-53471-19255-0"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "kw"
},
"suggestions": {
- "base": "https://an.wikipedia.org/w/api.php",
+ "base": "https://autosug.ebay.com/autosug",
"params": [
{
- "name": "action",
- "value": "opensearch"
+ "name": "sId",
+ "value": "23"
+ },
+ {
+ "name": "fmt",
+ "value": "osr"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "kwd"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901742155,
+ "id": "5f40614e-4fc6-4dee-a897-07b258e00820",
+ "identifier": "ebay-be",
+ "last_modified": 1702906502442,
+ "recordType": "engine",
+ "schema": 1702901796541,
"variants": [
{
"environment": {
"locales": [
- "an"
+ "br",
+ "en-US",
+ "fr",
+ "wo",
+ "fy-NL",
+ "nl"
+ ],
+ "regions": [
+ "be"
]
}
}
- ],
- "identifier": "wikipedia-an",
- "recordType": "engine",
- "id": "1c2173e4-1ad3-4347-900a-17f4103c6bbe",
- "last_modified": 1702906502736
+ ]
},
{
"base": {
- "name": "ويكيبيديا (ar)",
+ "aliases": [
+ "ebay"
+ ],
+ "classification": "unknown",
+ "name": "eBay",
+ "partnerCode": "5338192028",
"urls": {
"search": {
- "base": "https://ar.wikipedia.org/wiki/خاص:بحث",
+ "base": "https://www.ebay.ca/sch/",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
+ "name": "toolid",
+ "value": "20004"
+ },
+ {
+ "name": "campid",
+ "value": "{partnerCode}"
+ },
+ {
+ "name": "mkevt",
+ "value": "1"
+ },
+ {
+ "name": "mkcid",
+ "value": "1"
+ },
+ {
+ "name": "mkrid",
+ "value": "706-53473-19255-0"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "kw"
},
"suggestions": {
- "base": "https://ar.wikipedia.org/w/api.php",
+ "base": "https://autosug.ebay.com/autosug",
"params": [
{
- "name": "action",
- "value": "opensearch"
+ "name": "sId",
+ "value": "2"
+ },
+ {
+ "name": "fmt",
+ "value": "osr"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "kwd"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901742756,
+ "id": "336d7fa9-7579-4981-bfb0-024c6c5f977d",
+ "identifier": "ebay-ca",
+ "last_modified": 1715090108516,
+ "recordType": "engine",
+ "schema": 1714065170548,
"variants": [
{
"environment": {
"locales": [
- "ar"
+ "br",
+ "en-US",
+ "fr",
+ "wo"
+ ],
+ "regions": [
+ "ca"
+ ]
+ }
+ },
+ {
+ "environment": {
+ "excludedRegions": [
+ "pl"
+ ],
+ "locales": [
+ "en-CA"
]
}
}
- ],
- "identifier": "wikipedia-ar",
- "recordType": "engine",
- "id": "3ed57e7f-df2a-4bb0-aecf-10327d5ff1ea",
- "last_modified": 1702906502733
+ ]
},
{
"base": {
- "name": "Wikipedia (ast)",
+ "aliases": [
+ "ebay"
+ ],
+ "classification": "unknown",
+ "name": "eBay",
+ "partnerCode": "5338192028",
"urls": {
"search": {
- "base": "https://ast.wikipedia.org/wiki/Especial:Gueta",
+ "base": "https://www.ebay.ch/sch/",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
+ "name": "toolid",
+ "value": "20004"
+ },
+ {
+ "name": "campid",
+ "value": "{partnerCode}"
+ },
+ {
+ "name": "mkevt",
+ "value": "1"
+ },
+ {
+ "name": "mkcid",
+ "value": "1"
+ },
+ {
+ "name": "mkrid",
+ "value": "5222-53480-19255-0"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "kw"
},
"suggestions": {
- "base": "https://ast.wikipedia.org/w/api.php",
+ "base": "https://autosug.ebay.com/autosug",
"params": [
{
- "name": "action",
- "value": "opensearch"
+ "name": "sId",
+ "value": "193"
+ },
+ {
+ "name": "fmt",
+ "value": "osr"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "kwd"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901743369,
+ "id": "8d8484a2-b856-4edd-93d7-c53a7aaca6e1",
+ "identifier": "ebay-ch",
+ "last_modified": 1715090108518,
+ "recordType": "engine",
+ "schema": 1714498577167,
"variants": [
{
"environment": {
"locales": [
- "ast"
+ "br",
+ "de",
+ "dsb",
+ "en-US",
+ "fr",
+ "hsb",
+ "wo"
+ ],
+ "regions": [
+ "ch"
+ ]
+ }
+ },
+ {
+ "environment": {
+ "excludedRegions": [
+ "pl"
+ ],
+ "locales": [
+ "rm"
]
}
}
- ],
- "identifier": "wikipedia-ast",
- "recordType": "engine",
- "id": "e5f07079-9153-4104-a8b9-a9d15ff75853",
- "last_modified": 1702906502729
+ ]
},
{
"base": {
- "name": "Vikipediya (az)",
+ "aliases": [
+ "ebay"
+ ],
+ "classification": "unknown",
+ "name": "eBay",
+ "partnerCode": "5338192028",
"urls": {
"search": {
- "base": "https://az.wikipedia.org/wiki/Xüsusi:Axtar",
+ "base": "https://www.ebay.de/sch/",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
+ "name": "toolid",
+ "value": "20004"
+ },
+ {
+ "name": "campid",
+ "value": "{partnerCode}"
+ },
+ {
+ "name": "mkevt",
+ "value": "1"
+ },
+ {
+ "name": "mkcid",
+ "value": "1"
+ },
+ {
+ "name": "mkrid",
+ "value": "707-53477-19255-0"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "kw"
},
"suggestions": {
- "base": "https://az.wikipedia.org/w/api.php",
+ "base": "https://autosug.ebay.com/autosug",
"params": [
{
- "name": "action",
- "value": "opensearch"
+ "name": "sId",
+ "value": "77"
+ },
+ {
+ "name": "fmt",
+ "value": "osr"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "kwd"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901743987,
+ "id": "e991a5f7-616e-43b0-b349-7995b837a520",
+ "identifier": "ebay-de",
+ "last_modified": 1715090108527,
+ "recordType": "engine",
+ "schema": 1714498578625,
"variants": [
{
"environment": {
+ "excludedRegions": [
+ "at",
+ "ch",
+ "pl"
+ ],
"locales": [
- "az"
+ "de",
+ "dsb",
+ "hsb"
]
}
}
- ],
- "identifier": "wikipedia-az",
- "recordType": "engine",
- "id": "2230b4af-8fdf-4aa0-a496-5178b25382ed",
- "last_modified": 1702906502726
+ ]
},
{
"base": {
- "name": "Уикипедия (bg)",
+ "aliases": [
+ "ebay"
+ ],
+ "classification": "unknown",
+ "name": "eBay",
+ "partnerCode": "5338192028",
"urls": {
"search": {
- "base": "https://bg.wikipedia.org/wiki/Специални:Търсене",
+ "base": "https://www.ebay.es/sch/",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
+ "name": "toolid",
+ "value": "20004"
+ },
+ {
+ "name": "campid",
+ "value": "{partnerCode}"
+ },
+ {
+ "name": "mkevt",
+ "value": "1"
+ },
+ {
+ "name": "mkcid",
+ "value": "1"
+ },
+ {
+ "name": "mkrid",
+ "value": "1185-53479-19255-0"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "kw"
},
"suggestions": {
- "base": "https://bg.wikipedia.org/w/api.php",
+ "base": "https://autosug.ebay.com/autosug",
"params": [
{
- "name": "action",
- "value": "opensearch"
+ "name": "sId",
+ "value": "186"
+ },
+ {
+ "name": "fmt",
+ "value": "osr"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "kwd"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901744580,
+ "id": "0592aedc-f4e5-4873-a8d4-da9482071613",
+ "identifier": "ebay-es",
+ "last_modified": 1715090108511,
+ "recordType": "engine",
+ "schema": 1714498579838,
"variants": [
{
"environment": {
+ "excludedRegions": [
+ "pl"
+ ],
"locales": [
- "bg"
+ "an",
+ "ast",
+ "ca",
+ "ca-valencia",
+ "es-ES",
+ "eu",
+ "gl"
]
}
}
- ],
- "identifier": "wikipedia-bg",
- "recordType": "engine",
- "id": "6324bcb4-9aad-4aa2-b10c-f320ae1242c3",
- "last_modified": 1702906502723
+ ]
},
{
"base": {
- "name": "Wikipedia (br)",
+ "aliases": [
+ "ebay"
+ ],
+ "classification": "unknown",
+ "name": "eBay",
+ "partnerCode": "5338192028",
"urls": {
"search": {
- "base": "https://br.wikipedia.org/wiki/Dibar:Klask",
+ "base": "https://www.ebay.fr/sch/",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
+ "name": "toolid",
+ "value": "20004"
+ },
+ {
+ "name": "campid",
+ "value": "{partnerCode}"
+ },
+ {
+ "name": "mkevt",
+ "value": "1"
+ },
+ {
+ "name": "mkcid",
+ "value": "1"
+ },
+ {
+ "name": "mkrid",
+ "value": "709-53476-19255-0"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "kw"
},
"suggestions": {
- "base": "https://br.wikipedia.org/w/api.php",
+ "base": "https://autosug.ebay.com/autosug",
"params": [
{
- "name": "action",
- "value": "opensearch"
+ "name": "sId",
+ "value": "71"
+ },
+ {
+ "name": "fmt",
+ "value": "osr"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "kwd"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901745178,
+ "id": "d327156c-dfc4-47f6-a620-3846a21144d9",
+ "identifier": "ebay-fr",
+ "last_modified": 1715090108513,
+ "recordType": "engine",
+ "schema": 1714498580858,
"variants": [
{
"environment": {
+ "excludedRegions": [
+ "be",
+ "ca",
+ "ch",
+ "pl"
+ ],
"locales": [
- "br"
+ "br",
+ "fr",
+ "wo"
]
}
}
- ],
- "identifier": "wikipedia-br",
- "recordType": "engine",
- "id": "c9266f36-f954-44df-924b-a1c205f66d7c",
- "last_modified": 1702906502718
+ ]
},
{
"base": {
- "name": "Wikipedia (bs)",
+ "aliases": [
+ "ebay"
+ ],
+ "classification": "unknown",
+ "name": "eBay",
+ "partnerCode": "5338192028",
"urls": {
"search": {
- "base": "https://bs.wikipedia.org/wiki/Posebno:Pretraga",
+ "base": "https://www.ebay.ie/sch/",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
+ "name": "toolid",
+ "value": "20004"
+ },
+ {
+ "name": "campid",
+ "value": "{partnerCode}"
+ },
+ {
+ "name": "mkevt",
+ "value": "1"
+ },
+ {
+ "name": "mkcid",
+ "value": "1"
+ },
+ {
+ "name": "mkrid",
+ "value": "5282-53468-19255-0"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "kw"
},
"suggestions": {
- "base": "https://bs.wikipedia.org/w/api.php",
+ "base": "https://autosug.ebay.com/autosug",
"params": [
{
- "name": "action",
- "value": "opensearch"
+ "name": "sId",
+ "value": "205"
+ },
+ {
+ "name": "fmt",
+ "value": "osr"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "kwd"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901745796,
+ "id": "0a9fed24-cd33-4293-bac8-eb26a285c9f1",
+ "identifier": "ebay-ie",
+ "last_modified": 1715090108524,
+ "recordType": "engine",
+ "schema": 1714498581865,
"variants": [
{
"environment": {
"locales": [
- "bs"
+ "cy",
+ "en-GB",
+ "en-US",
+ "gd"
+ ],
+ "regions": [
+ "ie"
+ ]
+ }
+ },
+ {
+ "environment": {
+ "excludedRegions": [
+ "pl"
+ ],
+ "locales": [
+ "ga-IE"
]
}
}
- ],
- "identifier": "wikipedia-bs",
- "recordType": "engine",
- "id": "c88785cc-48de-4f07-a40f-5d6564de3183",
- "last_modified": 1702906502715
+ ]
},
{
"base": {
- "name": "Wicipedia (cy)",
+ "aliases": [
+ "ebay"
+ ],
+ "classification": "unknown",
+ "name": "eBay",
+ "partnerCode": "5338192028",
"urls": {
"search": {
- "base": "https://cy.wikipedia.org/wiki/Arbennig:Search",
+ "base": "https://www.ebay.it/sch/",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
+ "name": "toolid",
+ "value": "20004"
+ },
+ {
+ "name": "campid",
+ "value": "{partnerCode}"
+ },
+ {
+ "name": "mkevt",
+ "value": "1"
+ },
+ {
+ "name": "mkcid",
+ "value": "1"
+ },
+ {
+ "name": "mkrid",
+ "value": "724-53478-19255-0"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "kw"
},
"suggestions": {
- "base": "https://cy.wikipedia.org/w/api.php",
+ "base": "https://autosug.ebay.com/autosug",
"params": [
{
- "name": "action",
- "value": "opensearch"
+ "name": "sId",
+ "value": "101"
+ },
+ {
+ "name": "fmt",
+ "value": "osr"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "kwd"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901746399,
+ "id": "f36dd44c-ba5f-44e5-8b19-672eb1ed62fd",
+ "identifier": "ebay-it",
+ "last_modified": 1715090108532,
+ "recordType": "engine",
+ "schema": 1714498582844,
"variants": [
{
"environment": {
+ "excludedRegions": [
+ "pl"
+ ],
"locales": [
- "cy"
+ "fur",
+ "it",
+ "lij",
+ "sc"
]
}
}
- ],
- "identifier": "wikipedia-cy",
- "recordType": "engine",
- "id": "0df7934b-5903-4382-ae3d-d898ac0487aa",
- "last_modified": 1702906502711
+ ]
},
{
"base": {
- "name": "Wikipedia (da)",
+ "aliases": [
+ "ebay"
+ ],
+ "classification": "unknown",
+ "name": "eBay",
+ "partnerCode": "5338192028",
"urls": {
"search": {
- "base": "https://da.wikipedia.org/wiki/Speciel:Søgning",
+ "base": "https://www.ebay.nl/sch/",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
+ "name": "toolid",
+ "value": "20004"
+ },
+ {
+ "name": "campid",
+ "value": "{partnerCode}"
+ },
+ {
+ "name": "mkevt",
+ "value": "1"
+ },
+ {
+ "name": "mkcid",
+ "value": "1"
+ },
+ {
+ "name": "mkrid",
+ "value": "1346-53482-19255-0"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "kw"
},
"suggestions": {
- "base": "https://da.wikipedia.org/w/api.php",
+ "base": "https://autosug.ebay.com/autosug",
"params": [
{
- "name": "action",
- "value": "opensearch"
+ "name": "sId",
+ "value": "146"
+ },
+ {
+ "name": "fmt",
+ "value": "osr"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "kwd"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901746995,
+ "id": "670475c3-d56f-4f87-9834-ddb12d0e8cbd",
+ "identifier": "ebay-nl",
+ "last_modified": 1715090108529,
+ "recordType": "engine",
+ "schema": 1714498583851,
"variants": [
{
"environment": {
+ "excludedRegions": [
+ "be",
+ "pl"
+ ],
+ "locales": [
+ "fy-NL",
+ "nl"
+ ]
+ }
+ },
+ {
+ "environment": {
"locales": [
- "da"
+ "en-US"
+ ],
+ "regions": [
+ "nl"
]
}
}
- ],
- "identifier": "wikipedia-da",
- "recordType": "engine",
- "id": "ae42fcaa-ddee-4212-acb9-8bc15d09a39d",
- "last_modified": 1702906502707
+ ]
},
{
"base": {
- "name": "Wikipedia (de)",
+ "aliases": [
+ "ebay"
+ ],
+ "classification": "unknown",
+ "name": "eBay",
+ "partnerCode": "5338192028",
"urls": {
"search": {
- "base": "https://de.wikipedia.org/wiki/Spezial:Suche",
+ "base": "https://www.ebay.pl/sch/",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
+ "name": "toolid",
+ "value": "20004"
+ },
+ {
+ "name": "campid",
+ "value": "{partnerCode}"
+ },
+ {
+ "name": "mkevt",
+ "value": "1"
+ },
+ {
+ "name": "mkcid",
+ "value": "1"
+ },
+ {
+ "name": "mkrid",
+ "value": "4908-226936-19255-0"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "kw"
},
"suggestions": {
- "base": "https://de.wikipedia.org/w/api.php",
+ "base": "https://autosug.ebay.com/autosug",
"params": [
{
- "name": "action",
- "value": "opensearch"
+ "name": "sId",
+ "value": "212"
+ },
+ {
+ "name": "fmt",
+ "value": "osr"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "kwd"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901747613,
+ "id": "37f83917-8d6e-46d6-9d15-8e7779339d08",
+ "identifier": "ebay-pl",
+ "last_modified": 1715090108535,
+ "recordType": "engine",
+ "schema": 1714498585934,
"variants": [
{
"environment": {
- "locales": [
- "de"
+ "regions": [
+ "pl"
]
}
}
- ],
- "identifier": "wikipedia-de",
- "recordType": "engine",
- "id": "def1d4ba-b8c8-46c4-9800-134b989ca058",
- "last_modified": 1702906502704
+ ]
},
{
"base": {
- "name": "Wikipedija (dsb)",
+ "aliases": [
+ "ebay"
+ ],
+ "classification": "unknown",
+ "name": "eBay",
+ "partnerCode": "5338192028",
"urls": {
"search": {
- "base": "https://dsb.wikipedia.org/wiki/Specialne:Pytaś",
+ "base": "https://www.ebay.co.uk/sch/",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
+ "name": "toolid",
+ "value": "20004"
+ },
+ {
+ "name": "campid",
+ "value": "{partnerCode}"
+ },
+ {
+ "name": "mkevt",
+ "value": "1"
+ },
+ {
+ "name": "mkcid",
+ "value": "1"
+ },
+ {
+ "name": "mkrid",
+ "value": "710-53481-19255-0"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "kw"
},
"suggestions": {
- "base": "https://dsb.wikipedia.org/w/api.php",
+ "base": "https://autosug.ebay.com/autosug",
"params": [
{
- "name": "action",
- "value": "opensearch"
+ "name": "sId",
+ "value": "3"
+ },
+ {
+ "name": "fmt",
+ "value": "osr"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "kwd"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901748278,
+ "id": "37f83917-8d6e-46d6-9d15-8e7779339d18",
+ "identifier": "ebay-uk",
+ "last_modified": 1715090108522,
+ "recordType": "engine",
+ "schema": 1714498584991,
"variants": [
{
"environment": {
+ "excludedRegions": [
+ "au",
+ "ie",
+ "pl"
+ ],
"locales": [
- "dsb"
+ "cy",
+ "en-GB",
+ "gd"
+ ]
+ }
+ },
+ {
+ "environment": {
+ "locales": [
+ "sco"
+ ],
+ "regions": [
+ "gb"
+ ]
+ }
+ },
+ {
+ "environment": {
+ "locales": [
+ "en-US"
+ ],
+ "regions": [
+ "gb"
]
}
}
- ],
- "identifier": "wikipedia-dsb",
- "recordType": "engine",
- "id": "c8a9299d-c9d2-4bf3-8f94-812d38af35f7",
- "last_modified": 1702906502701
+ ]
},
{
"base": {
- "name": "Wikipedia (el)",
+ "classification": "general",
+ "name": "Ecosia",
+ "partnerCode": "mzl",
"urls": {
"search": {
- "base": "https://el.wikipedia.org/wiki/Ειδικό:Αναζήτηση",
+ "base": "https://www.ecosia.org/search",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
+ "name": "tt",
+ "value": "{partnerCode}"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "q"
},
"suggestions": {
- "base": "https://el.wikipedia.org/w/api.php",
+ "base": "https://ac.ecosia.org/autocomplete",
"params": [
{
- "name": "action",
- "value": "opensearch"
+ "name": "type",
+ "value": "list"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "q"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901748903,
+ "id": "e8e4a7e3-aead-43e3-887d-4064a186bd70",
+ "identifier": "ecosia",
+ "last_modified": 1702906502308,
+ "recordType": "engine",
+ "schema": 1702901822899,
"variants": [
{
"environment": {
"locales": [
- "el"
+ "de"
]
}
}
- ],
- "identifier": "wikipedia-el",
- "recordType": "engine",
- "id": "6ebc40f2-9307-4e58-8fd7-0e1a23b80723",
- "last_modified": 1702906502698
+ ]
},
{
"base": {
- "name": "Vikipedio (eo)",
+ "classification": "unknown",
+ "name": "EUdict Eng->Cro",
"urls": {
"search": {
- "base": "https://eo.wikipedia.org/wiki/Specialaĵo:Serĉi",
- "params": [
- {
- "name": "sourceid",
- "value": "Mozilla-search"
- }
- ],
- "searchTermParamName": "search"
- },
- "suggestions": {
- "base": "https://eo.wikipedia.org/w/api.php",
+ "base": "https://eudict.com/",
"params": [
{
- "name": "action",
- "value": "opensearch"
+ "name": "lang",
+ "value": "engcro"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "word"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901749556,
+ "id": "8fe5af92-3b6d-4cbe-a736-4cad01a21efe",
+ "identifier": "eudict",
+ "last_modified": 1702906502306,
+ "recordType": "engine",
+ "schema": 1702901823499,
"variants": [
{
"environment": {
"locales": [
- "eo"
+ "hr"
]
}
}
- ],
- "identifier": "wikipedia-eo",
+ ]
+ },
+ {
+ "base": {
+ "classification": "unknown",
+ "name": "Am Faclair Beag",
+ "urls": {
+ "search": {
+ "base": "https://www.faclair.com/",
+ "searchTermParamName": "txtSearch"
+ }
+ }
+ },
+ "id": "d21e561b-64ae-4a33-b2f0-c4a490a5cf82",
+ "identifier": "faclair-beag",
+ "last_modified": 1702906502303,
"recordType": "engine",
- "id": "25b42f42-d6e4-4193-be32-b4ca61cb55c7",
- "last_modified": 1702906502695
+ "schema": 1702901824109,
+ "variants": [
+ {
+ "environment": {
+ "locales": [
+ "gd"
+ ]
+ }
+ }
+ ]
},
{
"base": {
- "name": "Vikipeedia (et)",
+ "classification": "unknown",
+ "name": "GMX Suche",
"urls": {
"search": {
- "base": "https://et.wikipedia.org/wiki/Eri:Otsimine",
+ "base": "https://go.gmx.net/br/moz_search_web/",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
+ "name": "enc",
+ "value": "UTF-8"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "q"
},
"suggestions": {
- "base": "https://et.wikipedia.org/w/api.php",
+ "base": "https://suggestplugin.ui-portal.de/s",
"params": [
{
- "name": "action",
- "value": "opensearch"
+ "name": "brand",
+ "value": "gmx"
+ },
+ {
+ "name": "origin",
+ "value": "br_splugin_ff_sg"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "q"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901750177,
+ "id": "5240e0d8-8c2c-436b-b478-3fa0b506410f",
+ "identifier": "gmx-de",
+ "last_modified": 1702906502361,
+ "recordType": "engine",
+ "schema": 1702901812448,
"variants": [
{
"environment": {
- "locales": [
- "et"
+ "distributions": [
+ "gmx"
]
}
}
- ],
- "identifier": "wikipedia-et",
- "recordType": "engine",
- "id": "87388ad0-c470-4a90-b79d-231e28b86eda",
- "last_modified": 1702906502691
+ ]
},
{
"base": {
- "name": "Wikipedia (eu)",
+ "classification": "unknown",
+ "name": "GMX Search",
"urls": {
"search": {
- "base": "https://eu.wikipedia.org/wiki/Berezi:Bilatu",
+ "base": "https://go.gmx.co.uk/br/moz_search_web/",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
+ "name": "enc",
+ "value": "UTF-8"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "q"
},
"suggestions": {
- "base": "https://eu.wikipedia.org/w/api.php",
+ "base": "https://suggestplugin.gmx.co.uk/s",
"params": [
{
- "name": "action",
- "value": "opensearch"
+ "name": "brand",
+ "value": "gmxcouk"
+ },
+ {
+ "name": "origin",
+ "value": "moz_splugin_ff"
+ },
+ {
+ "name": "enc",
+ "value": "UTF-8"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "q"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901750807,
+ "id": "d5f10a5b-19b7-4214-9e84-be0b04d6414f",
+ "identifier": "gmx-en-GB",
+ "last_modified": 1702906502354,
+ "recordType": "engine",
+ "schema": 1702901813683,
"variants": [
{
"environment": {
- "locales": [
- "eu"
+ "distributions": [
+ "gmxcouk"
]
}
}
- ],
- "identifier": "wikipedia-eu",
- "recordType": "engine",
- "id": "0d6704d1-3aed-420c-8c16-6aeefede499f",
- "last_modified": 1702906502688
+ ]
},
{
"base": {
- "name": "ویکی‌پدیا (fa)",
+ "classification": "unknown",
+ "name": "GMX - Búsqueda web",
"urls": {
"search": {
- "base": "https://fa.wikipedia.org/wiki/ویژه:جستجو",
+ "base": "https://go.gmx.es/br/moz_search_web/",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
+ "name": "enc",
+ "value": "UTF-8"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "q"
},
"suggestions": {
- "base": "https://fa.wikipedia.org/w/api.php",
+ "base": "https://suggestplugin.gmx.es/s",
"params": [
{
- "name": "action",
- "value": "opensearch"
+ "name": "brand",
+ "value": "gmxes"
+ },
+ {
+ "name": "origin",
+ "value": "moz_splugin_ff"
+ },
+ {
+ "name": "enc",
+ "value": "UTF-8"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "q"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901751455,
+ "id": "bdb578f4-6362-4789-911d-193c98ec5378",
+ "identifier": "gmx-es",
+ "last_modified": 1702906502351,
+ "recordType": "engine",
+ "schema": 1702901814287,
"variants": [
{
"environment": {
- "locales": [
- "fa"
+ "distributions": [
+ "gmxes"
]
}
}
- ],
- "identifier": "wikipedia-fa",
- "recordType": "engine",
- "id": "ce737d17-06f0-46f2-8c88-97f796ad88dc",
- "last_modified": 1702906502685
+ ]
},
{
"base": {
- "name": "Wikipedia (fi)",
+ "classification": "unknown",
+ "name": "GMX - Recherche web",
"urls": {
"search": {
- "base": "https://fi.wikipedia.org/wiki/Toiminnot:Haku",
+ "base": "https://go.gmx.fr/br/moz_search_web/",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
+ "name": "enc",
+ "value": "UTF-8"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "q"
},
"suggestions": {
- "base": "https://fi.wikipedia.org/w/api.php",
+ "base": "https://suggestplugin.gmx.fr/s",
"params": [
{
- "name": "action",
- "value": "opensearch"
+ "name": "brand",
+ "value": "gmxfr"
+ },
+ {
+ "name": "origin",
+ "value": "moz_splugin_ff"
+ },
+ {
+ "name": "enc",
+ "value": "UTF-8"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "q"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901752065,
+ "id": "2b628809-284d-468a-831f-95dc479f30da",
+ "identifier": "gmx-fr",
+ "last_modified": 1702906502349,
+ "recordType": "engine",
+ "schema": 1702901814882,
"variants": [
{
"environment": {
- "locales": [
- "fi"
+ "distributions": [
+ "gmxfr"
]
}
}
- ],
- "identifier": "wikipedia-fi",
- "recordType": "engine",
- "id": "0820d593-6616-476a-ab3d-763c4d14dcc6",
- "last_modified": 1702906502682
+ ]
},
{
"base": {
- "name": "Wikipedy (fy)",
+ "classification": "unknown",
+ "name": "GMX Shopping",
"urls": {
"search": {
- "base": "https://fy.wikipedia.org/wiki/Wiki:Sykje",
+ "base": "https://shopping.gmx.net/",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
+ "name": "origin",
+ "value": "br_osd"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "q"
},
"suggestions": {
- "base": "https://fy.wikipedia.org/w/api.php",
- "params": [
- {
- "name": "action",
- "value": "opensearch"
- }
- ],
- "searchTermParamName": "search"
+ "base": "https://shopping.gmx.net/suggest/ca/",
+ "searchTermParamName": "q"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901752745,
+ "id": "3a738904-cf8c-4d87-8972-ea98768d44f0",
+ "identifier": "gmx-shopping",
+ "last_modified": 1702906502357,
+ "recordType": "engine",
+ "schema": 1702901813066,
"variants": [
{
"environment": {
- "locales": [
- "fy-NL"
+ "distributions": [
+ "gmx"
]
}
}
- ],
- "identifier": "wikipedia-fy-NL",
- "recordType": "engine",
- "id": "4a6a7952-460d-4951-a011-9fc414f2569a",
- "last_modified": 1702906502679
+ ]
},
{
"base": {
- "name": "Vicipéid (ga)",
+ "aliases": [
+ "google"
+ ],
+ "classification": "general",
+ "name": "Google",
+ "partnerCode": "firefox-b-d",
"urls": {
"search": {
- "base": "https://ga.wikipedia.org/wiki/Speisialta:Search",
+ "base": "https://www.google.com/search",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
+ "name": "client",
+ "value": "{partnerCode}"
+ },
+ {
+ "experimentConfig": "google_channel_row",
+ "name": "channel"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "q"
},
"suggestions": {
- "base": "https://ga.wikipedia.org/w/api.php",
+ "base": "https://www.google.com/complete/search",
"params": [
{
- "name": "action",
- "value": "opensearch"
+ "name": "client",
+ "value": "firefox"
+ },
+ {
+ "experimentConfig": "search_rich_suggestions",
+ "name": "channel"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "q"
+ },
+ "trending": {
+ "base": "https://www.google.com/complete/search",
+ "method": "GET",
+ "params": [
+ {
+ "name": "client",
+ "value": "firefox"
+ },
+ {
+ "name": "channel",
+ "value": "ftr"
+ }
+ ],
+ "searchTermParamName": "q"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901753350,
+ "id": "7ace4aa1-e762-4f4b-87b9-b23b3c3a930b",
+ "identifier": "google",
+ "last_modified": 1713282817051,
+ "recordType": "engine",
+ "schema": 1713282083062,
"variants": [
{
"environment": {
- "locales": [
- "ga-IE"
+ "allRegionsAndLocales": true
+ },
+ "subVariants": [
+ {
+ "environment": {
+ "channels": [
+ "esr"
+ ]
+ },
+ "partnerCode": "firefox-b-e",
+ "telemetrySuffix": "b-e"
+ }
+ ],
+ "telemetrySuffix": "b-d"
+ },
+ {
+ "environment": {
+ "regions": [
+ "ru",
+ "tr",
+ "by",
+ "kz"
+ ]
+ },
+ "telemetrySuffix": "com-nocodes",
+ "urls": {
+ "search": {
+ "params": []
+ }
+ }
+ },
+ {
+ "environment": {
+ "regions": [
+ "us"
+ ]
+ },
+ "partnerCode": "firefox-b-1-d",
+ "subVariants": [
+ {
+ "environment": {
+ "channels": [
+ "esr"
+ ],
+ "regions": [
+ "us"
+ ]
+ },
+ "partnerCode": "firefox-b-1-e",
+ "telemetrySuffix": "b-1-e"
+ }
+ ],
+ "telemetrySuffix": "b-1-d",
+ "urls": {
+ "search": {
+ "params": [
+ {
+ "name": "client",
+ "value": "{partnerCode}"
+ },
+ {
+ "experimentConfig": "google_channel_us",
+ "name": "channel"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "environment": {
+ "distributions": [
+ "canonical",
+ "canonical-001"
+ ]
+ },
+ "partnerCode": "ubuntu",
+ "telemetrySuffix": "canonical",
+ "urls": {
+ "search": {
+ "params": [
+ {
+ "name": "client",
+ "value": "{partnerCode}"
+ },
+ {
+ "name": "channel",
+ "value": "fs"
+ }
+ ]
+ }
+ }
+ },
+ {
+ "environment": {
+ "distributions": [
+ "canonical-002"
]
+ },
+ "partnerCode": "ubuntu-sn",
+ "telemetrySuffix": "ubuntu-sn",
+ "urls": {
+ "search": {
+ "params": [
+ {
+ "name": "client",
+ "value": "{partnerCode}"
+ },
+ {
+ "name": "channel",
+ "value": "fs"
+ }
+ ]
+ }
}
+ },
+ {
+ "environment": {
+ "distributions": [
+ "mint-001"
+ ]
+ },
+ "partnerCode": "firefox-b-lm",
+ "telemetrySuffix": "b-lm"
+ },
+ {
+ "environment": {
+ "distributions": [
+ "mint-001"
+ ],
+ "regions": [
+ "us"
+ ]
+ },
+ "partnerCode": "firefox-b-1-lm",
+ "telemetrySuffix": "b-1-lm"
}
- ],
- "identifier": "wikipedia-ga-IE",
- "recordType": "engine",
- "id": "d8d0e94c-27e7-42b1-a5e2-b24198021234",
- "last_modified": 1702906502675
+ ]
},
{
"base": {
- "name": "Uicipeid (gd)",
+ "classification": "unknown",
+ "name": "Gule sider",
"urls": {
"search": {
- "base": "https://gd.wikipedia.org/wiki/Sònraichte:Search",
+ "base": "https://www.gulesider.no/search",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
+ "name": "what",
+ "value": "all"
+ },
+ {
+ "name": "cmpid",
+ "value": "fre_partner_fire_gssbtop"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "q"
+ }
+ }
+ },
+ "id": "0f9d78f8-e8ad-40be-8f50-b71d5da0f4cc",
+ "identifier": "gulesider-NO",
+ "last_modified": 1702906502300,
+ "recordType": "engine",
+ "schema": 1702901824715,
+ "variants": [
+ {
+ "environment": {
+ "locales": [
+ "nb-NO",
+ "nn-NO"
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "base": {
+ "classification": "unknown",
+ "name": "LEO Eng-Deu",
+ "urls": {
+ "search": {
+ "base": "https://dict.leo.org/englisch-deutsch/{searchTerms}"
},
"suggestions": {
- "base": "https://gd.wikipedia.org/w/api.php",
+ "base": "https://dict.leo.org/dictQuery/m-query/conf/ende/query.conf/strlist.json",
"params": [
{
- "name": "action",
- "value": "opensearch"
+ "name": "sort",
+ "value": "PLa"
+ },
+ {
+ "name": "shortQuery",
+ "value": "undefined"
+ },
+ {
+ "name": "noDescription",
+ "value": "undefined"
+ },
+ {
+ "name": "noQueryURLs",
+ "value": "undefined"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "q"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901753945,
+ "id": "2669ab65-3d93-4432-a960-90413be80ae0",
+ "identifier": "leo_ende_de",
+ "last_modified": 1702906502297,
+ "recordType": "engine",
+ "schema": 1702901825311,
"variants": [
{
"environment": {
"locales": [
- "gd"
+ "de",
+ "dsb",
+ "hsb",
+ "rm"
]
}
}
- ],
- "identifier": "wikipedia-gd",
- "recordType": "engine",
- "id": "df26225d-6726-4630-94ce-7a398598139b",
- "last_modified": 1702906502672
+ ]
},
{
"base": {
- "name": "Wikipedia (gl)",
+ "classification": "unknown",
+ "name": "พจนานุกรม ลองดู",
"urls": {
"search": {
- "base": "https://gl.wikipedia.org/wiki/Especial:Procurar",
+ "base": "https://dict.longdo.org/",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
+ "name": "src",
+ "value": "moz"
}
],
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://gl.wikipedia.org/w/api.php",
+ "base": "https://search.longdo.com/Suggest/HeadSearch",
"params": [
{
- "name": "action",
- "value": "opensearch"
+ "name": "ds",
+ "value": "head"
+ },
+ {
+ "name": "fxjson",
+ "value": "1"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "key"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901754558,
+ "id": "fcc54178-e432-4d2b-820e-50f389bfb396",
+ "identifier": "longdo",
+ "last_modified": 1702906502295,
+ "recordType": "engine",
+ "schema": 1702901825919,
"variants": [
{
"environment": {
"locales": [
- "gl"
+ "th"
]
}
}
- ],
- "identifier": "wikipedia-gl",
- "recordType": "engine",
- "id": "cd385c40-96bc-43c4-9f30-eff738828401",
- "last_modified": 1702906502668
+ ]
},
{
"base": {
- "name": "Vikipetã (gn)",
+ "classification": "unknown",
+ "name": "mail.com search",
"urls": {
"search": {
- "base": "https://gn.wikipedia.org/wiki/Mba'echĩchĩ:Buscar",
+ "base": "https://go.mail.com/br/moz_search_web/",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
+ "name": "enc",
+ "value": "UTF-8"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "q"
},
"suggestions": {
- "base": "https://gn.wikipedia.org/w/api.php",
+ "base": "https://search.mail.com/SuggestSearch/s",
"params": [
{
- "name": "action",
- "value": "opensearch"
+ "name": "brand",
+ "value": "mailcom"
+ },
+ {
+ "name": "origin",
+ "value": "br_splugin_ff_sg"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "q"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901755160,
+ "id": "39375b5f-77bb-46cb-979d-345c002fe35f",
+ "identifier": "mailcom",
+ "last_modified": 1702906502329,
+ "recordType": "engine",
+ "schema": 1702901818560,
"variants": [
{
"environment": {
- "locales": [
- "gn"
+ "distributions": [
+ "mail.com"
]
}
}
- ],
- "identifier": "wikipedia-gn",
- "recordType": "engine",
- "id": "b66515df-d7b1-403c-b0df-22a5ce9dd07f",
- "last_modified": 1702906502665
+ ]
},
{
"base": {
- "name": "ויקיפדיה",
+ "classification": "unknown",
+ "name": "Mapy.cz",
"urls": {
"search": {
- "base": "https://he.wikipedia.org/wiki/מיוחד:חיפוש",
+ "base": "https://www.mapy.cz/",
"params": [
{
"name": "sourceid",
- "value": "Mozilla-search"
- }
- ],
- "searchTermParamName": "search"
- },
- "suggestions": {
- "base": "https://he.wikipedia.org/w/api.php",
- "params": [
- {
- "name": "action",
- "value": "opensearch"
+ "value": "Searchmodule_3"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "q"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901755766,
+ "id": "1ad708f0-5736-4f65-aeb4-31e5eca1c598",
+ "identifier": "mapy-cz",
+ "last_modified": 1702906502292,
+ "recordType": "engine",
+ "schema": 1702901826526,
"variants": [
{
"environment": {
"locales": [
- "he"
+ "cs"
]
}
}
- ],
- "identifier": "wikipedia-he",
+ ]
+ },
+ {
+ "base": {
+ "classification": "unknown",
+ "name": "MercadoLibre Argentina",
+ "urls": {
+ "search": {
+ "base": "https://www.mercadolibre.com.ar/jm/search",
+ "searchTermParamName": "as_word"
+ }
+ }
+ },
+ "id": "8111d157-e064-40fa-993d-e1d972534754",
+ "identifier": "mercadolibre",
+ "last_modified": 1702906502289,
"recordType": "engine",
- "id": "f96aab0d-3562-445c-a70f-5805ea1d25fe",
- "last_modified": 1702906502662
+ "schema": 1702901827142,
+ "variants": [
+ {
+ "environment": {
+ "locales": [
+ "es-AR"
+ ]
+ }
+ }
+ ]
},
{
"base": {
- "name": "Wikipedija (hr)",
+ "classification": "unknown",
+ "name": "MercadoLibre Chile",
"urls": {
"search": {
- "base": "https://hr.wikipedia.org/wiki/Posebno:Traži",
+ "base": "https://www.mercadolibre.cl/jm/search",
+ "searchTermParamName": "as_word"
+ }
+ }
+ },
+ "id": "5659791c-6637-4ba9-b46b-83f16df084cd",
+ "identifier": "mercadolibre-cl",
+ "last_modified": 1702906502286,
+ "recordType": "engine",
+ "schema": 1702901827757,
+ "variants": [
+ {
+ "environment": {
+ "locales": [
+ "es-CL"
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "base": {
+ "classification": "unknown",
+ "name": "MercadoLibre Mexico",
+ "urls": {
+ "search": {
+ "base": "https://www.mercadolibre.com.mx/jm/search",
+ "searchTermParamName": "as_word"
+ }
+ }
+ },
+ "id": "162c9f26-f269-4b8e-b75f-01cf3c15e177",
+ "identifier": "mercadolibre-mx",
+ "last_modified": 1702906502283,
+ "recordType": "engine",
+ "schema": 1702901828372,
+ "variants": [
+ {
+ "environment": {
+ "locales": [
+ "es-MX"
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "base": {
+ "classification": "unknown",
+ "name": "MercadoLivre",
+ "urls": {
+ "search": {
+ "base": "https://www.mercadolivre.com.br/jm/search",
+ "searchTermParamName": "as_word"
+ }
+ }
+ },
+ "id": "62453dfa-0d82-4961-b6e2-241647aa04b6",
+ "identifier": "mercadolivre",
+ "last_modified": 1702906502281,
+ "recordType": "engine",
+ "schema": 1702901829001,
+ "variants": [
+ {
+ "environment": {
+ "locales": [
+ "pt-BR"
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "base": {
+ "classification": "unknown",
+ "name": "네이버",
+ "urls": {
+ "search": {
+ "base": "https://search.naver.com/search.naver",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
+ "name": "where",
+ "value": "nexearch"
+ },
+ {
+ "name": "frm",
+ "value": "ff"
+ },
+ {
+ "name": "sm",
+ "value": "oss"
+ },
+ {
+ "name": "ie",
+ "value": "utf8"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "query"
},
"suggestions": {
- "base": "https://hr.wikipedia.org/w/api.php",
+ "base": "https://ac.search.naver.com/nx/ac",
"params": [
{
- "name": "action",
- "value": "opensearch"
+ "name": "of",
+ "value": "os"
+ },
+ {
+ "name": "ie",
+ "value": "utf-8"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "q"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901756375,
+ "id": "88d22607-619b-4c7a-8708-bb0caef15e18",
+ "identifier": "naver-kr",
+ "last_modified": 1702906502278,
+ "recordType": "engine",
+ "schema": 1702901829625,
"variants": [
{
"environment": {
"locales": [
- "hr"
+ "ko"
]
}
}
- ],
- "identifier": "wikipedia-hr",
- "recordType": "engine",
- "id": "eb03a427-1f71-4df9-b609-a36064d2d0e2",
- "last_modified": 1702906502658
+ ]
},
{
"base": {
- "name": "Wikipedija (hsb)",
+ "classification": "unknown",
+ "name": "Odpiralni Časi",
"urls": {
"search": {
- "base": "https://hsb.wikipedia.org/wiki/Specialnje:Pytać",
+ "base": "https://www.odpiralnicasi.com/spots",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
+ "name": "source",
+ "value": "1"
}
],
+ "searchTermParamName": "q"
+ }
+ }
+ },
+ "id": "2039744c-adce-459b-a547-e3dba931c2a0",
+ "identifier": "odpiralni",
+ "last_modified": 1702906502275,
+ "recordType": "engine",
+ "schema": 1702901830238,
+ "variants": [
+ {
+ "environment": {
+ "locales": [
+ "sl"
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "base": {
+ "classification": "unknown",
+ "name": "Pazaruvaj",
+ "urls": {
+ "search": {
+ "base": "https://www.pazaruvaj.com/CategorySearch.php",
+ "searchTermParamName": "st"
+ }
+ }
+ },
+ "id": "ddf4875a-61d4-4677-8aad-74fb3ef2e1df",
+ "identifier": "pazaruvaj",
+ "last_modified": 1702906502272,
+ "recordType": "engine",
+ "schema": 1702901830856,
+ "variants": [
+ {
+ "environment": {
+ "locales": [
+ "bg"
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "base": {
+ "charset": "ISO-8859-15",
+ "classification": "unknown",
+ "name": "Priberam",
+ "urls": {
+ "search": {
+ "base": "https://www.priberam.pt/dlpo/firefox.aspx",
+ "searchTermParamName": "pal"
+ }
+ }
+ },
+ "id": "4bc3282e-f318-443c-8b2f-c144205657d4",
+ "identifier": "priberam",
+ "last_modified": 1702906502270,
+ "recordType": "engine",
+ "schema": 1702901831479,
+ "variants": [
+ {
+ "environment": {
+ "locales": [
+ "pt-PT"
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "base": {
+ "classification": "unknown",
+ "name": "Prisjakt",
+ "urls": {
+ "search": {
+ "base": "https://www.prisjakt.nu/search",
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://hsb.wikipedia.org/w/api.php",
- "params": [
- {
- "name": "action",
- "value": "opensearch"
- }
- ],
+ "base": "https://www.prisjakt.nu/plugins/opensearch/suggestions.php",
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901756979,
+ "id": "e4f4c143-7b0a-4ae5-b461-cd22da9da90a",
+ "identifier": "prisjakt-sv-SE",
+ "last_modified": 1702906502267,
+ "recordType": "engine",
+ "schema": 1702901832077,
"variants": [
{
"environment": {
"locales": [
- "hsb"
+ "sv-SE"
]
}
}
- ],
- "identifier": "wikipedia-hsb",
- "recordType": "engine",
- "id": "5235d5f1-e04d-4ba3-b53b-35a8d09d2142",
- "last_modified": 1702906502655
+ ]
},
{
"base": {
- "name": "Wikipédia (hu)",
+ "aliases": [
+ "qwant"
+ ],
+ "classification": "general",
+ "name": "Qwant",
+ "partnerCode": "brz-moz",
"urls": {
"search": {
- "base": "https://hu.wikipedia.org/wiki/Speciális:Keresés",
+ "base": "https://www.qwant.com/",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
+ "name": "client",
+ "value": "{partnerCode}"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "q"
},
"suggestions": {
- "base": "https://hu.wikipedia.org/w/api.php",
+ "base": "https://api.qwant.com/api/suggest/",
"params": [
{
- "name": "action",
+ "name": "client",
"value": "opensearch"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "q"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901757634,
+ "id": "2e62746e-b90a-42ee-b0f2-9ed0e1e2eaf0",
+ "identifier": "qwant",
+ "last_modified": 1710766863306,
+ "recordType": "engine",
+ "schema": 1710460806956,
"variants": [
{
"environment": {
"locales": [
- "hu"
+ "fr"
+ ]
+ }
+ },
+ {
+ "environment": {
+ "regions": [
+ "be",
+ "ch",
+ "es",
+ "fr",
+ "it",
+ "nl"
]
}
+ },
+ {
+ "environment": {
+ "distributions": [
+ "qwant-001",
+ "qwant-002"
+ ]
+ },
+ "partnerCode": "firefoxqwant",
+ "telemetrySuffix": "qwant"
}
- ],
- "identifier": "wikipedia-hu",
- "recordType": "engine",
- "id": "9a10f883-2da7-4070-8a73-543153bdd52c",
- "last_modified": 1702906502651
+ ]
},
{
"base": {
- "name": "Wikipedia (ia)",
+ "classification": "unknown",
+ "name": "Qwant Junior",
+ "partnerCode": "firefoxqwant",
"urls": {
"search": {
- "base": "https://ia.wikipedia.org/wiki/Special:Recerca",
+ "base": "https://www.qwantjunior.com/",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
+ "name": "client",
+ "value": "{partnerCode}"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "q"
},
"suggestions": {
- "base": "https://ia.wikipedia.org/w/api.php",
+ "base": "https://api.qwant.com/egp/suggest/",
"params": [
{
- "name": "action",
+ "name": "client",
"value": "opensearch"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "q"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901758249,
+ "id": "7996de41-caf5-4e52-8d96-4ee89ede5d5c",
+ "identifier": "qwantjr",
+ "last_modified": 1702906502346,
+ "recordType": "engine",
+ "schema": 1702901815498,
"variants": [
{
"environment": {
+ "distributions": [
+ "qwant-001",
+ "qwant-002"
+ ],
"locales": [
- "ia"
+ "fr"
]
}
}
- ],
- "identifier": "wikipedia-ia",
- "recordType": "engine",
- "id": "6787b684-aa4f-48d2-9673-fce3b528c71c",
- "last_modified": 1702906502647
+ ]
},
{
"base": {
- "name": "Wikipedia (id)",
+ "charset": "EUC-JP",
+ "classification": "unknown",
+ "name": "楽天市場",
"urls": {
"search": {
- "base": "https://id.wikipedia.org/wiki/Istimewa:Pencarian",
+ "base": "https://pt.afl.rakuten.co.jp/c/013ca98b.cd7c5f0c/",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
- }
- ],
- "searchTermParamName": "search"
- },
- "suggestions": {
- "base": "https://id.wikipedia.org/w/api.php",
- "params": [
+ "name": "sv",
+ "value": "2"
+ },
{
- "name": "action",
- "value": "opensearch"
+ "name": "p",
+ "value": "0"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "sitem"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901758856,
+ "id": "ab6f7178-b0be-452a-82f2-f5df8df2d836",
+ "identifier": "rakuten",
+ "last_modified": 1702906502326,
+ "recordType": "engine",
+ "schema": 1702901819182,
"variants": [
{
"environment": {
"locales": [
- "id"
+ "ja",
+ "ja-JP-macos"
]
}
}
- ],
- "identifier": "wikipedia-id",
- "recordType": "engine",
- "id": "163da4a0-e59f-423a-bebc-3ec3bd68b941",
- "last_modified": 1702906502644
+ ]
},
{
"base": {
- "name": "Wikipedia (is)",
+ "classification": "unknown",
+ "name": "Readmoo 讀墨電子書",
"urls": {
"search": {
- "base": "https://is.wikipedia.org/wiki/Kerfissíða:Leit",
+ "base": "https://readmoo.com/search/keyword",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
- }
- ],
- "searchTermParamName": "search"
- },
- "suggestions": {
- "base": "https://is.wikipedia.org/w/api.php",
- "params": [
+ "name": "pi",
+ "value": "0"
+ },
{
- "name": "action",
- "value": "opensearch"
+ "name": "st",
+ "value": "true"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "q"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901759494,
+ "id": "f1570611-5dfa-4028-851c-fafaa8324bbd",
+ "identifier": "readmoo",
+ "last_modified": 1702906502264,
+ "recordType": "engine",
+ "schema": 1702901832677,
"variants": [
{
"environment": {
"locales": [
- "is"
+ "zh-TW"
]
}
}
- ],
- "identifier": "wikipedia-is",
- "recordType": "engine",
- "id": "26ca2f38-0472-45de-83fd-78d67aaecd22",
- "last_modified": 1702906502640
+ ]
},
{
"base": {
- "name": "ვიკიპედია (ka)",
+ "classification": "unknown",
+ "name": "Salidzini.lv",
"urls": {
"search": {
- "base": "https://ka.wikipedia.org/wiki/სპეციალური:ძიება",
+ "base": "https://www.salidzini.lv/search.php",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
+ "name": "utm_source",
+ "value": "firefox-plugin"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "q"
},
"suggestions": {
- "base": "https://ka.wikipedia.org/w/api.php",
- "params": [
- {
- "name": "action",
- "value": "opensearch"
- }
- ],
- "searchTermParamName": "search"
+ "base": "https://www.salidzini.lv/search_suggest_opensearch.php",
+ "searchTermParamName": "q"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901760115,
+ "id": "883c6f10-cac4-4dc0-b631-9a28cbadda49",
+ "identifier": "salidzinilv",
+ "last_modified": 1702906502262,
+ "recordType": "engine",
+ "schema": 1702901833283,
"variants": [
{
"environment": {
"locales": [
- "ka"
+ "ltg",
+ "lv"
]
}
}
- ],
- "identifier": "wikipedia-ka",
- "recordType": "engine",
- "id": "ca784382-7beb-4a93-b211-745d4d71ec6c",
- "last_modified": 1702906502636
+ ]
},
{
"base": {
- "name": "Wikipedia (kab)",
+ "classification": "unknown",
+ "name": "Seznam",
+ "partnerCode": "firefox",
"urls": {
"search": {
- "base": "https://kab.wikipedia.org/wiki/Uslig:Search",
+ "base": "https://search.seznam.cz/",
"params": [
{
"name": "sourceid",
- "value": "Mozilla-search"
+ "value": "{partnerCode}"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "q"
},
"suggestions": {
- "base": "https://kab.wikipedia.org/w/api.php",
- "params": [
- {
- "name": "action",
- "value": "opensearch"
- }
- ],
- "searchTermParamName": "search"
+ "base": "https://suggest.seznam.cz/fulltext_ff",
+ "searchTermParamName": "phrase"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901760752,
+ "id": "b0cdb724-b7df-47d0-8ead-93aa0a8f60a2",
+ "identifier": "seznam-cz",
+ "last_modified": 1702906502339,
+ "recordType": "engine",
+ "schema": 1702901816717,
"variants": [
{
"environment": {
"locales": [
- "kab"
+ "cs"
]
}
}
- ],
- "identifier": "wikipedia-kab",
+ ]
+ },
+ {
+ "base": {
+ "classification": "unknown",
+ "name": "Tyda.se",
+ "urls": {
+ "search": {
+ "base": "https://tyda.se/",
+ "searchTermParamName": "w"
+ }
+ }
+ },
+ "id": "511f0050-e322-456f-9f15-acafef69c898",
+ "identifier": "tyda-sv-SE",
+ "last_modified": 1702906502259,
"recordType": "engine",
- "id": "e6f20ba5-3013-4b18-ad7a-351a64e62ec4",
- "last_modified": 1702906502632
+ "schema": 1702901833893,
+ "variants": [
+ {
+ "environment": {
+ "locales": [
+ "sv-SE"
+ ]
+ }
+ }
+ ]
},
{
"base": {
- "name": "Уикипедия (kk)",
+ "charset": "ISO-8859-2",
+ "classification": "unknown",
+ "name": "Vatera.hu",
"urls": {
"search": {
- "base": "https://kk.wikipedia.org/wiki/Арнайы:Іздеу",
+ "base": "https://www.vatera.hu/listings/index.php",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
- }
- ],
- "searchTermParamName": "search"
- },
- "suggestions": {
- "base": "https://kk.wikipedia.org/w/api.php",
- "params": [
+ "name": "c",
+ "value": "0"
+ },
{
- "name": "action",
- "value": "opensearch"
+ "name": "td",
+ "value": "on"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "q"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901761359,
+ "id": "ede75b07-cdc0-485b-8a9c-8282f15c4ede",
+ "identifier": "vatera",
+ "last_modified": 1702906502256,
+ "recordType": "engine",
+ "schema": 1702901834503,
"variants": [
{
"environment": {
"locales": [
- "kk"
+ "hu"
]
}
}
- ],
- "identifier": "wikipedia-kk",
- "recordType": "engine",
- "id": "15f00a29-0d68-4ff1-89d1-5e58b95618b7",
- "last_modified": 1702906502628
+ ]
},
{
"base": {
- "name": "វីគីភីឌា (km)",
+ "classification": "unknown",
+ "name": "WEB.DE Suche",
"urls": {
"search": {
- "base": "https://km.wikipedia.org/wiki/ពិសេស:ស្វែងរក",
+ "base": "https://go.web.de/br/moz_search_web/",
"params": [
{
- "name": "sourceid",
- "value": "Mozilla-search"
+ "name": "enc",
+ "value": "UTF-8"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "q"
},
"suggestions": {
- "base": "https://km.wikipedia.org/w/api.php",
+ "base": "https://suggestplugin.ui-portal.de/s",
"params": [
{
- "name": "action",
- "value": "opensearch"
+ "name": "brand",
+ "value": "webde"
+ },
+ {
+ "name": "origin",
+ "value": "br_splugin_ff_sg"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "q"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901761969,
+ "id": "3d42fa9a-08ca-4057-b79d-917c576e2634",
+ "identifier": "webde",
+ "last_modified": 1702906502332,
+ "recordType": "engine",
+ "schema": 1702901817944,
"variants": [
{
"environment": {
- "locales": [
- "km"
+ "distributions": [
+ "webde"
]
}
}
- ],
- "identifier": "wikipedia-km",
- "recordType": "engine",
- "id": "c8a7bec0-7f33-44e1-9521-363530993acc",
- "last_modified": 1702906502625
+ ]
},
{
"base": {
- "name": "Wikipedia (kn)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (en)",
"urls": {
"search": {
- "base": "https://kn.wikipedia.org/wiki/ವಿಶೇಷ:Search",
+ "base": "https://en.wikipedia.org/wiki/Special:Search",
"params": [
{
"name": "sourceid",
@@ -2262,7 +3180,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://kn.wikipedia.org/w/api.php",
+ "base": "https://en.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -2271,33 +3189,131 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901762594,
+ "id": "7f6d23c2-191e-483e-af3a-ce6451e3a8dd",
+ "identifier": "wikipedia",
+ "last_modified": 1702906502744,
+ "recordType": "engine",
+ "schema": 1702901740904,
"variants": [
{
"environment": {
- "locales": [
- "kn"
+ "allRegionsAndLocales": true,
+ "excludedLocales": [
+ "af",
+ "an",
+ "ar",
+ "ast",
+ "az",
+ "be",
+ "bg",
+ "bn",
+ "br",
+ "bs",
+ "ca",
+ "ca-valencia",
+ "cs",
+ "cy",
+ "da",
+ "de",
+ "dsb",
+ "el",
+ "eo",
+ "cak",
+ "es-AR",
+ "es-CL",
+ "es-ES",
+ "es-MX",
+ "trs",
+ "et",
+ "eu",
+ "fa",
+ "fi",
+ "fr",
+ "ff",
+ "son",
+ "fy-NL",
+ "ga-IE",
+ "gd",
+ "gl",
+ "gn",
+ "gu-IN",
+ "hi-IN",
+ "he",
+ "hr",
+ "hsb",
+ "hu",
+ "hy-AM",
+ "ia",
+ "id",
+ "is",
+ "ja",
+ "ja-JP-macos",
+ "ka",
+ "kab",
+ "kk",
+ "km",
+ "kn",
+ "ko",
+ "it",
+ "fur",
+ "sc",
+ "lij",
+ "lo",
+ "lt",
+ "ltg",
+ "lv",
+ "mk",
+ "mr",
+ "ms",
+ "my",
+ "nb-NO",
+ "ne-NP",
+ "nl",
+ "nn-NO",
+ "oc",
+ "pa-IN",
+ "pl",
+ "szl",
+ "pt-BR",
+ "pt-PT",
+ "rm",
+ "ro",
+ "ru",
+ "si",
+ "sk",
+ "sl",
+ "sq",
+ "sr",
+ "sv-SE",
+ "ta",
+ "te",
+ "th",
+ "tl",
+ "tr",
+ "uk",
+ "ur",
+ "uz",
+ "vi",
+ "wo",
+ "zh-CN",
+ "zh-TW"
]
}
}
- ],
- "identifier": "wikipedia-kn",
- "recordType": "engine",
- "id": "ce510c56-9d5e-416c-aef0-277bfbaac464",
- "last_modified": 1702906502622
+ ]
},
{
"base": {
- "name": "Wikipedia (lij)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (nn)",
"urls": {
"search": {
- "base": "https://lij.wikipedia.org/wiki/Speçiale:Riçerca",
+ "base": "https://nn.wikipedia.org/wiki/Spesial:Søk",
"params": [
{
"name": "sourceid",
@@ -2307,7 +3323,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://lij.wikipedia.org/w/api.php",
+ "base": "https://nn.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -2316,33 +3332,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901763202,
+ "id": "c3462c25-acc1-4003-a57b-3931bfacdce5",
+ "identifier": "wikipedia-NN",
+ "last_modified": 1702906502462,
+ "recordType": "engine",
+ "schema": 1702901792200,
"variants": [
{
"environment": {
"locales": [
- "lij"
+ "nn-NO"
]
}
}
- ],
- "identifier": "wikipedia-lij",
- "recordType": "engine",
- "id": "5ec04310-966d-40da-af5b-f24383d40c8a",
- "last_modified": 1702906502619
+ ]
},
{
"base": {
- "name": "ວິກິພີເດຍ (lo)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (no)",
"urls": {
"search": {
- "base": "https://lo.wikipedia.org/wiki/ພິເສດ:ຊອກຫາ",
+ "base": "https://no.wikipedia.org/wiki/Spesial:Søk",
"params": [
{
"name": "sourceid",
@@ -2352,7 +3368,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://lo.wikipedia.org/w/api.php",
+ "base": "https://no.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -2361,33 +3377,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901763817,
+ "id": "607d401f-70cd-4810-b9b5-497d5a9489f6",
+ "identifier": "wikipedia-NO",
+ "last_modified": 1702906502467,
+ "recordType": "engine",
+ "schema": 1702901790944,
"variants": [
{
"environment": {
"locales": [
- "lo"
+ "nb-NO"
]
}
}
- ],
- "identifier": "wikipedia-lo",
- "recordType": "engine",
- "id": "515c4522-284d-468f-926a-eb7eb8a55e22",
- "last_modified": 1702906502615
+ ]
},
{
"base": {
- "name": "Wikipedia (lt)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (af)",
"urls": {
"search": {
- "base": "https://lt.wikipedia.org/wiki/Specialus:Paieška",
+ "base": "https://af.wikipedia.org/wiki/Spesiaal:Soek",
"params": [
{
"name": "sourceid",
@@ -2397,7 +3413,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://lt.wikipedia.org/w/api.php",
+ "base": "https://af.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -2406,33 +3422,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901764432,
+ "id": "9dcc6d57-1b00-4cdc-bc11-d70593a3da30",
+ "identifier": "wikipedia-af",
+ "last_modified": 1702906502739,
+ "recordType": "engine",
+ "schema": 1702901741515,
"variants": [
{
"environment": {
"locales": [
- "lt"
+ "af"
]
}
}
- ],
- "identifier": "wikipedia-lt",
- "recordType": "engine",
- "id": "774990fb-aabc-4008-86d3-adf12f89ccd4",
- "last_modified": 1702906502612
+ ]
},
{
"base": {
- "name": "Vikipedeja (ltg)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Biquipedia (an)",
"urls": {
"search": {
- "base": "https://ltg.wikipedia.org/wiki/Seviškuo:Search",
+ "base": "https://an.wikipedia.org/wiki/Especial:Mirar",
"params": [
{
"name": "sourceid",
@@ -2442,7 +3458,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://ltg.wikipedia.org/w/api.php",
+ "base": "https://an.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -2451,33 +3467,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901765044,
+ "id": "1c2173e4-1ad3-4347-900a-17f4103c6bbe",
+ "identifier": "wikipedia-an",
+ "last_modified": 1702906502736,
+ "recordType": "engine",
+ "schema": 1702901742155,
"variants": [
{
"environment": {
"locales": [
- "ltg"
+ "an"
]
}
}
- ],
- "identifier": "wikipedia-ltg",
- "recordType": "engine",
- "id": "52871fd0-a24a-443b-a2d4-17eb09951691",
- "last_modified": 1702906502609
+ ]
},
{
"base": {
- "name": "Vikipēdija",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "ويكيبيديا (ar)",
"urls": {
"search": {
- "base": "https://lv.wikipedia.org/wiki/Special:Search",
+ "base": "https://ar.wikipedia.org/wiki/خاص:بحث",
"params": [
{
"name": "sourceid",
@@ -2487,7 +3503,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://lv.wikipedia.org/w/api.php",
+ "base": "https://ar.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -2496,33 +3512,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901765673,
+ "id": "3ed57e7f-df2a-4bb0-aecf-10327d5ff1ea",
+ "identifier": "wikipedia-ar",
+ "last_modified": 1702906502733,
+ "recordType": "engine",
+ "schema": 1702901742756,
"variants": [
{
"environment": {
"locales": [
- "lv"
+ "ar"
]
}
}
- ],
- "identifier": "wikipedia-lv",
- "recordType": "engine",
- "id": "395b6c93-f7ff-47b8-b895-6f7bb99f9c56",
- "last_modified": 1702906502606
+ ]
},
{
"base": {
- "name": "Википедија (mk)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (ast)",
"urls": {
"search": {
- "base": "https://mk.wikipedia.org/wiki/Специјална:Барај",
+ "base": "https://ast.wikipedia.org/wiki/Especial:Gueta",
"params": [
{
"name": "sourceid",
@@ -2532,7 +3548,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://mk.wikipedia.org/w/api.php",
+ "base": "https://ast.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -2541,33 +3557,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901766290,
+ "id": "e5f07079-9153-4104-a8b9-a9d15ff75853",
+ "identifier": "wikipedia-ast",
+ "last_modified": 1702906502729,
+ "recordType": "engine",
+ "schema": 1702901743369,
"variants": [
{
"environment": {
"locales": [
- "mk"
+ "ast"
]
}
}
- ],
- "identifier": "wikipedia-mk",
- "recordType": "engine",
- "id": "a3aa8882-cbb0-4002-b0fc-b6ff5cdb9d92",
- "last_modified": 1702906502602
+ ]
},
{
"base": {
- "name": "विकिपीडिया (mr)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Vikipediya (az)",
"urls": {
"search": {
- "base": "https://mr.wikipedia.org/wiki/विशेष:शोधा",
+ "base": "https://az.wikipedia.org/wiki/Xüsusi:Axtar",
"params": [
{
"name": "sourceid",
@@ -2577,7 +3593,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://mr.wikipedia.org/w/api.php",
+ "base": "https://az.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -2586,33 +3602,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901766916,
+ "id": "2230b4af-8fdf-4aa0-a496-5178b25382ed",
+ "identifier": "wikipedia-az",
+ "last_modified": 1702906502726,
+ "recordType": "engine",
+ "schema": 1702901743987,
"variants": [
{
"environment": {
"locales": [
- "mr"
+ "az"
]
}
}
- ],
- "identifier": "wikipedia-mr",
- "recordType": "engine",
- "id": "09f48c9b-b420-4312-8c60-aeb4358e0b97",
- "last_modified": 1702906502599
+ ]
},
{
"base": {
- "name": "Wikipedia (ms)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Вікіпедыя (be)",
"urls": {
"search": {
- "base": "https://ms.wikipedia.org/wiki/Khas:Gelintar",
+ "base": "https://be.wikipedia.org/wiki/Адмысловае:Search",
"params": [
{
"name": "sourceid",
@@ -2622,7 +3638,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://ms.wikipedia.org/w/api.php",
+ "base": "https://be.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -2631,33 +3647,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901767543,
+ "id": "5327659a-3b79-4071-95b5-b86f7cc25a25",
+ "identifier": "wikipedia-be",
+ "last_modified": 1702906502510,
+ "recordType": "engine",
+ "schema": 1702901782971,
"variants": [
{
"environment": {
"locales": [
- "ms"
+ "be"
]
}
}
- ],
- "identifier": "wikipedia-ms",
- "recordType": "engine",
- "id": "7039c888-4bd6-4b82-a164-ca3bfc93b24c",
- "last_modified": 1702906502595
+ ]
},
{
"base": {
- "name": "Wikipedia (my)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Вікіпэдыя (be-tarask)",
"urls": {
"search": {
- "base": "https://my.wikipedia.org/wiki/Special:Search",
+ "base": "https://be-tarask.wikipedia.org/wiki/Спэцыяльныя:Пошук",
"params": [
{
"name": "sourceid",
@@ -2667,7 +3683,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://my.wikipedia.org/w/api.php",
+ "base": "https://be-tarask.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -2676,33 +3692,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901768156,
+ "id": "d7cb9b4b-f53a-49ea-ae04-27172fb108e9",
+ "identifier": "wikipedia-be-tarask",
+ "last_modified": 1702906502506,
+ "recordType": "engine",
+ "schema": 1702901783595,
"variants": [
{
"environment": {
"locales": [
- "my"
+ "be"
]
}
}
- ],
- "identifier": "wikipedia-my",
- "recordType": "engine",
- "id": "0616dd06-2bfd-46f0-9870-832a1db8a622",
- "last_modified": 1702906502592
+ ]
},
{
"base": {
- "name": "Wikipedia (nl)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Уикипедия (bg)",
"urls": {
"search": {
- "base": "https://nl.wikipedia.org/wiki/Speciaal:Zoeken",
+ "base": "https://bg.wikipedia.org/wiki/Специални:Търсене",
"params": [
{
"name": "sourceid",
@@ -2712,7 +3728,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://nl.wikipedia.org/w/api.php",
+ "base": "https://bg.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -2721,33 +3737,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901768793,
+ "id": "6324bcb4-9aad-4aa2-b10c-f320ae1242c3",
+ "identifier": "wikipedia-bg",
+ "last_modified": 1702906502723,
+ "recordType": "engine",
+ "schema": 1702901744580,
"variants": [
{
"environment": {
"locales": [
- "nl"
+ "bg"
]
}
}
- ],
- "identifier": "wikipedia-nl",
- "recordType": "engine",
- "id": "9e423eca-df00-4385-ab15-4e61bc220b05",
- "last_modified": 1702906502588
+ ]
},
{
"base": {
- "name": "Wikipèdia (oc)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "উইকিপিডিয়া (bn)",
"urls": {
"search": {
- "base": "https://oc.wikipedia.org/wiki/Especial:Recèrca",
+ "base": "https://bn.wikipedia.org/wiki/বিশেষ:Search",
"params": [
{
"name": "sourceid",
@@ -2757,7 +3773,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://oc.wikipedia.org/w/api.php",
+ "base": "https://bn.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -2766,33 +3782,35 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901769405,
+ "id": "a0a95a2c-83b7-4507-a4e9-5632ca9825dd",
+ "identifier": "wikipedia-bn",
+ "last_modified": 1702906502503,
+ "recordType": "engine",
+ "schema": 1702901784204,
"variants": [
{
"environment": {
"locales": [
- "oc"
+ "bn",
+ "bn-BD",
+ "bn-IN"
]
}
}
- ],
- "identifier": "wikipedia-oc",
- "recordType": "engine",
- "id": "e3e2c4a1-4914-4a27-96f8-63fb6a90f490",
- "last_modified": 1702906502585
+ ]
},
{
"base": {
- "name": "Wikipedia (rm)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (br)",
"urls": {
"search": {
- "base": "https://rm.wikipedia.org/wiki/Spezial:Search",
+ "base": "https://br.wikipedia.org/wiki/Dibar:Klask",
"params": [
{
"name": "sourceid",
@@ -2802,7 +3820,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://rm.wikipedia.org/w/api.php",
+ "base": "https://br.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -2811,33 +3829,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901770011,
+ "id": "c9266f36-f954-44df-924b-a1c205f66d7c",
+ "identifier": "wikipedia-br",
+ "last_modified": 1702906502718,
+ "recordType": "engine",
+ "schema": 1702901745178,
"variants": [
{
"environment": {
"locales": [
- "rm"
+ "br"
]
}
}
- ],
- "identifier": "wikipedia-rm",
- "recordType": "engine",
- "id": "4042df85-6b55-4a40-9c3f-ef74b05ef5be",
- "last_modified": 1702906502581
+ ]
},
{
"base": {
- "name": "Wikipedia (ro)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (bs)",
"urls": {
"search": {
- "base": "https://ro.wikipedia.org/wiki/Special:Căutare",
+ "base": "https://bs.wikipedia.org/wiki/Posebno:Pretraga",
"params": [
{
"name": "sourceid",
@@ -2847,7 +3865,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://ro.wikipedia.org/w/api.php",
+ "base": "https://bs.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -2856,33 +3874,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901770632,
+ "id": "c88785cc-48de-4f07-a40f-5d6564de3183",
+ "identifier": "wikipedia-bs",
+ "last_modified": 1702906502715,
+ "recordType": "engine",
+ "schema": 1702901745796,
"variants": [
{
"environment": {
"locales": [
- "ro"
+ "bs"
]
}
}
- ],
- "identifier": "wikipedia-ro",
- "recordType": "engine",
- "id": "c2f3213e-f43f-4776-b1cb-b70d8457b6c7",
- "last_modified": 1702906502577
+ ]
},
{
"base": {
- "name": "Википедия (ru)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Viquipèdia (ca)",
"urls": {
"search": {
- "base": "https://ru.wikipedia.org/wiki/Служебная:Поиск",
+ "base": "https://ca.wikipedia.org/wiki/Especial:Cerca",
"params": [
{
"name": "sourceid",
@@ -2892,7 +3910,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://ru.wikipedia.org/w/api.php",
+ "base": "https://ca.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -2901,33 +3919,34 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901771244,
+ "id": "7ed640c7-bc86-45dc-b07a-f7d8b5a8e079",
+ "identifier": "wikipedia-ca",
+ "last_modified": 1702906502499,
+ "recordType": "engine",
+ "schema": 1702901784840,
"variants": [
{
"environment": {
"locales": [
- "ru"
+ "ca",
+ "ca-valencia"
]
}
}
- ],
- "identifier": "wikipedia-ru",
- "recordType": "engine",
- "id": "8f2b997a-8bfe-436d-9393-b9abb52522ef",
- "last_modified": 1702906502574
+ ]
},
{
"base": {
- "name": "Wikipedia (si)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wicipedia (cy)",
"urls": {
"search": {
- "base": "https://si.wikipedia.org/wiki/විශේෂ:ගවේෂණය",
+ "base": "https://cy.wikipedia.org/wiki/Arbennig:Search",
"params": [
{
"name": "sourceid",
@@ -2937,7 +3956,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://si.wikipedia.org/w/api.php",
+ "base": "https://cy.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -2946,33 +3965,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901771856,
+ "id": "0df7934b-5903-4382-ae3d-d898ac0487aa",
+ "identifier": "wikipedia-cy",
+ "last_modified": 1702906502711,
+ "recordType": "engine",
+ "schema": 1702901746399,
"variants": [
{
"environment": {
"locales": [
- "si"
+ "cy"
]
}
}
- ],
- "identifier": "wikipedia-si",
- "recordType": "engine",
- "id": "6a54dc6e-623a-4839-afd7-224e06d7ba73",
- "last_modified": 1702906502571
+ ]
},
{
"base": {
- "name": "Wikipédia (sk)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedie (cs)",
"urls": {
"search": {
- "base": "https://sk.wikipedia.org/wiki/Špeciálne:Hľadanie",
+ "base": "https://cs.wikipedia.org/wiki/Speciální:Hledání",
"params": [
{
"name": "sourceid",
@@ -2982,7 +4001,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://sk.wikipedia.org/w/api.php",
+ "base": "https://cs.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -2991,33 +4010,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901772461,
+ "id": "2574b200-f878-4b0c-b7e0-49804b3f4b8e",
+ "identifier": "wikipedia-cz",
+ "last_modified": 1702906502493,
+ "recordType": "engine",
+ "schema": 1702901786063,
"variants": [
{
"environment": {
"locales": [
- "sk"
+ "cs"
]
}
}
- ],
- "identifier": "wikipedia-sk",
- "recordType": "engine",
- "id": "f9d77028-e386-4093-aacd-a8c2a56acbc0",
- "last_modified": 1702906502568
+ ]
},
{
"base": {
- "name": "Wikipedija (sl)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (da)",
"urls": {
"search": {
- "base": "https://sl.wikipedia.org/wiki/Posebno:Iskanje",
+ "base": "https://da.wikipedia.org/wiki/Speciel:Søgning",
"params": [
{
"name": "sourceid",
@@ -3027,7 +4046,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://sl.wikipedia.org/w/api.php",
+ "base": "https://da.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -3036,33 +4055,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901773075,
+ "id": "ae42fcaa-ddee-4212-acb9-8bc15d09a39d",
+ "identifier": "wikipedia-da",
+ "last_modified": 1702906502707,
+ "recordType": "engine",
+ "schema": 1702901746995,
"variants": [
{
"environment": {
"locales": [
- "sl"
+ "da"
]
}
}
- ],
- "identifier": "wikipedia-sl",
- "recordType": "engine",
- "id": "887d2a1b-7275-4a4e-afa2-9157eb98a7d5",
- "last_modified": 1702906502565
+ ]
},
{
"base": {
- "name": "Wikipedia (sq)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (de)",
"urls": {
"search": {
- "base": "https://sq.wikipedia.org/wiki/Speciale:Kërkim",
+ "base": "https://de.wikipedia.org/wiki/Spezial:Suche",
"params": [
{
"name": "sourceid",
@@ -3072,7 +4091,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://sq.wikipedia.org/w/api.php",
+ "base": "https://de.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -3081,33 +4100,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901773681,
+ "id": "def1d4ba-b8c8-46c4-9800-134b989ca058",
+ "identifier": "wikipedia-de",
+ "last_modified": 1702906502704,
+ "recordType": "engine",
+ "schema": 1702901747613,
"variants": [
{
"environment": {
"locales": [
- "sq"
+ "de"
]
}
}
- ],
- "identifier": "wikipedia-sq",
- "recordType": "engine",
- "id": "bc8c03e7-747a-408c-a0ee-6598ca9fad4a",
- "last_modified": 1702906502561
+ ]
},
{
"base": {
- "name": "Википедија (sr)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedija (dsb)",
"urls": {
"search": {
- "base": "https://sr.wikipedia.org/wiki/Посебно:Претражи",
+ "base": "https://dsb.wikipedia.org/wiki/Specialne:Pytaś",
"params": [
{
"name": "sourceid",
@@ -3117,7 +4136,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://sr.wikipedia.org/w/api.php",
+ "base": "https://dsb.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -3126,33 +4145,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901774302,
+ "id": "c8a9299d-c9d2-4bf3-8f94-812d38af35f7",
+ "identifier": "wikipedia-dsb",
+ "last_modified": 1702906502701,
+ "recordType": "engine",
+ "schema": 1702901748278,
"variants": [
{
"environment": {
"locales": [
- "sr"
+ "dsb"
]
}
}
- ],
- "identifier": "wikipedia-sr",
- "recordType": "engine",
- "id": "d381964d-d1e3-4378-962c-6ac5b89161f8",
- "last_modified": 1702906502558
+ ]
},
{
"base": {
- "name": "Wikipedia (sv)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (el)",
"urls": {
"search": {
- "base": "https://sv.wikipedia.org/wiki/Special:Sök",
+ "base": "https://el.wikipedia.org/wiki/Ειδικό:Αναζήτηση",
"params": [
{
"name": "sourceid",
@@ -3162,7 +4181,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://sv.wikipedia.org/w/api.php",
+ "base": "https://el.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -3171,33 +4190,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901774920,
+ "id": "6ebc40f2-9307-4e58-8fd7-0e1a23b80723",
+ "identifier": "wikipedia-el",
+ "last_modified": 1702906502698,
+ "recordType": "engine",
+ "schema": 1702901748903,
"variants": [
{
"environment": {
"locales": [
- "sv-SE"
+ "el"
]
}
}
- ],
- "identifier": "wikipedia-sv-SE",
- "recordType": "engine",
- "id": "d0708bee-d246-4eb9-81ff-50d5947837ec",
- "last_modified": 1702906502555
+ ]
},
{
"base": {
- "name": "விக்கிப்பீடியா (ta)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Vikipedio (eo)",
"urls": {
"search": {
- "base": "https://ta.wikipedia.org/wiki/சிறப்பு:Search",
+ "base": "https://eo.wikipedia.org/wiki/Specialaĵo:Serĉi",
"params": [
{
"name": "sourceid",
@@ -3207,7 +4226,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://ta.wikipedia.org/w/api.php",
+ "base": "https://eo.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -3216,33 +4235,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901775549,
+ "id": "25b42f42-d6e4-4193-be32-b4ca61cb55c7",
+ "identifier": "wikipedia-eo",
+ "last_modified": 1702906502695,
+ "recordType": "engine",
+ "schema": 1702901749556,
"variants": [
{
"environment": {
"locales": [
- "ta"
+ "eo"
]
}
}
- ],
- "identifier": "wikipedia-ta",
- "recordType": "engine",
- "id": "78ed73b5-4afd-467e-b7ee-c96658f345c6",
- "last_modified": 1702906502552
+ ]
},
{
"base": {
- "name": "వికీపీడియా (te)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (es)",
"urls": {
"search": {
- "base": "https://te.wikipedia.org/wiki/ప్రత్యేక:అన్వేషణ",
+ "base": "https://es.wikipedia.org/wiki/Especial:Buscar",
"params": [
{
"name": "sourceid",
@@ -3252,7 +4271,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://te.wikipedia.org/w/api.php",
+ "base": "https://es.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -3261,33 +4280,38 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901776173,
+ "id": "82025e38-8eda-48c2-b844-2b5e7d489c34",
+ "identifier": "wikipedia-es",
+ "last_modified": 1702906502496,
+ "recordType": "engine",
+ "schema": 1702901785455,
"variants": [
{
"environment": {
"locales": [
- "te"
+ "cak",
+ "es-AR",
+ "es-CL",
+ "es-ES",
+ "es-MX",
+ "trs"
]
}
}
- ],
- "identifier": "wikipedia-te",
- "recordType": "engine",
- "id": "391eb3c6-de7a-4aaf-8027-3ad1b8c3c00a",
- "last_modified": 1702906502548
+ ]
},
{
"base": {
- "name": "วิกิพีเดีย",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Vikipeedia (et)",
"urls": {
"search": {
- "base": "https://th.wikipedia.org/wiki/พิเศษ:ค้นหา",
+ "base": "https://et.wikipedia.org/wiki/Eri:Otsimine",
"params": [
{
"name": "sourceid",
@@ -3297,7 +4321,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://th.wikipedia.org/w/api.php",
+ "base": "https://et.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -3306,33 +4330,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901776774,
+ "id": "87388ad0-c470-4a90-b79d-231e28b86eda",
+ "identifier": "wikipedia-et",
+ "last_modified": 1702906502691,
+ "recordType": "engine",
+ "schema": 1702901750177,
"variants": [
{
"environment": {
"locales": [
- "th"
+ "et"
]
}
}
- ],
- "identifier": "wikipedia-th",
- "recordType": "engine",
- "id": "5c7903a3-5a44-41a0-aac2-fc26fe8f8fe7",
- "last_modified": 1702906502545
+ ]
},
{
"base": {
- "name": "Wikipedia (tl)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (eu)",
"urls": {
"search": {
- "base": "https://tl.wikipedia.org/wiki/Natatangi:Maghanap",
+ "base": "https://eu.wikipedia.org/wiki/Berezi:Bilatu",
"params": [
{
"name": "sourceid",
@@ -3342,7 +4366,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://tl.wikipedia.org/w/api.php",
+ "base": "https://eu.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -3351,33 +4375,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901777391,
+ "id": "0d6704d1-3aed-420c-8c16-6aeefede499f",
+ "identifier": "wikipedia-eu",
+ "last_modified": 1702906502688,
+ "recordType": "engine",
+ "schema": 1702901750807,
"variants": [
{
"environment": {
"locales": [
- "tl"
+ "eu"
]
}
}
- ],
- "identifier": "wikipedia-tl",
- "recordType": "engine",
- "id": "d0c8b2f5-accc-45f4-adf4-a7377692869b",
- "last_modified": 1702906502542
+ ]
},
{
"base": {
- "name": "Wikipedia (tr)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "ویکی‌پدیا (fa)",
"urls": {
"search": {
- "base": "https://tr.wikipedia.org/wiki/Özel:Ara",
+ "base": "https://fa.wikipedia.org/wiki/ویژه:جستجو",
"params": [
{
"name": "sourceid",
@@ -3387,7 +4411,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://tr.wikipedia.org/w/api.php",
+ "base": "https://fa.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -3396,33 +4420,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901777988,
+ "id": "ce737d17-06f0-46f2-8c88-97f796ad88dc",
+ "identifier": "wikipedia-fa",
+ "last_modified": 1702906502685,
+ "recordType": "engine",
+ "schema": 1702901751455,
"variants": [
{
"environment": {
"locales": [
- "tr"
+ "fa"
]
}
}
- ],
- "identifier": "wikipedia-tr",
- "recordType": "engine",
- "id": "8885ffbb-f450-4642-8204-ed9128b29e51",
- "last_modified": 1702906502539
+ ]
},
{
"base": {
- "name": "Вікіпедія (uk)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (fi)",
"urls": {
"search": {
- "base": "https://uk.wikipedia.org/wiki/Спеціальна:Пошук",
+ "base": "https://fi.wikipedia.org/wiki/Toiminnot:Haku",
"params": [
{
"name": "sourceid",
@@ -3432,7 +4456,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://uk.wikipedia.org/w/api.php",
+ "base": "https://fi.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -3441,33 +4465,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901778586,
+ "id": "0820d593-6616-476a-ab3d-763c4d14dcc6",
+ "identifier": "wikipedia-fi",
+ "last_modified": 1702906502682,
+ "recordType": "engine",
+ "schema": 1702901752065,
"variants": [
{
"environment": {
"locales": [
- "uk"
+ "fi"
]
}
}
- ],
- "identifier": "wikipedia-uk",
- "recordType": "engine",
- "id": "3b65a693-177a-4bd2-9d66-8c038e005800",
- "last_modified": 1702906502536
+ ]
},
{
"base": {
- "name": "ویکیپیڈیا (ur)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipédia (fr)",
"urls": {
"search": {
- "base": "https://ur.wikipedia.org/wiki/خاص:تلاش",
+ "base": "https://fr.wikipedia.org/wiki/Spécial:Recherche",
"params": [
{
"name": "sourceid",
@@ -3477,7 +4501,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://ur.wikipedia.org/w/api.php",
+ "base": "https://fr.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -3486,33 +4510,35 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901779213,
+ "id": "a0261c4c-7b60-42c5-b35b-00ab57c5fbc4",
+ "identifier": "wikipedia-fr",
+ "last_modified": 1702906502488,
+ "recordType": "engine",
+ "schema": 1702901786670,
"variants": [
{
"environment": {
"locales": [
- "ur"
+ "ff",
+ "fr",
+ "son"
]
}
}
- ],
- "identifier": "wikipedia-ur",
- "recordType": "engine",
- "id": "52a714ba-0471-47be-9557-fc5fe9c9ff50",
- "last_modified": 1702906502533
+ ]
},
{
"base": {
- "name": "Vikipediya (uz)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedy (fy)",
"urls": {
"search": {
- "base": "https://uz.wikipedia.org/wiki/Maxsus:Search",
+ "base": "https://fy.wikipedia.org/wiki/Wiki:Sykje",
"params": [
{
"name": "sourceid",
@@ -3522,7 +4548,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://uz.wikipedia.org/w/api.php",
+ "base": "https://fy.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -3531,33 +4557,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901779828,
+ "id": "4a6a7952-460d-4951-a011-9fc414f2569a",
+ "identifier": "wikipedia-fy-NL",
+ "last_modified": 1702906502679,
+ "recordType": "engine",
+ "schema": 1702901752745,
"variants": [
{
"environment": {
"locales": [
- "uz"
+ "fy-NL"
]
}
}
- ],
- "identifier": "wikipedia-uz",
- "recordType": "engine",
- "id": "1b07d255-6f2c-4e2d-a4b4-b0e99aae39e9",
- "last_modified": 1702906502529
+ ]
},
{
"base": {
- "name": "Wikipedia (vi)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Vicipéid (ga)",
"urls": {
"search": {
- "base": "https://vi.wikipedia.org/wiki/Đặc_biệt:Tìm_kiếm",
+ "base": "https://ga.wikipedia.org/wiki/Speisialta:Search",
"params": [
{
"name": "sourceid",
@@ -3567,7 +4593,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://vi.wikipedia.org/w/api.php",
+ "base": "https://ga.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -3576,33 +4602,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901780448,
+ "id": "d8d0e94c-27e7-42b1-a5e2-b24198021234",
+ "identifier": "wikipedia-ga-IE",
+ "last_modified": 1702906502675,
+ "recordType": "engine",
+ "schema": 1702901753350,
"variants": [
{
"environment": {
"locales": [
- "vi"
+ "ga-IE"
]
}
}
- ],
- "identifier": "wikipedia-vi",
- "recordType": "engine",
- "id": "5b6f0a3f-1f94-473d-8bcc-c48984523b0c",
- "last_modified": 1702906502525
+ ]
},
{
"base": {
- "name": "Wikipedia (wo)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Uicipeid (gd)",
"urls": {
"search": {
- "base": "https://wo.wikipedia.org/wiki/Jagleel:Ceet",
+ "base": "https://gd.wikipedia.org/wiki/Sònraichte:Search",
"params": [
{
"name": "sourceid",
@@ -3612,7 +4638,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://wo.wikipedia.org/w/api.php",
+ "base": "https://gd.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -3621,33 +4647,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901781072,
+ "id": "df26225d-6726-4630-94ce-7a398598139b",
+ "identifier": "wikipedia-gd",
+ "last_modified": 1702906502672,
+ "recordType": "engine",
+ "schema": 1702901753945,
"variants": [
{
"environment": {
"locales": [
- "wo"
+ "gd"
]
}
}
- ],
- "identifier": "wikipedia-wo",
- "recordType": "engine",
- "id": "3f1ba3c7-23f1-4ca1-aa0c-623fcae80ddd",
- "last_modified": 1702906502521
+ ]
},
{
"base": {
- "name": "维基百科",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (gl)",
"urls": {
"search": {
- "base": "https://zh.wikipedia.org/wiki/Special:搜索",
+ "base": "https://gl.wikipedia.org/wiki/Especial:Procurar",
"params": [
{
"name": "sourceid",
@@ -3657,7 +4683,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://zh.wikipedia.org/w/api.php",
+ "base": "https://gl.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -3666,47 +4692,43 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901781680,
+ "id": "cd385c40-96bc-43c4-9f30-eff738828401",
+ "identifier": "wikipedia-gl",
+ "last_modified": 1702906502668,
+ "recordType": "engine",
+ "schema": 1702901754558,
"variants": [
{
"environment": {
"locales": [
- "zh-CN"
+ "gl"
]
}
}
- ],
- "identifier": "wikipedia-zh-CN",
- "recordType": "engine",
- "id": "c0f736ce-c219-4388-a242-48168237e3f5",
- "last_modified": 1702906502518
+ ]
},
{
"base": {
- "name": "Wikipedia (zh)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Vikipetã (gn)",
"urls": {
"search": {
- "base": "https://zh.wikipedia.org/wiki/Special:搜索",
+ "base": "https://gn.wikipedia.org/wiki/Mba'echĩchĩ:Buscar",
"params": [
{
"name": "sourceid",
"value": "Mozilla-search"
- },
- {
- "name": "variant",
- "value": "zh-tw"
}
],
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://zh.wikipedia.org/w/api.php",
+ "base": "https://gn.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -3715,33 +4737,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901782303,
+ "id": "b66515df-d7b1-403c-b0df-22a5ce9dd07f",
+ "identifier": "wikipedia-gn",
+ "last_modified": 1702906502665,
+ "recordType": "engine",
+ "schema": 1702901755160,
"variants": [
{
"environment": {
"locales": [
- "zh-TW"
+ "gn"
]
}
}
- ],
- "identifier": "wikipedia-zh-TW",
- "recordType": "engine",
- "id": "864df79e-c03d-47ee-aacf-06242cffe951",
- "last_modified": 1702906502515
+ ]
},
{
"base": {
- "name": "Вікіпедыя (be)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "વિકિપીડિયા (gu)",
"urls": {
"search": {
- "base": "https://be.wikipedia.org/wiki/Адмысловае:Search",
+ "base": "https://gu.wikipedia.org/wiki/વિશેષ:શોધ",
"params": [
{
"name": "sourceid",
@@ -3751,7 +4773,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://be.wikipedia.org/w/api.php",
+ "base": "https://gu.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -3760,33 +4782,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901782971,
+ "id": "ede0b78c-500a-4d1b-8236-cd5e7ceee815",
+ "identifier": "wikipedia-gu",
+ "last_modified": 1702906502485,
+ "recordType": "engine",
+ "schema": 1702901787288,
"variants": [
{
"environment": {
"locales": [
- "be"
+ "gu-IN"
]
}
}
- ],
- "identifier": "wikipedia-be",
- "recordType": "engine",
- "id": "5327659a-3b79-4071-95b5-b86f7cc25a25",
- "last_modified": 1702906502510
+ ]
},
{
"base": {
- "name": "Вікіпэдыя (be-tarask)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "ויקיפדיה",
"urls": {
"search": {
- "base": "https://be-tarask.wikipedia.org/wiki/Спэцыяльныя:Пошук",
+ "base": "https://he.wikipedia.org/wiki/מיוחד:חיפוש",
"params": [
{
"name": "sourceid",
@@ -3796,7 +4818,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://be-tarask.wikipedia.org/w/api.php",
+ "base": "https://he.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -3805,33 +4827,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901783595,
+ "id": "f96aab0d-3562-445c-a70f-5805ea1d25fe",
+ "identifier": "wikipedia-he",
+ "last_modified": 1702906502662,
+ "recordType": "engine",
+ "schema": 1702901755766,
"variants": [
{
"environment": {
"locales": [
- "be"
+ "he"
]
}
}
- ],
- "identifier": "wikipedia-be-tarask",
- "recordType": "engine",
- "id": "d7cb9b4b-f53a-49ea-ae04-27172fb108e9",
- "last_modified": 1702906502506
+ ]
},
{
"base": {
- "name": "উইকিপিডিয়া (bn)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "विकिपीडिया (hi)",
"urls": {
"search": {
- "base": "https://bn.wikipedia.org/wiki/বিশেষ:Search",
+ "base": "https://hi.wikipedia.org/wiki/विशेष:खोज",
"params": [
{
"name": "sourceid",
@@ -3841,7 +4863,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://bn.wikipedia.org/w/api.php",
+ "base": "https://hi.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -3850,35 +4872,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901784204,
+ "id": "8fc18864-53e1-47b4-8730-2e67962c7b32",
+ "identifier": "wikipedia-hi",
+ "last_modified": 1702906502482,
+ "recordType": "engine",
+ "schema": 1702901787905,
"variants": [
{
"environment": {
"locales": [
- "bn",
- "bn-BD",
- "bn-IN"
+ "hi-IN"
]
}
}
- ],
- "identifier": "wikipedia-bn",
- "recordType": "engine",
- "id": "a0a95a2c-83b7-4507-a4e9-5632ca9825dd",
- "last_modified": 1702906502503
+ ]
},
{
"base": {
- "name": "Viquipèdia (ca)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedija (hr)",
"urls": {
"search": {
- "base": "https://ca.wikipedia.org/wiki/Especial:Cerca",
+ "base": "https://hr.wikipedia.org/wiki/Posebno:Traži",
"params": [
{
"name": "sourceid",
@@ -3888,7 +4908,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://ca.wikipedia.org/w/api.php",
+ "base": "https://hr.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -3897,34 +4917,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901784840,
+ "id": "eb03a427-1f71-4df9-b609-a36064d2d0e2",
+ "identifier": "wikipedia-hr",
+ "last_modified": 1702906502658,
+ "recordType": "engine",
+ "schema": 1702901756375,
"variants": [
{
"environment": {
"locales": [
- "ca",
- "ca-valencia"
+ "hr"
]
}
}
- ],
- "identifier": "wikipedia-ca",
- "recordType": "engine",
- "id": "7ed640c7-bc86-45dc-b07a-f7d8b5a8e079",
- "last_modified": 1702906502499
+ ]
},
{
"base": {
- "name": "Wikipedia (es)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedija (hsb)",
"urls": {
"search": {
- "base": "https://es.wikipedia.org/wiki/Especial:Buscar",
+ "base": "https://hsb.wikipedia.org/wiki/Specialnje:Pytać",
"params": [
{
"name": "sourceid",
@@ -3934,7 +4953,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://es.wikipedia.org/w/api.php",
+ "base": "https://hsb.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -3943,38 +4962,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901785455,
+ "id": "5235d5f1-e04d-4ba3-b53b-35a8d09d2142",
+ "identifier": "wikipedia-hsb",
+ "last_modified": 1702906502655,
+ "recordType": "engine",
+ "schema": 1702901756979,
"variants": [
{
"environment": {
"locales": [
- "cak",
- "es-AR",
- "es-CL",
- "es-ES",
- "es-MX",
- "trs"
+ "hsb"
]
}
}
- ],
- "identifier": "wikipedia-es",
- "recordType": "engine",
- "id": "82025e38-8eda-48c2-b844-2b5e7d489c34",
- "last_modified": 1702906502496
+ ]
},
{
"base": {
- "name": "Wikipedie (cs)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipédia (hu)",
"urls": {
"search": {
- "base": "https://cs.wikipedia.org/wiki/Speciální:Hledání",
+ "base": "https://hu.wikipedia.org/wiki/Speciális:Keresés",
"params": [
{
"name": "sourceid",
@@ -3984,7 +4998,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://cs.wikipedia.org/w/api.php",
+ "base": "https://hu.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -3993,33 +5007,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901786063,
+ "id": "9a10f883-2da7-4070-8a73-543153bdd52c",
+ "identifier": "wikipedia-hu",
+ "last_modified": 1702906502651,
+ "recordType": "engine",
+ "schema": 1702901757634,
"variants": [
{
"environment": {
"locales": [
- "cs"
+ "hu"
]
}
}
- ],
- "identifier": "wikipedia-cz",
- "recordType": "engine",
- "id": "2574b200-f878-4b0c-b7e0-49804b3f4b8e",
- "last_modified": 1702906502493
+ ]
},
{
"base": {
- "name": "Wikipédia (fr)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (hy)",
"urls": {
"search": {
- "base": "https://fr.wikipedia.org/wiki/Spécial:Recherche",
+ "base": "https://hy.wikipedia.org/wiki/Սպասարկող:Որոնել",
"params": [
{
"name": "sourceid",
@@ -4029,7 +5043,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://fr.wikipedia.org/w/api.php",
+ "base": "https://hy.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -4038,35 +5052,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901786670,
+ "id": "c6286785-b61b-4288-aec1-9a7820c32694",
+ "identifier": "wikipedia-hy",
+ "last_modified": 1702906502479,
+ "recordType": "engine",
+ "schema": 1702901788513,
"variants": [
{
"environment": {
"locales": [
- "ff",
- "fr",
- "son"
+ "hy-AM"
]
}
}
- ],
- "identifier": "wikipedia-fr",
- "recordType": "engine",
- "id": "a0261c4c-7b60-42c5-b35b-00ab57c5fbc4",
- "last_modified": 1702906502488
+ ]
},
{
"base": {
- "name": "વિકિપીડિયા (gu)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (ia)",
"urls": {
"search": {
- "base": "https://gu.wikipedia.org/wiki/વિશેષ:શોધ",
+ "base": "https://ia.wikipedia.org/wiki/Special:Recerca",
"params": [
{
"name": "sourceid",
@@ -4076,7 +5088,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://gu.wikipedia.org/w/api.php",
+ "base": "https://ia.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -4085,33 +5097,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901787288,
+ "id": "6787b684-aa4f-48d2-9673-fce3b528c71c",
+ "identifier": "wikipedia-ia",
+ "last_modified": 1702906502647,
+ "recordType": "engine",
+ "schema": 1702901758249,
"variants": [
{
"environment": {
"locales": [
- "gu-IN"
+ "ia"
]
}
}
- ],
- "identifier": "wikipedia-gu",
- "recordType": "engine",
- "id": "ede0b78c-500a-4d1b-8236-cd5e7ceee815",
- "last_modified": 1702906502485
+ ]
},
{
"base": {
- "name": "विकिपीडिया (hi)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (id)",
"urls": {
"search": {
- "base": "https://hi.wikipedia.org/wiki/विशेष:खोज",
+ "base": "https://id.wikipedia.org/wiki/Istimewa:Pencarian",
"params": [
{
"name": "sourceid",
@@ -4121,7 +5133,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://hi.wikipedia.org/w/api.php",
+ "base": "https://id.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -4130,33 +5142,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901787905,
+ "id": "163da4a0-e59f-423a-bebc-3ec3bd68b941",
+ "identifier": "wikipedia-id",
+ "last_modified": 1702906502644,
+ "recordType": "engine",
+ "schema": 1702901758856,
"variants": [
{
"environment": {
"locales": [
- "hi-IN"
+ "id"
]
}
}
- ],
- "identifier": "wikipedia-hi",
- "recordType": "engine",
- "id": "8fc18864-53e1-47b4-8730-2e67962c7b32",
- "last_modified": 1702906502482
+ ]
},
{
"base": {
- "name": "Wikipedia (hy)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (is)",
"urls": {
"search": {
- "base": "https://hy.wikipedia.org/wiki/Սպասարկող:Որոնել",
+ "base": "https://is.wikipedia.org/wiki/Kerfissíða:Leit",
"params": [
{
"name": "sourceid",
@@ -4166,7 +5178,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://hy.wikipedia.org/w/api.php",
+ "base": "https://is.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -4175,29 +5187,29 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901788513,
+ "id": "26ca2f38-0472-45de-83fd-78d67aaecd22",
+ "identifier": "wikipedia-is",
+ "last_modified": 1702906502640,
+ "recordType": "engine",
+ "schema": 1702901759494,
"variants": [
{
"environment": {
"locales": [
- "hy-AM"
+ "is"
]
}
}
- ],
- "identifier": "wikipedia-hy",
- "recordType": "engine",
- "id": "c6286785-b61b-4288-aec1-9a7820c32694",
- "last_modified": 1702906502479
+ ]
},
{
"base": {
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
"name": "Wikipedia (it)",
"urls": {
"search": {
@@ -4220,12 +5232,12 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
+ "id": "de65dd23-0d4b-4bf0-bd97-0f536e184ded",
+ "identifier": "wikipedia-it",
+ "last_modified": 1702906502476,
+ "recordType": "engine",
"schema": 1702901789119,
"variants": [
{
@@ -4237,14 +5249,14 @@
]
}
}
- ],
- "identifier": "wikipedia-it",
- "recordType": "engine",
- "id": "de65dd23-0d4b-4bf0-bd97-0f536e184ded",
- "last_modified": 1702906502476
+ ]
},
{
"base": {
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
"name": "Wikipedia (ja)",
"urls": {
"search": {
@@ -4267,12 +5279,12 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
+ "id": "a6bbf9df-acd4-47ea-9d26-6382b587c9c3",
+ "identifier": "wikipedia-ja",
+ "last_modified": 1702906502473,
+ "recordType": "engine",
"schema": 1702901789723,
"variants": [
{
@@ -4283,18 +5295,18 @@
]
}
}
- ],
- "identifier": "wikipedia-ja",
- "recordType": "engine",
- "id": "a6bbf9df-acd4-47ea-9d26-6382b587c9c3",
- "last_modified": 1702906502473
+ ]
},
{
"base": {
- "name": "위키백과 (ko)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "ვიკიპედია (ka)",
"urls": {
"search": {
- "base": "https://ko.wikipedia.org/wiki/특수기능:찾기",
+ "base": "https://ka.wikipedia.org/wiki/სპეციალური:ძიება",
"params": [
{
"name": "sourceid",
@@ -4304,7 +5316,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://ko.wikipedia.org/w/api.php",
+ "base": "https://ka.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -4313,33 +5325,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901790335,
+ "id": "ca784382-7beb-4a93-b211-745d4d71ec6c",
+ "identifier": "wikipedia-ka",
+ "last_modified": 1702906502636,
+ "recordType": "engine",
+ "schema": 1702901760115,
"variants": [
{
"environment": {
"locales": [
- "ko"
+ "ka"
]
}
}
- ],
- "identifier": "wikipedia-kr",
- "recordType": "engine",
- "id": "831d7fed-79d2-4aac-9481-826300a03d65",
- "last_modified": 1702906502470
+ ]
},
{
"base": {
- "name": "Wikipedia (no)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (kab)",
"urls": {
"search": {
- "base": "https://no.wikipedia.org/wiki/Spesial:Søk",
+ "base": "https://kab.wikipedia.org/wiki/Uslig:Search",
"params": [
{
"name": "sourceid",
@@ -4349,7 +5361,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://no.wikipedia.org/w/api.php",
+ "base": "https://kab.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -4358,33 +5370,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901790944,
+ "id": "e6f20ba5-3013-4b18-ad7a-351a64e62ec4",
+ "identifier": "wikipedia-kab",
+ "last_modified": 1702906502632,
+ "recordType": "engine",
+ "schema": 1702901760752,
"variants": [
{
"environment": {
"locales": [
- "nb-NO"
+ "kab"
]
}
}
- ],
- "identifier": "wikipedia-NO",
- "recordType": "engine",
- "id": "607d401f-70cd-4810-b9b5-497d5a9489f6",
- "last_modified": 1702906502467
+ ]
},
{
"base": {
- "name": "विकिपीडिया (ne)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Уикипедия (kk)",
"urls": {
"search": {
- "base": "https://ne.wikipedia.org/wiki/विशेष:Search",
+ "base": "https://kk.wikipedia.org/wiki/Арнайы:Іздеу",
"params": [
{
"name": "sourceid",
@@ -4394,7 +5406,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://ne.wikipedia.org/w/api.php",
+ "base": "https://kk.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -4403,33 +5415,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901791565,
+ "id": "15f00a29-0d68-4ff1-89d1-5e58b95618b7",
+ "identifier": "wikipedia-kk",
+ "last_modified": 1702906502628,
+ "recordType": "engine",
+ "schema": 1702901761359,
"variants": [
{
"environment": {
"locales": [
- "ne-NP"
+ "kk"
]
}
}
- ],
- "identifier": "wikipedia-ne",
- "recordType": "engine",
- "id": "dd1c5a28-733d-46b4-ae5e-fff82f94aec9",
- "last_modified": 1702906502465
+ ]
},
{
"base": {
- "name": "Wikipedia (nn)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "វីគីភីឌា (km)",
"urls": {
"search": {
- "base": "https://nn.wikipedia.org/wiki/Spesial:Søk",
+ "base": "https://km.wikipedia.org/wiki/ពិសេស:ស្វែងរក",
"params": [
{
"name": "sourceid",
@@ -4439,7 +5451,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://nn.wikipedia.org/w/api.php",
+ "base": "https://km.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -4448,33 +5460,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901792200,
+ "id": "c8a7bec0-7f33-44e1-9521-363530993acc",
+ "identifier": "wikipedia-km",
+ "last_modified": 1702906502625,
+ "recordType": "engine",
+ "schema": 1702901761969,
"variants": [
{
"environment": {
"locales": [
- "nn-NO"
+ "km"
]
}
}
- ],
- "identifier": "wikipedia-NN",
- "recordType": "engine",
- "id": "c3462c25-acc1-4003-a57b-3931bfacdce5",
- "last_modified": 1702906502462
+ ]
},
{
"base": {
- "name": "Wikipedia (pa)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (kn)",
"urls": {
"search": {
- "base": "https://pa.wikipedia.org/wiki/ਖ਼ਾਸ:ਖੋਜੋ",
+ "base": "https://kn.wikipedia.org/wiki/ವಿಶೇಷ:Search",
"params": [
{
"name": "sourceid",
@@ -4484,7 +5496,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://pa.wikipedia.org/w/api.php",
+ "base": "https://kn.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -4493,33 +5505,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901792817,
+ "id": "ce510c56-9d5e-416c-aef0-277bfbaac464",
+ "identifier": "wikipedia-kn",
+ "last_modified": 1702906502622,
+ "recordType": "engine",
+ "schema": 1702901762594,
"variants": [
{
"environment": {
"locales": [
- "pa-IN"
+ "kn"
]
}
}
- ],
- "identifier": "wikipedia-pa",
- "recordType": "engine",
- "id": "fa428a75-44d5-4f21-84bd-64935d483540",
- "last_modified": 1702906502459
+ ]
},
{
"base": {
- "name": "Wikipedia (pt)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "위키백과 (ko)",
"urls": {
"search": {
- "base": "https://pt.wikipedia.org/wiki/Especial:Pesquisar",
+ "base": "https://ko.wikipedia.org/wiki/특수기능:찾기",
"params": [
{
"name": "sourceid",
@@ -4529,7 +5541,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://pt.wikipedia.org/w/api.php",
+ "base": "https://ko.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -4538,34 +5550,33 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901793438,
+ "id": "831d7fed-79d2-4aac-9481-826300a03d65",
+ "identifier": "wikipedia-kr",
+ "last_modified": 1702906502470,
+ "recordType": "engine",
+ "schema": 1702901790335,
"variants": [
{
"environment": {
"locales": [
- "pt-BR",
- "pt-PT"
+ "ko"
]
}
}
- ],
- "identifier": "wikipedia-pt",
- "recordType": "engine",
- "id": "f2e04c1b-b19f-40d9-841d-9b48b7ba9da2",
- "last_modified": 1702906502456
+ ]
},
{
"base": {
- "name": "Wikipedia (pl)",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (lij)",
"urls": {
"search": {
- "base": "https://pl.wikipedia.org/wiki/Specjalna:Szukaj",
+ "base": "https://lij.wikipedia.org/wiki/Speçiale:Riçerca",
"params": [
{
"name": "sourceid",
@@ -4575,7 +5586,7 @@
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://pl.wikipedia.org/w/api.php",
+ "base": "https://lij.wikipedia.org/w/api.php",
"params": [
{
"name": "action",
@@ -4584,2515 +5595,1647 @@
],
"searchTermParamName": "search"
}
- },
- "aliases": [
- "wikipedia"
- ],
- "classification": "unknown"
+ }
},
- "schema": 1702901794065,
+ "id": "5ec04310-966d-40da-af5b-f24383d40c8a",
+ "identifier": "wikipedia-lij",
+ "last_modified": 1702906502619,
+ "recordType": "engine",
+ "schema": 1702901763202,
"variants": [
{
"environment": {
"locales": [
- "pl",
- "szl"
+ "lij"
]
}
}
- ],
- "identifier": "wikipedia-pl",
- "recordType": "engine",
- "id": "980cba80-0c46-4c05-8df0-aaea23d57732",
- "last_modified": 1702906502453
+ ]
},
{
"base": {
- "name": "eBay",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "ວິກິພີເດຍ (lo)",
"urls": {
"search": {
- "base": "https://www.ebay.com/sch/",
+ "base": "https://lo.wikipedia.org/wiki/ພິເສດ:ຊອກຫາ",
"params": [
{
- "name": "toolid",
- "value": "20004"
- },
- {
- "name": "campid",
- "value": "{partnerCode}"
- },
- {
- "name": "mkevt",
- "value": "1"
- },
- {
- "name": "mkcid",
- "value": "1"
- },
- {
- "name": "mkrid",
- "value": "711-53200-19255-0"
+ "name": "sourceid",
+ "value": "Mozilla-search"
}
],
- "searchTermParamName": "kw"
+ "searchTermParamName": "search"
},
"suggestions": {
- "base": "https://autosug.ebay.com/autosug",
+ "base": "https://lo.wikipedia.org/w/api.php",
"params": [
{
- "name": "sId",
- "value": "0"
- },
- {
- "name": "fmt",
- "value": "osr"
+ "name": "action",
+ "value": "opensearch"
}
],
- "searchTermParamName": "kwd"
+ "searchTermParamName": "search"
}
- },
- "aliases": [
- "ebay"
- ],
- "partnerCode": "5338192028",
- "classification": "unknown"
+ }
},
- "schema": 1702901794691,
+ "id": "515c4522-284d-468f-926a-eb7eb8a55e22",
+ "identifier": "wikipedia-lo",
+ "last_modified": 1702906502615,
+ "recordType": "engine",
+ "schema": 1702901763817,
"variants": [
{
"environment": {
"locales": [
- "en-US"
- ],
- "regions": [
- "us"
+ "lo"
]
}
}
- ],
- "identifier": "ebay",
- "recordType": "engine",
- "id": "d8b7ed81-00f3-478a-a835-dc0677d7190a",
- "last_modified": 1702906502450
+ ]
},
{
"base": {
- "name": "eBay",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (lt)",
"urls": {
"search": {
- "base": "https://www.ebay.es/sch/",
+ "base": "https://lt.wikipedia.org/wiki/Specialus:Paieška",
"params": [
{
- "name": "toolid",
- "value": "20004"
- },
- {
- "name": "campid",
- "value": "{partnerCode}"
- },
- {
- "name": "mkevt",
- "value": "1"
- },
- {
- "name": "mkcid",
- "value": "1"
- },
- {
- "name": "mkrid",
- "value": "1185-53479-19255-0"
+ "name": "sourceid",
+ "value": "Mozilla-search"
}
],
- "searchTermParamName": "kw"
+ "searchTermParamName": "search"
},
"suggestions": {
- "base": "https://autosug.ebay.com/autosug",
+ "base": "https://lt.wikipedia.org/w/api.php",
"params": [
{
- "name": "sId",
- "value": "186"
- },
- {
- "name": "fmt",
- "value": "osr"
+ "name": "action",
+ "value": "opensearch"
}
],
- "searchTermParamName": "kwd"
+ "searchTermParamName": "search"
}
- },
- "aliases": [
- "ebay"
- ],
- "partnerCode": "5338192028",
- "classification": "unknown"
+ }
},
- "schema": 1702901795317,
+ "id": "774990fb-aabc-4008-86d3-adf12f89ccd4",
+ "identifier": "wikipedia-lt",
+ "last_modified": 1702906502612,
+ "recordType": "engine",
+ "schema": 1702901764432,
"variants": [
{
"environment": {
"locales": [
- "an",
- "ast",
- "ca",
- "ca-valencia",
- "es-ES",
- "eu",
- "gl"
+ "lt"
]
}
}
- ],
- "identifier": "ebay-es",
- "recordType": "engine",
- "id": "0592aedc-f4e5-4873-a8d4-da9482071613",
- "last_modified": 1702906502448
+ ]
},
{
"base": {
- "name": "eBay",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Vikipedeja (ltg)",
"urls": {
"search": {
- "base": "https://www.ebay.fr/sch/",
+ "base": "https://ltg.wikipedia.org/wiki/Seviškuo:Search",
"params": [
{
- "name": "toolid",
- "value": "20004"
- },
- {
- "name": "campid",
- "value": "{partnerCode}"
- },
- {
- "name": "mkevt",
- "value": "1"
- },
- {
- "name": "mkcid",
- "value": "1"
- },
- {
- "name": "mkrid",
- "value": "709-53476-19255-0"
+ "name": "sourceid",
+ "value": "Mozilla-search"
}
],
- "searchTermParamName": "kw"
+ "searchTermParamName": "search"
},
"suggestions": {
- "base": "https://autosug.ebay.com/autosug",
+ "base": "https://ltg.wikipedia.org/w/api.php",
"params": [
{
- "name": "sId",
- "value": "71"
- },
- {
- "name": "fmt",
- "value": "osr"
+ "name": "action",
+ "value": "opensearch"
}
],
- "searchTermParamName": "kwd"
+ "searchTermParamName": "search"
}
- },
- "aliases": [
- "ebay"
- ],
- "partnerCode": "5338192028",
- "classification": "unknown"
+ }
},
- "schema": 1702901795929,
+ "id": "52871fd0-a24a-443b-a2d4-17eb09951691",
+ "identifier": "wikipedia-ltg",
+ "last_modified": 1702906502609,
+ "recordType": "engine",
+ "schema": 1702901765044,
"variants": [
{
"environment": {
"locales": [
- "br",
- "fr",
- "wo"
- ],
- "excludedRegions": [
- "be",
- "ca",
- "ch"
+ "ltg"
]
}
}
- ],
- "identifier": "ebay-fr",
- "recordType": "engine",
- "id": "d327156c-dfc4-47f6-a620-3846a21144d9",
- "last_modified": 1702906502445
+ ]
},
{
"base": {
- "name": "eBay",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Vikipēdija",
"urls": {
"search": {
- "base": "https://www.befr.ebay.be/sch/",
+ "base": "https://lv.wikipedia.org/wiki/Special:Search",
"params": [
{
- "name": "toolid",
- "value": "20004"
- },
- {
- "name": "campid",
- "value": "{partnerCode}"
- },
- {
- "name": "mkevt",
- "value": "1"
- },
- {
- "name": "mkcid",
- "value": "1"
- },
- {
- "name": "mkrid",
- "value": "1553-53471-19255-0"
+ "name": "sourceid",
+ "value": "Mozilla-search"
}
],
- "searchTermParamName": "kw"
+ "searchTermParamName": "search"
},
"suggestions": {
- "base": "https://autosug.ebay.com/autosug",
+ "base": "https://lv.wikipedia.org/w/api.php",
"params": [
{
- "name": "sId",
- "value": "23"
- },
- {
- "name": "fmt",
- "value": "osr"
+ "name": "action",
+ "value": "opensearch"
}
],
- "searchTermParamName": "kwd"
+ "searchTermParamName": "search"
}
- },
- "aliases": [
- "ebay"
- ],
- "partnerCode": "5338192028",
- "classification": "unknown"
+ }
},
- "schema": 1702901796541,
+ "id": "395b6c93-f7ff-47b8-b895-6f7bb99f9c56",
+ "identifier": "wikipedia-lv",
+ "last_modified": 1702906502606,
+ "recordType": "engine",
+ "schema": 1702901765673,
"variants": [
{
"environment": {
"locales": [
- "br",
- "en-US",
- "fr",
- "wo",
- "fy-NL",
- "nl"
- ],
- "regions": [
- "be"
+ "lv"
]
}
}
- ],
- "identifier": "ebay-be",
- "recordType": "engine",
- "id": "5f40614e-4fc6-4dee-a897-07b258e00820",
- "last_modified": 1702906502442
+ ]
},
{
"base": {
- "name": "eBay",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Википедија (mk)",
"urls": {
"search": {
- "base": "https://www.ebay.ca/sch/",
+ "base": "https://mk.wikipedia.org/wiki/Специјална:Барај",
"params": [
{
- "name": "toolid",
- "value": "20004"
- },
- {
- "name": "campid",
- "value": "{partnerCode}"
- },
- {
- "name": "mkevt",
- "value": "1"
- },
- {
- "name": "mkcid",
- "value": "1"
- },
- {
- "name": "mkrid",
- "value": "706-53473-19255-0"
+ "name": "sourceid",
+ "value": "Mozilla-search"
}
],
- "searchTermParamName": "kw"
+ "searchTermParamName": "search"
},
"suggestions": {
- "base": "https://autosug.ebay.com/autosug",
+ "base": "https://mk.wikipedia.org/w/api.php",
"params": [
{
- "name": "sId",
- "value": "2"
- },
- {
- "name": "fmt",
- "value": "osr"
+ "name": "action",
+ "value": "opensearch"
}
],
- "searchTermParamName": "kwd"
+ "searchTermParamName": "search"
}
- },
- "aliases": [
- "ebay"
- ],
- "partnerCode": "5338192028",
- "classification": "unknown"
+ }
},
- "schema": 1702901797167,
+ "id": "a3aa8882-cbb0-4002-b0fc-b6ff5cdb9d92",
+ "identifier": "wikipedia-mk",
+ "last_modified": 1702906502602,
+ "recordType": "engine",
+ "schema": 1702901766290,
"variants": [
{
"environment": {
"locales": [
- "br",
- "en-US",
- "fr",
- "wo"
- ],
- "regions": [
- "ca"
- ]
- }
- },
- {
- "environment": {
- "locales": [
- "en-CA"
+ "mk"
]
}
}
- ],
- "identifier": "ebay-ca",
- "recordType": "engine",
- "id": "336d7fa9-7579-4981-bfb0-024c6c5f977d",
- "last_modified": 1702906502438
+ ]
},
{
"base": {
- "name": "eBay",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "विकिपीडिया (mr)",
"urls": {
"search": {
- "base": "https://www.ebay.ch/sch/",
+ "base": "https://mr.wikipedia.org/wiki/विशेष:शोधा",
"params": [
{
- "name": "toolid",
- "value": "20004"
- },
- {
- "name": "campid",
- "value": "{partnerCode}"
- },
- {
- "name": "mkevt",
- "value": "1"
- },
- {
- "name": "mkcid",
- "value": "1"
- },
- {
- "name": "mkrid",
- "value": "5222-53480-19255-0"
+ "name": "sourceid",
+ "value": "Mozilla-search"
}
],
- "searchTermParamName": "kw"
+ "searchTermParamName": "search"
},
"suggestions": {
- "base": "https://autosug.ebay.com/autosug",
+ "base": "https://mr.wikipedia.org/w/api.php",
"params": [
{
- "name": "sId",
- "value": "193"
- },
- {
- "name": "fmt",
- "value": "osr"
+ "name": "action",
+ "value": "opensearch"
}
],
- "searchTermParamName": "kwd"
+ "searchTermParamName": "search"
}
- },
- "aliases": [
- "ebay"
- ],
- "partnerCode": "5338192028",
- "classification": "unknown"
+ }
},
- "schema": 1702901797777,
+ "id": "09f48c9b-b420-4312-8c60-aeb4358e0b97",
+ "identifier": "wikipedia-mr",
+ "last_modified": 1702906502599,
+ "recordType": "engine",
+ "schema": 1702901766916,
"variants": [
{
"environment": {
"locales": [
- "br",
- "de",
- "dsb",
- "en-US",
- "fr",
- "hsb",
- "wo"
- ],
- "regions": [
- "ch"
- ]
- }
- },
- {
- "environment": {
- "locales": [
- "rm"
+ "mr"
]
}
}
- ],
- "identifier": "ebay-ch",
- "recordType": "engine",
- "id": "8d8484a2-b856-4edd-93d7-c53a7aaca6e1",
- "last_modified": 1702906502435
+ ]
},
{
"base": {
- "name": "eBay",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (ms)",
"urls": {
"search": {
- "base": "https://www.ebay.co.uk/sch/",
+ "base": "https://ms.wikipedia.org/wiki/Khas:Gelintar",
"params": [
{
- "name": "toolid",
- "value": "20004"
- },
- {
- "name": "campid",
- "value": "{partnerCode}"
- },
- {
- "name": "mkevt",
- "value": "1"
- },
- {
- "name": "mkcid",
- "value": "1"
- },
- {
- "name": "mkrid",
- "value": "710-53481-19255-0"
+ "name": "sourceid",
+ "value": "Mozilla-search"
}
],
- "searchTermParamName": "kw"
+ "searchTermParamName": "search"
},
"suggestions": {
- "base": "https://autosug.ebay.com/autosug",
+ "base": "https://ms.wikipedia.org/w/api.php",
"params": [
{
- "name": "sId",
- "value": "3"
- },
- {
- "name": "fmt",
- "value": "osr"
+ "name": "action",
+ "value": "opensearch"
}
],
- "searchTermParamName": "kwd"
+ "searchTermParamName": "search"
}
- },
- "aliases": [
- "ebay"
- ],
- "partnerCode": "5338192028",
- "classification": "unknown"
+ }
},
- "schema": 1702901798395,
+ "id": "7039c888-4bd6-4b82-a164-ca3bfc93b24c",
+ "identifier": "wikipedia-ms",
+ "last_modified": 1702906502595,
+ "recordType": "engine",
+ "schema": 1702901767543,
"variants": [
{
"environment": {
"locales": [
- "cy",
- "en-GB",
- "gd"
- ],
- "excludedRegions": [
- "au",
- "ie"
- ]
- }
- },
- {
- "environment": {
- "locales": [
- "sco"
- ],
- "regions": [
- "gb"
- ]
- }
- },
- {
- "environment": {
- "locales": [
- "en-US"
- ],
- "regions": [
- "gb"
+ "ms"
]
}
}
- ],
- "identifier": "ebay-uk",
- "recordType": "engine",
- "id": "37f83917-8d6e-46d6-9d15-8e7779339d18",
- "last_modified": 1702906502432
+ ]
},
{
"base": {
- "name": "eBay",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (my)",
"urls": {
"search": {
- "base": "https://www.ebay.com.au/sch/",
+ "base": "https://my.wikipedia.org/wiki/Special:Search",
"params": [
{
- "name": "toolid",
- "value": "20004"
- },
- {
- "name": "campid",
- "value": "{partnerCode}"
- },
- {
- "name": "mkevt",
- "value": "1"
- },
- {
- "name": "mkcid",
- "value": "1"
- },
- {
- "name": "mkrid",
- "value": "705-53470-19255-0"
+ "name": "sourceid",
+ "value": "Mozilla-search"
}
],
- "searchTermParamName": "kw"
+ "searchTermParamName": "search"
},
"suggestions": {
- "base": "https://autosug.ebay.com/autosug",
+ "base": "https://my.wikipedia.org/w/api.php",
"params": [
{
- "name": "sId",
- "value": "15"
- },
- {
- "name": "fmt",
- "value": "osr"
+ "name": "action",
+ "value": "opensearch"
}
],
- "searchTermParamName": "kwd"
+ "searchTermParamName": "search"
}
- },
- "aliases": [
- "ebay"
- ],
- "partnerCode": "5338192028",
- "classification": "unknown"
+ }
},
- "schema": 1702901799015,
+ "id": "0616dd06-2bfd-46f0-9870-832a1db8a622",
+ "identifier": "wikipedia-my",
+ "last_modified": 1702906502592,
+ "recordType": "engine",
+ "schema": 1702901768156,
"variants": [
{
"environment": {
"locales": [
- "cy",
- "en-GB",
- "en-US",
- "gd"
- ],
- "regions": [
- "au"
+ "my"
]
}
}
- ],
- "identifier": "ebay-au",
- "recordType": "engine",
- "id": "e5a64fe0-2cb9-4b22-83d3-4e529c3702a9",
- "last_modified": 1702906502429
+ ]
},
{
"base": {
- "name": "eBay",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "विकिपीडिया (ne)",
"urls": {
"search": {
- "base": "https://www.ebay.ie/sch/",
+ "base": "https://ne.wikipedia.org/wiki/विशेष:Search",
"params": [
{
- "name": "toolid",
- "value": "20004"
- },
- {
- "name": "campid",
- "value": "{partnerCode}"
- },
- {
- "name": "mkevt",
- "value": "1"
- },
- {
- "name": "mkcid",
- "value": "1"
- },
- {
- "name": "mkrid",
- "value": "5282-53468-19255-0"
+ "name": "sourceid",
+ "value": "Mozilla-search"
}
],
- "searchTermParamName": "kw"
+ "searchTermParamName": "search"
},
"suggestions": {
- "base": "https://autosug.ebay.com/autosug",
+ "base": "https://ne.wikipedia.org/w/api.php",
"params": [
{
- "name": "sId",
- "value": "205"
- },
- {
- "name": "fmt",
- "value": "osr"
+ "name": "action",
+ "value": "opensearch"
}
],
- "searchTermParamName": "kwd"
+ "searchTermParamName": "search"
}
- },
- "aliases": [
- "ebay"
- ],
- "partnerCode": "5338192028",
- "classification": "unknown"
+ }
},
- "schema": 1702901799624,
+ "id": "dd1c5a28-733d-46b4-ae5e-fff82f94aec9",
+ "identifier": "wikipedia-ne",
+ "last_modified": 1702906502465,
+ "recordType": "engine",
+ "schema": 1702901791565,
"variants": [
{
"environment": {
"locales": [
- "cy",
- "en-GB",
- "en-US",
- "gd"
- ],
- "regions": [
- "ie"
- ]
- }
- },
- {
- "environment": {
- "locales": [
- "ga-IE"
+ "ne-NP"
]
}
}
- ],
- "identifier": "ebay-ie",
- "recordType": "engine",
- "id": "0a9fed24-cd33-4293-bac8-eb26a285c9f1",
- "last_modified": 1702906502427
+ ]
},
{
"base": {
- "name": "eBay",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (nl)",
"urls": {
"search": {
- "base": "https://www.ebay.de/sch/",
+ "base": "https://nl.wikipedia.org/wiki/Speciaal:Zoeken",
"params": [
{
- "name": "toolid",
- "value": "20004"
- },
- {
- "name": "campid",
- "value": "{partnerCode}"
- },
- {
- "name": "mkevt",
- "value": "1"
- },
- {
- "name": "mkcid",
- "value": "1"
- },
- {
- "name": "mkrid",
- "value": "707-53477-19255-0"
+ "name": "sourceid",
+ "value": "Mozilla-search"
}
],
- "searchTermParamName": "kw"
+ "searchTermParamName": "search"
},
"suggestions": {
- "base": "https://autosug.ebay.com/autosug",
+ "base": "https://nl.wikipedia.org/w/api.php",
"params": [
{
- "name": "sId",
- "value": "77"
- },
- {
- "name": "fmt",
- "value": "osr"
+ "name": "action",
+ "value": "opensearch"
}
],
- "searchTermParamName": "kwd"
+ "searchTermParamName": "search"
}
- },
- "aliases": [
- "ebay"
- ],
- "partnerCode": "5338192028",
- "classification": "unknown"
+ }
},
- "schema": 1702901800234,
+ "id": "9e423eca-df00-4385-ab15-4e61bc220b05",
+ "identifier": "wikipedia-nl",
+ "last_modified": 1702906502588,
+ "recordType": "engine",
+ "schema": 1702901768793,
"variants": [
{
"environment": {
"locales": [
- "de",
- "dsb",
- "hsb"
- ],
- "excludedRegions": [
- "at",
- "ch"
+ "nl"
]
}
}
- ],
- "identifier": "ebay-de",
- "recordType": "engine",
- "id": "e991a5f7-616e-43b0-b349-7995b837a520",
- "last_modified": 1702906502424
+ ]
},
{
"base": {
- "name": "eBay",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipèdia (oc)",
"urls": {
"search": {
- "base": "https://www.ebay.at/sch/",
+ "base": "https://oc.wikipedia.org/wiki/Especial:Recèrca",
"params": [
{
- "name": "toolid",
- "value": "20004"
- },
- {
- "name": "campid",
- "value": "{partnerCode}"
- },
- {
- "name": "mkevt",
- "value": "1"
- },
- {
- "name": "mkcid",
- "value": "1"
- },
- {
- "name": "mkrid",
- "value": "5221-53469-19255-0"
+ "name": "sourceid",
+ "value": "Mozilla-search"
}
],
- "searchTermParamName": "kw"
+ "searchTermParamName": "search"
},
"suggestions": {
- "base": "https://autosug.ebay.com/autosug",
+ "base": "https://oc.wikipedia.org/w/api.php",
"params": [
{
- "name": "sId",
- "value": "16"
- },
- {
- "name": "fmt",
- "value": "osr"
+ "name": "action",
+ "value": "opensearch"
}
],
- "searchTermParamName": "kwd"
+ "searchTermParamName": "search"
}
- },
- "aliases": [
- "ebay"
- ],
- "partnerCode": "5338192028",
- "classification": "unknown"
+ }
},
- "schema": 1702901800849,
+ "id": "e3e2c4a1-4914-4a27-96f8-63fb6a90f490",
+ "identifier": "wikipedia-oc",
+ "last_modified": 1702906502585,
+ "recordType": "engine",
+ "schema": 1702901769405,
"variants": [
{
"environment": {
"locales": [
- "de",
- "dsb",
- "hsb"
- ],
- "regions": [
- "at"
+ "oc"
]
}
}
- ],
- "identifier": "ebay-at",
- "recordType": "engine",
- "id": "8dee7454-6c6c-4b22-a411-4e474c7afbb3",
- "last_modified": 1702906502421
+ ]
},
{
"base": {
- "name": "eBay",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (pa)",
"urls": {
"search": {
- "base": "https://www.ebay.nl/sch/",
+ "base": "https://pa.wikipedia.org/wiki/ਖ਼ਾਸ:ਖੋਜੋ",
"params": [
{
- "name": "toolid",
- "value": "20004"
- },
- {
- "name": "campid",
- "value": "{partnerCode}"
- },
- {
- "name": "mkevt",
- "value": "1"
- },
- {
- "name": "mkcid",
- "value": "1"
- },
- {
- "name": "mkrid",
- "value": "1346-53482-19255-0"
+ "name": "sourceid",
+ "value": "Mozilla-search"
}
],
- "searchTermParamName": "kw"
+ "searchTermParamName": "search"
},
"suggestions": {
- "base": "https://autosug.ebay.com/autosug",
+ "base": "https://pa.wikipedia.org/w/api.php",
"params": [
{
- "name": "sId",
- "value": "146"
- },
- {
- "name": "fmt",
- "value": "osr"
+ "name": "action",
+ "value": "opensearch"
}
],
- "searchTermParamName": "kwd"
+ "searchTermParamName": "search"
}
- },
- "aliases": [
- "ebay"
- ],
- "partnerCode": "5338192028",
- "classification": "unknown"
+ }
},
- "schema": 1702901801464,
+ "id": "fa428a75-44d5-4f21-84bd-64935d483540",
+ "identifier": "wikipedia-pa",
+ "last_modified": 1702906502459,
+ "recordType": "engine",
+ "schema": 1702901792817,
"variants": [
{
"environment": {
"locales": [
- "fy-NL",
- "nl"
- ],
- "excludedRegions": [
- "be"
- ]
- }
- },
- {
- "environment": {
- "locales": [
- "en-US"
- ],
- "regions": [
- "nl"
+ "pa-IN"
]
}
}
- ],
- "identifier": "ebay-nl",
- "recordType": "engine",
- "id": "670475c3-d56f-4f87-9834-ddb12d0e8cbd",
- "last_modified": 1702906502418
+ ]
},
{
"base": {
- "name": "eBay",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (pl)",
"urls": {
"search": {
- "base": "https://www.ebay.it/sch/",
+ "base": "https://pl.wikipedia.org/wiki/Specjalna:Szukaj",
"params": [
{
- "name": "toolid",
- "value": "20004"
- },
- {
- "name": "campid",
- "value": "{partnerCode}"
- },
- {
- "name": "mkevt",
- "value": "1"
- },
- {
- "name": "mkcid",
- "value": "1"
- },
- {
- "name": "mkrid",
- "value": "724-53478-19255-0"
+ "name": "sourceid",
+ "value": "Mozilla-search"
}
],
- "searchTermParamName": "kw"
+ "searchTermParamName": "search"
},
"suggestions": {
- "base": "https://autosug.ebay.com/autosug",
+ "base": "https://pl.wikipedia.org/w/api.php",
"params": [
{
- "name": "sId",
- "value": "101"
- },
- {
- "name": "fmt",
- "value": "osr"
+ "name": "action",
+ "value": "opensearch"
}
],
- "searchTermParamName": "kwd"
+ "searchTermParamName": "search"
}
- },
- "aliases": [
- "ebay"
- ],
- "partnerCode": "5338192028",
- "classification": "unknown"
+ }
},
- "schema": 1702901802076,
+ "id": "980cba80-0c46-4c05-8df0-aaea23d57732",
+ "identifier": "wikipedia-pl",
+ "last_modified": 1702906502453,
+ "recordType": "engine",
+ "schema": 1702901794065,
"variants": [
{
"environment": {
"locales": [
- "fur",
- "it",
- "lij",
- "sc"
+ "pl",
+ "szl"
]
}
}
- ],
- "identifier": "ebay-it",
- "recordType": "engine",
- "id": "f36dd44c-ba5f-44e5-8b19-672eb1ed62fd",
- "last_modified": 1702906502415
+ ]
},
{
"base": {
- "name": "Amazon.com",
- "urls": {
- "search": {
- "base": "https://www.amazon.com/s",
- "searchTermParamName": "k"
- }
- },
"aliases": [
- "amazon"
+ "wikipedia"
],
- "classification": "unknown"
- },
- "notes": "Amazon.com (us only)",
- "schema": 1702901802672,
- "variants": [
- {
- "environment": {
- "regions": [
- "us"
- ]
- }
- }
- ],
- "identifier": "amazondotcom-us",
- "recordType": "engine",
- "id": "788a2ded-6872-4742-8115-c14dde7a18f9",
- "last_modified": 1702906502412
- },
- {
- "base": {
- "name": "Amazon.co.jp",
+ "classification": "unknown",
+ "name": "Wikipedia (pt)",
"urls": {
"search": {
- "base": "https://www.amazon.co.jp/exec/obidos/external-search/",
+ "base": "https://pt.wikipedia.org/wiki/Especial:Pesquisar",
"params": [
{
- "name": "mode",
- "value": "blended"
- },
- {
- "name": "tag",
- "value": "mozillajapan-fx-22"
- },
- {
"name": "sourceid",
"value": "Mozilla-search"
}
],
- "searchTermParamName": "field-keywords"
- }
- },
- "aliases": [
- "amazon"
- ],
- "classification": "unknown"
- },
- "schema": 1702901805111,
- "variants": [
- {
- "environment": {
- "regions": [
- "jp"
- ]
- }
- }
- ],
- "identifier": "amazon-jp",
- "recordType": "engine",
- "id": "9d089e46-dc94-4d4f-8f17-cc07b59aa9e4",
- "last_modified": 1702906502401
- },
- {
- "base": {
- "name": "Wolne Lektury",
- "urls": {
- "search": {
- "base": "https://wolnelektury.pl/szukaj/",
- "searchTermParamName": "q"
+ "searchTermParamName": "search"
},
"suggestions": {
- "base": "https://wolnelektury.pl/katalog/jtags/",
+ "base": "https://pt.wikipedia.org/w/api.php",
"params": [
{
- "name": "mozhint",
- "value": "1"
+ "name": "action",
+ "value": "opensearch"
}
],
- "searchTermParamName": "q"
+ "searchTermParamName": "search"
}
- },
- "classification": "unknown"
+ }
},
- "schema": 1702901811217,
+ "id": "f2e04c1b-b19f-40d9-841d-9b48b7ba9da2",
+ "identifier": "wikipedia-pt",
+ "last_modified": 1702906502456,
+ "recordType": "engine",
+ "schema": 1702901793438,
"variants": [
{
"environment": {
"locales": [
- "pl",
- "szl"
+ "pt-BR",
+ "pt-PT"
]
}
}
- ],
- "identifier": "wolnelektury-pl",
- "recordType": "engine",
- "id": "42348cb0-69a9-4451-8bd6-71bad5bc4e3f",
- "last_modified": 1702906502368
+ ]
},
{
"base": {
- "name": "Allegro",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (rm)",
"urls": {
"search": {
- "base": "https://allegro.pl/listing",
+ "base": "https://rm.wikipedia.org/wiki/Spezial:Search",
"params": [
{
"name": "sourceid",
"value": "Mozilla-search"
}
],
- "searchTermParamName": "string"
+ "searchTermParamName": "search"
+ },
+ "suggestions": {
+ "base": "https://rm.wikipedia.org/w/api.php",
+ "params": [
+ {
+ "name": "action",
+ "value": "opensearch"
+ }
+ ],
+ "searchTermParamName": "search"
}
- },
- "classification": "unknown"
+ }
},
- "schema": 1702901811834,
+ "id": "4042df85-6b55-4a40-9c3f-ef74b05ef5be",
+ "identifier": "wikipedia-rm",
+ "last_modified": 1702906502581,
+ "recordType": "engine",
+ "schema": 1702901770011,
"variants": [
{
"environment": {
"locales": [
- "pl",
- "szl"
+ "rm"
]
}
}
- ],
- "identifier": "allegro-pl",
- "recordType": "engine",
- "id": "3cc3f699-284a-4320-b131-395d9b218ade",
- "last_modified": 1702906502364
+ ]
},
{
"base": {
- "name": "GMX Suche",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (ro)",
"urls": {
"search": {
- "base": "https://go.gmx.net/br/moz_search_web/",
+ "base": "https://ro.wikipedia.org/wiki/Special:Căutare",
"params": [
{
- "name": "enc",
- "value": "UTF-8"
+ "name": "sourceid",
+ "value": "Mozilla-search"
}
],
- "searchTermParamName": "q"
+ "searchTermParamName": "search"
},
"suggestions": {
- "base": "https://suggestplugin.ui-portal.de/s",
+ "base": "https://ro.wikipedia.org/w/api.php",
"params": [
{
- "name": "brand",
- "value": "gmx"
- },
- {
- "name": "origin",
- "value": "br_splugin_ff_sg"
+ "name": "action",
+ "value": "opensearch"
}
],
- "searchTermParamName": "q"
+ "searchTermParamName": "search"
}
- },
- "classification": "unknown"
+ }
},
- "schema": 1702901812448,
+ "id": "c2f3213e-f43f-4776-b1cb-b70d8457b6c7",
+ "identifier": "wikipedia-ro",
+ "last_modified": 1702906502577,
+ "recordType": "engine",
+ "schema": 1702901770632,
"variants": [
{
"environment": {
- "distributions": [
- "gmx"
+ "locales": [
+ "ro"
]
}
}
- ],
- "identifier": "gmx-de",
- "recordType": "engine",
- "id": "5240e0d8-8c2c-436b-b478-3fa0b506410f",
- "last_modified": 1702906502361
+ ]
},
{
"base": {
- "name": "GMX Shopping",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Википедия (ru)",
"urls": {
"search": {
- "base": "https://shopping.gmx.net/",
+ "base": "https://ru.wikipedia.org/wiki/Служебная:Поиск",
"params": [
{
- "name": "origin",
- "value": "br_osd"
+ "name": "sourceid",
+ "value": "Mozilla-search"
}
],
- "searchTermParamName": "q"
+ "searchTermParamName": "search"
},
"suggestions": {
- "base": "https://shopping.gmx.net/suggest/ca/",
- "searchTermParamName": "q"
+ "base": "https://ru.wikipedia.org/w/api.php",
+ "params": [
+ {
+ "name": "action",
+ "value": "opensearch"
+ }
+ ],
+ "searchTermParamName": "search"
}
- },
- "classification": "unknown"
+ }
},
- "schema": 1702901813066,
+ "id": "8f2b997a-8bfe-436d-9393-b9abb52522ef",
+ "identifier": "wikipedia-ru",
+ "last_modified": 1702906502574,
+ "recordType": "engine",
+ "schema": 1702901771244,
"variants": [
{
"environment": {
- "distributions": [
- "gmx"
+ "locales": [
+ "ru"
]
}
}
- ],
- "identifier": "gmx-shopping",
- "recordType": "engine",
- "id": "3a738904-cf8c-4d87-8972-ea98768d44f0",
- "last_modified": 1702906502357
+ ]
},
{
"base": {
- "name": "GMX Search",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (si)",
"urls": {
"search": {
- "base": "https://go.gmx.co.uk/br/moz_search_web/",
+ "base": "https://si.wikipedia.org/wiki/විශේෂ:ගවේෂණය",
"params": [
{
- "name": "enc",
- "value": "UTF-8"
+ "name": "sourceid",
+ "value": "Mozilla-search"
}
],
- "searchTermParamName": "q"
+ "searchTermParamName": "search"
},
"suggestions": {
- "base": "https://suggestplugin.gmx.co.uk/s",
+ "base": "https://si.wikipedia.org/w/api.php",
"params": [
{
- "name": "brand",
- "value": "gmxcouk"
- },
- {
- "name": "origin",
- "value": "moz_splugin_ff"
- },
- {
- "name": "enc",
- "value": "UTF-8"
+ "name": "action",
+ "value": "opensearch"
}
],
- "searchTermParamName": "q"
+ "searchTermParamName": "search"
}
- },
- "classification": "unknown"
+ }
},
- "schema": 1702901813683,
+ "id": "6a54dc6e-623a-4839-afd7-224e06d7ba73",
+ "identifier": "wikipedia-si",
+ "last_modified": 1702906502571,
+ "recordType": "engine",
+ "schema": 1702901771856,
"variants": [
{
"environment": {
- "distributions": [
- "gmxcouk"
+ "locales": [
+ "si"
]
}
}
- ],
- "identifier": "gmx-en-GB",
- "recordType": "engine",
- "id": "d5f10a5b-19b7-4214-9e84-be0b04d6414f",
- "last_modified": 1702906502354
+ ]
},
{
"base": {
- "name": "GMX - Búsqueda web",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipédia (sk)",
"urls": {
"search": {
- "base": "https://go.gmx.es/br/moz_search_web/",
+ "base": "https://sk.wikipedia.org/wiki/Špeciálne:Hľadanie",
"params": [
{
- "name": "enc",
- "value": "UTF-8"
+ "name": "sourceid",
+ "value": "Mozilla-search"
}
],
- "searchTermParamName": "q"
+ "searchTermParamName": "search"
},
"suggestions": {
- "base": "https://suggestplugin.gmx.es/s",
+ "base": "https://sk.wikipedia.org/w/api.php",
"params": [
{
- "name": "brand",
- "value": "gmxes"
- },
- {
- "name": "origin",
- "value": "moz_splugin_ff"
- },
- {
- "name": "enc",
- "value": "UTF-8"
+ "name": "action",
+ "value": "opensearch"
}
],
- "searchTermParamName": "q"
+ "searchTermParamName": "search"
}
- },
- "classification": "unknown"
+ }
},
- "schema": 1702901814287,
+ "id": "f9d77028-e386-4093-aacd-a8c2a56acbc0",
+ "identifier": "wikipedia-sk",
+ "last_modified": 1702906502568,
+ "recordType": "engine",
+ "schema": 1702901772461,
"variants": [
{
"environment": {
- "distributions": [
- "gmxes"
+ "locales": [
+ "sk"
]
}
}
- ],
- "identifier": "gmx-es",
- "recordType": "engine",
- "id": "bdb578f4-6362-4789-911d-193c98ec5378",
- "last_modified": 1702906502351
+ ]
},
{
"base": {
- "name": "GMX - Recherche web",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedija (sl)",
"urls": {
"search": {
- "base": "https://go.gmx.fr/br/moz_search_web/",
+ "base": "https://sl.wikipedia.org/wiki/Posebno:Iskanje",
"params": [
{
- "name": "enc",
- "value": "UTF-8"
+ "name": "sourceid",
+ "value": "Mozilla-search"
}
],
- "searchTermParamName": "q"
+ "searchTermParamName": "search"
},
"suggestions": {
- "base": "https://suggestplugin.gmx.fr/s",
+ "base": "https://sl.wikipedia.org/w/api.php",
"params": [
{
- "name": "brand",
- "value": "gmxfr"
- },
- {
- "name": "origin",
- "value": "moz_splugin_ff"
- },
- {
- "name": "enc",
- "value": "UTF-8"
+ "name": "action",
+ "value": "opensearch"
}
],
- "searchTermParamName": "q"
+ "searchTermParamName": "search"
}
- },
- "classification": "unknown"
+ }
},
- "schema": 1702901814882,
+ "id": "887d2a1b-7275-4a4e-afa2-9157eb98a7d5",
+ "identifier": "wikipedia-sl",
+ "last_modified": 1702906502565,
+ "recordType": "engine",
+ "schema": 1702901773075,
"variants": [
{
"environment": {
- "distributions": [
- "gmxfr"
+ "locales": [
+ "sl"
]
}
}
- ],
- "identifier": "gmx-fr",
- "recordType": "engine",
- "id": "2b628809-284d-468a-831f-95dc479f30da",
- "last_modified": 1702906502349
+ ]
},
{
"base": {
- "name": "Qwant Junior",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (sq)",
"urls": {
"search": {
- "base": "https://www.qwantjunior.com/",
+ "base": "https://sq.wikipedia.org/wiki/Speciale:Kërkim",
"params": [
{
- "name": "client",
- "value": "{partnerCode}"
+ "name": "sourceid",
+ "value": "Mozilla-search"
}
],
- "searchTermParamName": "q"
+ "searchTermParamName": "search"
},
"suggestions": {
- "base": "https://api.qwant.com/egp/suggest/",
+ "base": "https://sq.wikipedia.org/w/api.php",
"params": [
{
- "name": "client",
+ "name": "action",
"value": "opensearch"
}
],
- "searchTermParamName": "q"
+ "searchTermParamName": "search"
}
- },
- "partnerCode": "firefoxqwant",
- "classification": "unknown"
+ }
},
- "schema": 1702901815498,
+ "id": "bc8c03e7-747a-408c-a0ee-6598ca9fad4a",
+ "identifier": "wikipedia-sq",
+ "last_modified": 1702906502561,
+ "recordType": "engine",
+ "schema": 1702901773681,
"variants": [
{
"environment": {
"locales": [
- "fr"
- ],
- "distributions": [
- "qwant-001",
- "qwant-002"
+ "sq"
]
}
}
- ],
- "identifier": "qwantjr",
- "recordType": "engine",
- "id": "7996de41-caf5-4e52-8d96-4ee89ede5d5c",
- "last_modified": 1702906502346
+ ]
},
{
"base": {
- "name": "Seznam",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Википедија (sr)",
"urls": {
"search": {
- "base": "https://search.seznam.cz/",
+ "base": "https://sr.wikipedia.org/wiki/Посебно:Претражи",
"params": [
{
"name": "sourceid",
- "value": "{partnerCode}"
+ "value": "Mozilla-search"
}
],
- "searchTermParamName": "q"
+ "searchTermParamName": "search"
},
"suggestions": {
- "base": "https://suggest.seznam.cz/fulltext_ff",
- "searchTermParamName": "phrase"
+ "base": "https://sr.wikipedia.org/w/api.php",
+ "params": [
+ {
+ "name": "action",
+ "value": "opensearch"
+ }
+ ],
+ "searchTermParamName": "search"
}
- },
- "partnerCode": "firefox",
- "classification": "unknown"
+ }
},
- "schema": 1702901816717,
+ "id": "d381964d-d1e3-4378-962c-6ac5b89161f8",
+ "identifier": "wikipedia-sr",
+ "last_modified": 1702906502558,
+ "recordType": "engine",
+ "schema": 1702901774302,
"variants": [
{
"environment": {
"locales": [
- "cs"
+ "sr"
]
}
}
- ],
- "identifier": "seznam-cz",
- "recordType": "engine",
- "id": "b0cdb724-b7df-47d0-8ead-93aa0a8f60a2",
- "last_modified": 1702906502339
+ ]
},
{
"base": {
- "name": "1&1 Suche",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (sv)",
"urls": {
"search": {
- "base": "https://go.1und1.de/br/moz_search_web/",
+ "base": "https://sv.wikipedia.org/wiki/Special:Sök",
"params": [
{
- "name": "enc",
- "value": "UTF-8"
+ "name": "sourceid",
+ "value": "Mozilla-search"
}
],
- "searchTermParamName": "q"
+ "searchTermParamName": "search"
},
"suggestions": {
- "base": "https://suggestplugin.ui-portal.de/s",
+ "base": "https://sv.wikipedia.org/w/api.php",
"params": [
{
- "name": "brand",
- "value": "1und1"
- },
- {
- "name": "origin",
- "value": "br_splugin_ff_sg"
+ "name": "action",
+ "value": "opensearch"
}
],
- "searchTermParamName": "q"
+ "searchTermParamName": "search"
}
- },
- "classification": "unknown"
+ }
},
- "schema": 1702901817337,
+ "id": "d0708bee-d246-4eb9-81ff-50d5947837ec",
+ "identifier": "wikipedia-sv-SE",
+ "last_modified": 1702906502555,
+ "recordType": "engine",
+ "schema": 1702901774920,
"variants": [
{
"environment": {
- "distributions": [
- "1und1"
+ "locales": [
+ "sv-SE"
]
}
}
- ],
- "identifier": "1und1",
- "recordType": "engine",
- "id": "e870e51d-efed-41d3-8d65-f833ee8e9d96",
- "last_modified": 1702906502336
+ ]
},
{
"base": {
- "name": "WEB.DE Suche",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "விக்கிப்பீடியா (ta)",
"urls": {
"search": {
- "base": "https://go.web.de/br/moz_search_web/",
+ "base": "https://ta.wikipedia.org/wiki/சிறப்பு:Search",
"params": [
{
- "name": "enc",
- "value": "UTF-8"
+ "name": "sourceid",
+ "value": "Mozilla-search"
}
],
- "searchTermParamName": "q"
+ "searchTermParamName": "search"
},
"suggestions": {
- "base": "https://suggestplugin.ui-portal.de/s",
+ "base": "https://ta.wikipedia.org/w/api.php",
"params": [
{
- "name": "brand",
- "value": "webde"
- },
- {
- "name": "origin",
- "value": "br_splugin_ff_sg"
+ "name": "action",
+ "value": "opensearch"
}
],
- "searchTermParamName": "q"
+ "searchTermParamName": "search"
}
- },
- "classification": "unknown"
+ }
},
- "schema": 1702901817944,
+ "id": "78ed73b5-4afd-467e-b7ee-c96658f345c6",
+ "identifier": "wikipedia-ta",
+ "last_modified": 1702906502552,
+ "recordType": "engine",
+ "schema": 1702901775549,
"variants": [
{
"environment": {
- "distributions": [
- "webde"
+ "locales": [
+ "ta"
]
}
}
- ],
- "identifier": "webde",
- "recordType": "engine",
- "id": "3d42fa9a-08ca-4057-b79d-917c576e2634",
- "last_modified": 1702906502332
+ ]
},
{
"base": {
- "name": "mail.com search",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "వికీపీడియా (te)",
"urls": {
"search": {
- "base": "https://go.mail.com/br/moz_search_web/",
+ "base": "https://te.wikipedia.org/wiki/ప్రత్యేక:అన్వేషణ",
"params": [
{
- "name": "enc",
- "value": "UTF-8"
+ "name": "sourceid",
+ "value": "Mozilla-search"
}
],
- "searchTermParamName": "q"
+ "searchTermParamName": "search"
},
"suggestions": {
- "base": "https://search.mail.com/SuggestSearch/s",
+ "base": "https://te.wikipedia.org/w/api.php",
"params": [
{
- "name": "brand",
- "value": "mailcom"
- },
- {
- "name": "origin",
- "value": "br_splugin_ff_sg"
+ "name": "action",
+ "value": "opensearch"
}
],
- "searchTermParamName": "q"
- }
- },
- "classification": "unknown"
- },
- "schema": 1702901818560,
- "variants": [
- {
- "environment": {
- "distributions": [
- "mail.com"
- ]
+ "searchTermParamName": "search"
}
}
- ],
- "identifier": "mailcom",
- "recordType": "engine",
- "id": "39375b5f-77bb-46cb-979d-345c002fe35f",
- "last_modified": 1702906502329
- },
- {
- "base": {
- "name": "楽天市場",
- "urls": {
- "search": {
- "base": "https://pt.afl.rakuten.co.jp/c/013ca98b.cd7c5f0c/",
- "params": [
- {
- "name": "sv",
- "value": "2"
- },
- {
- "name": "p",
- "value": "0"
- }
- ],
- "searchTermParamName": "sitem"
- }
- },
- "charset": "EUC-JP",
- "classification": "unknown"
},
- "schema": 1702901819182,
- "variants": [
- {
- "environment": {
- "locales": [
- "ja",
- "ja-JP-macos"
- ]
- }
- }
- ],
- "identifier": "rakuten",
+ "id": "391eb3c6-de7a-4aaf-8027-3ad1b8c3c00a",
+ "identifier": "wikipedia-te",
+ "last_modified": 1702906502548,
"recordType": "engine",
- "id": "ab6f7178-b0be-452a-82f2-f5df8df2d836",
- "last_modified": 1702906502326
- },
- {
- "base": {
- "name": "Azerdict",
- "urls": {
- "search": {
- "base": "https://azerdict.com/english/",
- "searchTermParamName": "word"
- }
- },
- "classification": "unknown"
- },
- "schema": 1702901819798,
+ "schema": 1702901776173,
"variants": [
{
"environment": {
"locales": [
- "az"
+ "te"
]
}
}
- ],
- "identifier": "azerdict",
- "recordType": "engine",
- "id": "786aa916-a331-4b0c-8099-85927dd87be8",
- "last_modified": 1702906502323
+ ]
},
{
"base": {
- "name": "Ordbok",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "วิกิพีเดีย",
"urls": {
"search": {
- "base": "https://ordbok.uib.no/perl/ordbok.cgi",
+ "base": "https://th.wikipedia.org/wiki/พิเศษ:ค้นหา",
"params": [
{
"name": "sourceid",
"value": "Mozilla-search"
}
],
- "searchTermParamName": "OPP"
- }
- },
- "classification": "unknown"
- },
- "schema": 1702901820444,
- "variants": [
- {
- "environment": {
- "locales": [
- "nb-NO",
- "nn-NO"
- ]
- }
- }
- ],
- "identifier": "bok-NO",
- "recordType": "engine",
- "id": "7ed2240b-b161-4b49-a7fe-35db89544f74",
- "last_modified": 1702906502320
- },
- {
- "base": {
- "name": "Ceneje.si",
- "urls": {
- "search": {
- "base": "https://www.ceneje.si/search_new.aspx",
+ "searchTermParamName": "search"
+ },
+ "suggestions": {
+ "base": "https://th.wikipedia.org/w/api.php",
"params": [
{
- "name": "FF-SearchBox",
- "value": "1"
+ "name": "action",
+ "value": "opensearch"
}
],
- "searchTermParamName": "q"
+ "searchTermParamName": "search"
}
- },
- "classification": "unknown"
+ }
},
- "schema": 1702901821058,
+ "id": "5c7903a3-5a44-41a0-aac2-fc26fe8f8fe7",
+ "identifier": "wikipedia-th",
+ "last_modified": 1702906502545,
+ "recordType": "engine",
+ "schema": 1702901776774,
"variants": [
{
"environment": {
"locales": [
- "sl"
+ "th"
]
}
}
- ],
- "identifier": "ceneji",
- "recordType": "engine",
- "id": "5e515970-4129-48fc-b0d0-8a61c92903d2",
- "last_modified": 1702906502317
+ ]
},
{
"base": {
- "name": "Cốc Cốc",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (tl)",
"urls": {
"search": {
- "base": "https://coccoc.com/search",
+ "base": "https://tl.wikipedia.org/wiki/Natatangi:Maghanap",
"params": [
{
- "name": "s",
- "value": "ff"
- },
- {
- "name": "utm_source",
- "value": "firefox"
+ "name": "sourceid",
+ "value": "Mozilla-search"
}
],
- "searchTermParamName": "query"
+ "searchTermParamName": "search"
},
"suggestions": {
- "base": "https://coccoc.com/composer/autocomplete",
+ "base": "https://tl.wikipedia.org/w/api.php",
"params": [
{
- "name": "of",
- "value": "b"
- },
- {
- "name": "s",
- "value": "ff"
+ "name": "action",
+ "value": "opensearch"
}
],
- "searchTermParamName": "q"
+ "searchTermParamName": "search"
}
- },
- "classification": "unknown"
+ }
},
- "schema": 1702901821664,
+ "id": "d0c8b2f5-accc-45f4-adf4-a7377692869b",
+ "identifier": "wikipedia-tl",
+ "last_modified": 1702906502542,
+ "recordType": "engine",
+ "schema": 1702901777391,
"variants": [
{
"environment": {
"locales": [
- "vi"
+ "tl"
]
}
}
- ],
- "identifier": "coccoc",
- "recordType": "engine",
- "id": "20104daa-cb8a-40b9-a8c5-2433f4476c3e",
- "last_modified": 1702906502314
+ ]
},
{
"base": {
- "name": "다음",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (tr)",
"urls": {
"search": {
- "base": "https://search.daum.net/search",
+ "base": "https://tr.wikipedia.org/wiki/Özel:Ara",
"params": [
{
- "name": "w",
- "value": "tot"
- },
- {
- "name": "nil_ch",
- "value": "ffsr"
+ "name": "sourceid",
+ "value": "Mozilla-search"
}
],
- "searchTermParamName": "q"
+ "searchTermParamName": "search"
},
"suggestions": {
- "base": "https://suggest.search.daum.net/sushi/opensearch/pc",
+ "base": "https://tr.wikipedia.org/w/api.php",
"params": [
{
- "name": "DA",
- "value": "JU2"
+ "name": "action",
+ "value": "opensearch"
}
],
- "searchTermParamName": "q"
+ "searchTermParamName": "search"
}
- },
- "classification": "unknown"
+ }
},
- "schema": 1702901822275,
+ "id": "8885ffbb-f450-4642-8204-ed9128b29e51",
+ "identifier": "wikipedia-tr",
+ "last_modified": 1702906502539,
+ "recordType": "engine",
+ "schema": 1702901777988,
"variants": [
{
"environment": {
"locales": [
- "ko"
+ "tr"
]
}
}
- ],
- "identifier": "daum-kr",
- "recordType": "engine",
- "id": "3330e927-6733-4239-9738-b41c5c460b11",
- "last_modified": 1702906502311
+ ]
},
{
"base": {
- "name": "Ecosia",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Вікіпедія (uk)",
"urls": {
"search": {
- "base": "https://www.ecosia.org/search",
+ "base": "https://uk.wikipedia.org/wiki/Спеціальна:Пошук",
"params": [
{
- "name": "tt",
- "value": "{partnerCode}"
+ "name": "sourceid",
+ "value": "Mozilla-search"
}
],
- "searchTermParamName": "q"
+ "searchTermParamName": "search"
},
"suggestions": {
- "base": "https://ac.ecosia.org/autocomplete",
+ "base": "https://uk.wikipedia.org/w/api.php",
"params": [
{
- "name": "type",
- "value": "list"
+ "name": "action",
+ "value": "opensearch"
}
],
- "searchTermParamName": "q"
- }
- },
- "partnerCode": "mzl",
- "classification": "general"
- },
- "schema": 1702901822899,
- "variants": [
- {
- "environment": {
- "locales": [
- "de"
- ]
+ "searchTermParamName": "search"
}
}
- ],
- "identifier": "ecosia",
- "recordType": "engine",
- "id": "e8e4a7e3-aead-43e3-887d-4064a186bd70",
- "last_modified": 1702906502308
- },
- {
- "base": {
- "name": "EUdict Eng->Cro",
- "urls": {
- "search": {
- "base": "https://eudict.com/",
- "params": [
- {
- "name": "lang",
- "value": "engcro"
- }
- ],
- "searchTermParamName": "word"
- }
- },
- "classification": "unknown"
},
- "schema": 1702901823499,
- "variants": [
- {
- "environment": {
- "locales": [
- "hr"
- ]
- }
- }
- ],
- "identifier": "eudict",
+ "id": "3b65a693-177a-4bd2-9d66-8c038e005800",
+ "identifier": "wikipedia-uk",
+ "last_modified": 1702906502536,
"recordType": "engine",
- "id": "8fe5af92-3b6d-4cbe-a736-4cad01a21efe",
- "last_modified": 1702906502306
- },
- {
- "base": {
- "name": "Am Faclair Beag",
- "urls": {
- "search": {
- "base": "https://www.faclair.com/",
- "searchTermParamName": "txtSearch"
- }
- },
- "classification": "unknown"
- },
- "schema": 1702901824109,
+ "schema": 1702901778586,
"variants": [
{
"environment": {
"locales": [
- "gd"
+ "uk"
]
}
}
- ],
- "identifier": "faclair-beag",
- "recordType": "engine",
- "id": "d21e561b-64ae-4a33-b2f0-c4a490a5cf82",
- "last_modified": 1702906502303
+ ]
},
{
"base": {
- "name": "Gule sider",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "ویکیپیڈیا (ur)",
"urls": {
"search": {
- "base": "https://www.gulesider.no/search",
+ "base": "https://ur.wikipedia.org/wiki/خاص:تلاش",
"params": [
{
- "name": "what",
- "value": "all"
- },
- {
- "name": "cmpid",
- "value": "fre_partner_fire_gssbtop"
+ "name": "sourceid",
+ "value": "Mozilla-search"
}
],
- "searchTermParamName": "q"
- }
- },
- "classification": "unknown"
- },
- "schema": 1702901824715,
- "variants": [
- {
- "environment": {
- "locales": [
- "nb-NO",
- "nn-NO"
- ]
- }
- }
- ],
- "identifier": "gulesider-NO",
- "recordType": "engine",
- "id": "0f9d78f8-e8ad-40be-8f50-b71d5da0f4cc",
- "last_modified": 1702906502300
- },
- {
- "base": {
- "name": "LEO Eng-Deu",
- "urls": {
- "search": {
- "base": "https://dict.leo.org/englisch-deutsch/{searchTerms}"
+ "searchTermParamName": "search"
},
"suggestions": {
- "base": "https://dict.leo.org/dictQuery/m-query/conf/ende/query.conf/strlist.json",
+ "base": "https://ur.wikipedia.org/w/api.php",
"params": [
{
- "name": "sort",
- "value": "PLa"
- },
- {
- "name": "shortQuery",
- "value": "undefined"
- },
- {
- "name": "noDescription",
- "value": "undefined"
- },
- {
- "name": "noQueryURLs",
- "value": "undefined"
+ "name": "action",
+ "value": "opensearch"
}
],
- "searchTermParamName": "q"
+ "searchTermParamName": "search"
}
- },
- "classification": "unknown"
+ }
},
- "schema": 1702901825311,
+ "id": "52a714ba-0471-47be-9557-fc5fe9c9ff50",
+ "identifier": "wikipedia-ur",
+ "last_modified": 1702906502533,
+ "recordType": "engine",
+ "schema": 1702901779213,
"variants": [
{
"environment": {
"locales": [
- "de",
- "dsb",
- "hsb",
- "rm"
+ "ur"
]
}
}
- ],
- "identifier": "leo_ende_de",
- "recordType": "engine",
- "id": "2669ab65-3d93-4432-a960-90413be80ae0",
- "last_modified": 1702906502297
+ ]
},
{
"base": {
- "name": "พจนานุกรม ลองดู",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Vikipediya (uz)",
"urls": {
"search": {
- "base": "https://dict.longdo.org/",
+ "base": "https://uz.wikipedia.org/wiki/Maxsus:Search",
"params": [
{
- "name": "src",
- "value": "moz"
+ "name": "sourceid",
+ "value": "Mozilla-search"
}
],
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://search.longdo.com/Suggest/HeadSearch",
+ "base": "https://uz.wikipedia.org/w/api.php",
"params": [
{
- "name": "ds",
- "value": "head"
- },
- {
- "name": "fxjson",
- "value": "1"
+ "name": "action",
+ "value": "opensearch"
}
],
- "searchTermParamName": "key"
+ "searchTermParamName": "search"
}
- },
- "classification": "unknown"
+ }
},
- "schema": 1702901825919,
+ "id": "1b07d255-6f2c-4e2d-a4b4-b0e99aae39e9",
+ "identifier": "wikipedia-uz",
+ "last_modified": 1702906502529,
+ "recordType": "engine",
+ "schema": 1702901779828,
"variants": [
{
"environment": {
"locales": [
- "th"
+ "uz"
]
}
}
- ],
- "identifier": "longdo",
- "recordType": "engine",
- "id": "fcc54178-e432-4d2b-820e-50f389bfb396",
- "last_modified": 1702906502295
+ ]
},
{
"base": {
- "name": "Mapy.cz",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (vi)",
"urls": {
"search": {
- "base": "https://www.mapy.cz/",
+ "base": "https://vi.wikipedia.org/wiki/Đặc_biệt:Tìm_kiếm",
"params": [
{
"name": "sourceid",
- "value": "Searchmodule_3"
+ "value": "Mozilla-search"
}
],
- "searchTermParamName": "q"
- }
- },
- "classification": "unknown"
- },
- "schema": 1702901826526,
- "variants": [
- {
- "environment": {
- "locales": [
- "cs"
- ]
- }
- }
- ],
- "identifier": "mapy-cz",
- "recordType": "engine",
- "id": "1ad708f0-5736-4f65-aeb4-31e5eca1c598",
- "last_modified": 1702906502292
- },
- {
- "base": {
- "name": "MercadoLibre Argentina",
- "urls": {
- "search": {
- "base": "https://www.mercadolibre.com.ar/jm/search",
- "searchTermParamName": "as_word"
- }
- },
- "classification": "unknown"
- },
- "schema": 1702901827142,
- "variants": [
- {
- "environment": {
- "locales": [
- "es-AR"
- ]
+ "searchTermParamName": "search"
+ },
+ "suggestions": {
+ "base": "https://vi.wikipedia.org/w/api.php",
+ "params": [
+ {
+ "name": "action",
+ "value": "opensearch"
+ }
+ ],
+ "searchTermParamName": "search"
}
}
- ],
- "identifier": "mercadolibre",
- "recordType": "engine",
- "id": "8111d157-e064-40fa-993d-e1d972534754",
- "last_modified": 1702906502289
- },
- {
- "base": {
- "name": "MercadoLibre Chile",
- "urls": {
- "search": {
- "base": "https://www.mercadolibre.cl/jm/search",
- "searchTermParamName": "as_word"
- }
- },
- "classification": "unknown"
},
- "schema": 1702901827757,
- "variants": [
- {
- "environment": {
- "locales": [
- "es-CL"
- ]
- }
- }
- ],
- "identifier": "mercadolibre-cl",
- "recordType": "engine",
- "id": "5659791c-6637-4ba9-b46b-83f16df084cd",
- "last_modified": 1702906502286
- },
- {
- "base": {
- "name": "MercadoLibre Mexico",
- "urls": {
- "search": {
- "base": "https://www.mercadolibre.com.mx/jm/search",
- "searchTermParamName": "as_word"
- }
- },
- "classification": "unknown"
- },
- "schema": 1702901828372,
- "variants": [
- {
- "environment": {
- "locales": [
- "es-MX"
- ]
- }
- }
- ],
- "identifier": "mercadolibre-mx",
+ "id": "5b6f0a3f-1f94-473d-8bcc-c48984523b0c",
+ "identifier": "wikipedia-vi",
+ "last_modified": 1702906502525,
"recordType": "engine",
- "id": "162c9f26-f269-4b8e-b75f-01cf3c15e177",
- "last_modified": 1702906502283
- },
- {
- "base": {
- "name": "MercadoLivre",
- "urls": {
- "search": {
- "base": "https://www.mercadolivre.com.br/jm/search",
- "searchTermParamName": "as_word"
- }
- },
- "classification": "unknown"
- },
- "schema": 1702901829001,
+ "schema": 1702901780448,
"variants": [
{
"environment": {
"locales": [
- "pt-BR"
+ "vi"
]
}
}
- ],
- "identifier": "mercadolivre",
- "recordType": "engine",
- "id": "62453dfa-0d82-4961-b6e2-241647aa04b6",
- "last_modified": 1702906502281
+ ]
},
{
"base": {
- "name": "네이버",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (wo)",
"urls": {
"search": {
- "base": "https://search.naver.com/search.naver",
+ "base": "https://wo.wikipedia.org/wiki/Jagleel:Ceet",
"params": [
{
- "name": "where",
- "value": "nexearch"
- },
- {
- "name": "frm",
- "value": "ff"
- },
- {
- "name": "sm",
- "value": "oss"
- },
- {
- "name": "ie",
- "value": "utf8"
+ "name": "sourceid",
+ "value": "Mozilla-search"
}
],
- "searchTermParamName": "query"
+ "searchTermParamName": "search"
},
"suggestions": {
- "base": "https://ac.search.naver.com/nx/ac",
+ "base": "https://wo.wikipedia.org/w/api.php",
"params": [
{
- "name": "of",
- "value": "os"
- },
- {
- "name": "ie",
- "value": "utf-8"
+ "name": "action",
+ "value": "opensearch"
}
],
- "searchTermParamName": "q"
+ "searchTermParamName": "search"
}
- },
- "classification": "unknown"
+ }
},
- "schema": 1702901829625,
+ "id": "3f1ba3c7-23f1-4ca1-aa0c-623fcae80ddd",
+ "identifier": "wikipedia-wo",
+ "last_modified": 1702906502521,
+ "recordType": "engine",
+ "schema": 1702901781072,
"variants": [
{
"environment": {
"locales": [
- "ko"
+ "wo"
]
}
}
- ],
- "identifier": "naver-kr",
- "recordType": "engine",
- "id": "88d22607-619b-4c7a-8708-bb0caef15e18",
- "last_modified": 1702906502278
+ ]
},
{
"base": {
- "name": "Odpiralni Časi",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "维基百科",
"urls": {
"search": {
- "base": "https://www.odpiralnicasi.com/spots",
+ "base": "https://zh.wikipedia.org/wiki/Special:搜索",
"params": [
{
- "name": "source",
- "value": "1"
+ "name": "sourceid",
+ "value": "Mozilla-search"
}
],
- "searchTermParamName": "q"
- }
- },
- "classification": "unknown"
- },
- "schema": 1702901830238,
- "variants": [
- {
- "environment": {
- "locales": [
- "sl"
- ]
- }
- }
- ],
- "identifier": "odpiralni",
- "recordType": "engine",
- "id": "2039744c-adce-459b-a547-e3dba931c2a0",
- "last_modified": 1702906502275
- },
- {
- "base": {
- "name": "Pazaruvaj",
- "urls": {
- "search": {
- "base": "https://www.pazaruvaj.com/CategorySearch.php",
- "searchTermParamName": "st"
- }
- },
- "classification": "unknown"
- },
- "schema": 1702901830856,
- "variants": [
- {
- "environment": {
- "locales": [
- "bg"
- ]
- }
- }
- ],
- "identifier": "pazaruvaj",
- "recordType": "engine",
- "id": "ddf4875a-61d4-4677-8aad-74fb3ef2e1df",
- "last_modified": 1702906502272
- },
- {
- "base": {
- "name": "Priberam",
- "urls": {
- "search": {
- "base": "https://www.priberam.pt/dlpo/firefox.aspx",
- "searchTermParamName": "pal"
- }
- },
- "charset": "ISO-8859-15",
- "classification": "unknown"
- },
- "schema": 1702901831479,
- "variants": [
- {
- "environment": {
- "locales": [
- "pt-PT"
- ]
- }
- }
- ],
- "identifier": "priberam",
- "recordType": "engine",
- "id": "4bc3282e-f318-443c-8b2f-c144205657d4",
- "last_modified": 1702906502270
- },
- {
- "base": {
- "name": "Prisjakt",
- "urls": {
- "search": {
- "base": "https://www.prisjakt.nu/search",
"searchTermParamName": "search"
},
"suggestions": {
- "base": "https://www.prisjakt.nu/plugins/opensearch/suggestions.php",
+ "base": "https://zh.wikipedia.org/w/api.php",
+ "params": [
+ {
+ "name": "action",
+ "value": "opensearch"
+ }
+ ],
"searchTermParamName": "search"
}
- },
- "classification": "unknown"
+ }
},
- "schema": 1702901832077,
+ "id": "c0f736ce-c219-4388-a242-48168237e3f5",
+ "identifier": "wikipedia-zh-CN",
+ "last_modified": 1702906502518,
+ "recordType": "engine",
+ "schema": 1702901781680,
"variants": [
{
"environment": {
"locales": [
- "sv-SE"
+ "zh-CN"
]
}
}
- ],
- "identifier": "prisjakt-sv-SE",
- "recordType": "engine",
- "id": "e4f4c143-7b0a-4ae5-b461-cd22da9da90a",
- "last_modified": 1702906502267
+ ]
},
{
"base": {
- "name": "Readmoo 讀墨電子書",
+ "aliases": [
+ "wikipedia"
+ ],
+ "classification": "unknown",
+ "name": "Wikipedia (zh)",
"urls": {
"search": {
- "base": "https://readmoo.com/search/keyword",
+ "base": "https://zh.wikipedia.org/wiki/Special:搜索",
"params": [
{
- "name": "pi",
- "value": "0"
+ "name": "sourceid",
+ "value": "Mozilla-search"
},
{
- "name": "st",
- "value": "true"
+ "name": "variant",
+ "value": "zh-tw"
}
],
- "searchTermParamName": "q"
- }
- },
- "classification": "unknown"
- },
- "schema": 1702901832677,
- "variants": [
- {
- "environment": {
- "locales": [
- "zh-TW"
- ]
- }
- }
- ],
- "identifier": "readmoo",
- "recordType": "engine",
- "id": "f1570611-5dfa-4028-851c-fafaa8324bbd",
- "last_modified": 1702906502264
- },
- {
- "base": {
- "name": "Salidzini.lv",
- "urls": {
- "search": {
- "base": "https://www.salidzini.lv/search.php",
+ "searchTermParamName": "search"
+ },
+ "suggestions": {
+ "base": "https://zh.wikipedia.org/w/api.php",
"params": [
{
- "name": "utm_source",
- "value": "firefox-plugin"
+ "name": "action",
+ "value": "opensearch"
}
],
- "searchTermParamName": "q"
- },
- "suggestions": {
- "base": "https://www.salidzini.lv/search_suggest_opensearch.php",
- "searchTermParamName": "q"
- }
- },
- "classification": "unknown"
- },
- "schema": 1702901833283,
- "variants": [
- {
- "environment": {
- "locales": [
- "ltg",
- "lv"
- ]
+ "searchTermParamName": "search"
}
}
- ],
- "identifier": "salidzinilv",
- "recordType": "engine",
- "id": "883c6f10-cac4-4dc0-b631-9a28cbadda49",
- "last_modified": 1702906502262
- },
- {
- "base": {
- "name": "Tyda.se",
- "urls": {
- "search": {
- "base": "https://tyda.se/",
- "searchTermParamName": "w"
- }
- },
- "classification": "unknown"
},
- "schema": 1702901833893,
+ "id": "864df79e-c03d-47ee-aacf-06242cffe951",
+ "identifier": "wikipedia-zh-TW",
+ "last_modified": 1702906502515,
+ "recordType": "engine",
+ "schema": 1702901782303,
"variants": [
{
"environment": {
"locales": [
- "sv-SE"
+ "zh-TW"
]
}
}
- ],
- "identifier": "tyda-sv-SE",
- "recordType": "engine",
- "id": "511f0050-e322-456f-9f15-acafef69c898",
- "last_modified": 1702906502259
+ ]
},
{
"base": {
- "name": "Vatera.hu",
+ "classification": "unknown",
+ "name": "Wikiccionari (oc)",
"urls": {
"search": {
- "base": "https://www.vatera.hu/listings/index.php",
+ "base": "https://oc.wiktionary.org/wiki/Especial:Recèrca",
+ "searchTermParamName": "search"
+ },
+ "suggestions": {
+ "base": "https://oc.wiktionary.org/w/api.php",
"params": [
{
- "name": "c",
- "value": "0"
+ "name": "action",
+ "value": "opensearch"
},
{
- "name": "td",
- "value": "on"
+ "name": "namespace",
+ "value": "0"
}
],
- "searchTermParamName": "q"
+ "searchTermParamName": "search"
}
- },
- "charset": "ISO-8859-2",
- "classification": "unknown"
+ }
},
- "schema": 1702901834503,
+ "id": "7c9d2fc3-1e6b-40f6-80ad-080bd94fe24b",
+ "identifier": "wiktionary",
+ "last_modified": 1702906502251,
+ "recordType": "engine",
+ "schema": 1702901835738,
"variants": [
{
"environment": {
"locales": [
- "hu"
+ "oc"
]
}
}
- ],
- "identifier": "vatera",
- "recordType": "engine",
- "id": "ede75b07-cdc0-485b-8a9c-8282f15c4ede",
- "last_modified": 1702906502256
+ ]
},
{
"base": {
+ "classification": "unknown",
"name": "విక్షనరీ (te)",
"urls": {
"search": {
@@ -7113,9 +7256,12 @@
],
"searchTermParamName": "search"
}
- },
- "classification": "unknown"
+ }
},
+ "id": "45b4556e-8133-40c8-9a9b-63bc3ad91f53",
+ "identifier": "wiktionary-te",
+ "last_modified": 1702906502253,
+ "recordType": "engine",
"schema": 1702901835109,
"variants": [
{
@@ -7125,55 +7271,50 @@
]
}
}
- ],
- "identifier": "wiktionary-te",
- "recordType": "engine",
- "id": "45b4556e-8133-40c8-9a9b-63bc3ad91f53",
- "last_modified": 1702906502253
+ ]
},
{
"base": {
- "name": "Wikiccionari (oc)",
+ "classification": "unknown",
+ "name": "Wolne Lektury",
"urls": {
"search": {
- "base": "https://oc.wiktionary.org/wiki/Especial:Recèrca",
- "searchTermParamName": "search"
+ "base": "https://wolnelektury.pl/szukaj/",
+ "searchTermParamName": "q"
},
"suggestions": {
- "base": "https://oc.wiktionary.org/w/api.php",
+ "base": "https://wolnelektury.pl/katalog/jtags/",
"params": [
{
- "name": "action",
- "value": "opensearch"
- },
- {
- "name": "namespace",
- "value": "0"
+ "name": "mozhint",
+ "value": "1"
}
],
- "searchTermParamName": "search"
+ "searchTermParamName": "q"
}
- },
- "classification": "unknown"
+ }
},
- "schema": 1702901835738,
+ "id": "42348cb0-69a9-4451-8bd6-71bad5bc4e3f",
+ "identifier": "wolnelektury-pl",
+ "last_modified": 1702906502368,
+ "recordType": "engine",
+ "schema": 1702901811217,
"variants": [
{
"environment": {
"locales": [
- "oc"
+ "pl",
+ "szl"
]
}
}
- ],
- "identifier": "wiktionary",
- "recordType": "engine",
- "id": "7c9d2fc3-1e6b-40f6-80ad-080bd94fe24b",
- "last_modified": 1702906502251
+ ]
},
{
"base": {
+ "classification": "general",
"name": "Yahoo! JAPAN",
+ "partnerCode": "mozff",
"urls": {
"search": {
"base": "https://search.yahoo.co.jp/search",
@@ -7189,10 +7330,12 @@
],
"searchTermParamName": "p"
}
- },
- "partnerCode": "mozff",
- "classification": "general"
+ }
},
+ "id": "d45d4cf0-6ce3-4419-a160-ae2ada64c3e8",
+ "identifier": "yahoo-jp",
+ "last_modified": 1702906502248,
+ "recordType": "engine",
"schema": 1702901836360,
"variants": [
{
@@ -7203,14 +7346,12 @@
]
}
}
- ],
- "identifier": "yahoo-jp",
- "recordType": "engine",
- "id": "d45d4cf0-6ce3-4419-a160-ae2ada64c3e8",
- "last_modified": 1702906502248
+ ]
},
{
"base": {
+ "charset": "EUC-JP",
+ "classification": "unknown",
"name": "Yahoo!オークション",
"urls": {
"search": {
@@ -7227,10 +7368,12 @@
],
"searchTermParamName": "p"
}
- },
- "charset": "EUC-JP",
- "classification": "unknown"
+ }
},
+ "id": "3d422460-2ea0-43df-b10d-2e8c9e42462d",
+ "identifier": "yahoo-jp-auctions",
+ "last_modified": 1702906502244,
+ "recordType": "engine",
"schema": 1702901836972,
"variants": [
{
@@ -7241,105 +7384,41 @@
]
}
}
- ],
- "identifier": "yahoo-jp-auctions",
- "recordType": "engine",
- "id": "3d422460-2ea0-43df-b10d-2e8c9e42462d",
- "last_modified": 1702906502244
+ ]
},
{
- "schema": 1702901837584,
- "recordType": "defaultEngines",
- "globalDefault": "google",
- "specificDefaults": [
- {
- "default": "baidu",
- "environment": {
- "locales": [
- "zh-CN"
- ],
- "regions": [
- "cn"
- ]
- }
- },
+ "id": "3e1fed64-5ec7-4b1c-bedc-741fe3c59bc3",
+ "last_modified": 1707833224345,
+ "orders": [
{
- "default": "baidu",
"environment": {
"distributions": [
"MozillaOnline"
]
- }
- },
- {
- "default": "1und1",
- "environment": {
- "distributions": [
- "1und1"
- ]
- }
- },
- {
- "default": "webde",
- "environment": {
- "distributions": [
- "webde"
- ]
- }
- },
- {
- "default": "mailcom",
- "environment": {
- "distributions": [
- "mail.com"
- ]
- }
+ },
+ "order": [
+ "baidu",
+ "bing",
+ "google",
+ "wikipedia*"
+ ]
},
{
- "default": "qwant",
"environment": {
"distributions": [
"qwant-001",
"qwant-002"
]
- }
- },
- {
- "default": "gmx-de",
- "environment": {
- "distributions": [
- "gmx"
- ]
- }
- },
- {
- "default": "gmx-en-GB",
- "environment": {
- "distributions": [
- "gmxcouk"
- ]
- }
- },
- {
- "default": "gmx-es",
- "environment": {
- "distributions": [
- "gmxes"
- ]
- }
- },
- {
- "default": "gmx-fr",
- "environment": {
- "distributions": [
- "gmxfr"
- ]
- }
+ },
+ "order": [
+ "qwant",
+ "qwantjr"
+ ]
}
],
- "id": "f3891684-2348-4e7a-9765-0c5d2d0ab1b9",
- "last_modified": 1702906502241
+ "recordType": "engineOrders",
+ "schema": 1707824831520
}
],
- "timestamp": 1710766863306
+ "timestamp": 1715090108535
}
diff --git a/services/settings/dumps/main/search-telemetry-v2.json b/services/settings/dumps/main/search-telemetry-v2.json
index 9eb4e5d29c..1a1708529c 100644
--- a/services/settings/dumps/main/search-telemetry-v2.json
+++ b/services/settings/dumps/main/search-telemetry-v2.json
@@ -1,6 +1,80 @@
{
"data": [
{
+ "isSPA": true,
+ "schema": 1712762409532,
+ "components": [
+ {
+ "type": "ad_image_row",
+ "included": {
+ "parent": {
+ "selector": "[data-testid='pam.container']"
+ },
+ "children": [
+ {
+ "selector": "[data-slide-index]",
+ "countChildren": true
+ }
+ ]
+ }
+ },
+ {
+ "type": "ad_link",
+ "included": {
+ "parent": {
+ "selector": "[data-testid='adResult']"
+ }
+ }
+ },
+ {
+ "type": "incontent_searchbox",
+ "topDown": true,
+ "included": {
+ "parent": {
+ "selector": "._1zdrb._1cR1n"
+ },
+ "related": {
+ "selector": "#search-suggestions"
+ },
+ "children": [
+ {
+ "selector": "input[type='search']"
+ }
+ ]
+ }
+ },
+ {
+ "type": "ad_link",
+ "default": true
+ }
+ ],
+ "taggedCodes": [
+ "brz-moz",
+ "firefoxqwant"
+ ],
+ "telemetryId": "qwant",
+ "organicCodes": [],
+ "codeParamName": "client",
+ "queryParamName": "q",
+ "queryParamNames": [
+ "q"
+ ],
+ "searchPageRegexp": "^https://www\\.qwant\\.com/",
+ "filter_expression": "env.version|versionCompare(\"124.0a1\")>=0",
+ "followOnParamNames": [],
+ "defaultPageQueryParam": {
+ "key": "t",
+ "value": "web"
+ },
+ "extraAdServersRegexps": [
+ "^https://www\\.bing\\.com/acli?c?k",
+ "^https://api\\.qwant\\.com/v3/r/",
+ "^https://fdn\\.qwant\\.com/v3/r/"
+ ],
+ "id": "19c434a3-d173-4871-9743-290ac92a3f6b",
+ "last_modified": 1713187389066
+ },
+ {
"schema": 1712582517430,
"components": [
{
@@ -448,79 +522,6 @@
"last_modified": 1712582517281
},
{
- "isSPA": true,
- "schema": 1707523204491,
- "components": [
- {
- "type": "ad_image_row",
- "included": {
- "parent": {
- "selector": "[data-testid='pam.container']"
- },
- "children": [
- {
- "selector": "[data-slide-index]",
- "countChildren": true
- }
- ]
- }
- },
- {
- "type": "ad_link",
- "included": {
- "parent": {
- "selector": "[data-testid='adResult']"
- }
- }
- },
- {
- "type": "incontent_searchbox",
- "topDown": true,
- "included": {
- "parent": {
- "selector": "._1zdrb._1cR1n"
- },
- "related": {
- "selector": "#search-suggestions"
- },
- "children": [
- {
- "selector": "input[type='search']"
- }
- ]
- }
- },
- {
- "type": "ad_link",
- "default": true
- }
- ],
- "taggedCodes": [
- "brz-moz",
- "firefoxqwant"
- ],
- "telemetryId": "qwant",
- "organicCodes": [],
- "codeParamName": "client",
- "queryParamName": "q",
- "queryParamNames": [
- "q"
- ],
- "searchPageRegexp": "^https://www\\.qwant\\.com/",
- "filter_expression": "env.version|versionCompare(\"124.0a1\")>=0",
- "followOnParamNames": [],
- "defaultPageQueryParam": {
- "key": "t",
- "value": "web"
- },
- "extraAdServersRegexps": [
- "^https://www\\.bing\\.com/acli?c?k",
- "^https://api\\.qwant\\.com/v3/r/"
- ],
- "id": "19c434a3-d173-4871-9743-290ac92a3f6b",
- "last_modified": 1707833261849
- },
- {
"schema": 1705363206938,
"components": [
{
@@ -785,5 +786,5 @@
"last_modified": 1698666532324
}
],
- "timestamp": 1712762409389
+ "timestamp": 1713187389066
}
diff --git a/services/settings/dumps/main/translations-identification-models.json b/services/settings/dumps/main/translations-identification-models.json
deleted file mode 100644
index 4f77db6321..0000000000
--- a/services/settings/dumps/main/translations-identification-models.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "data": [
- {
- "name": "lid.176.ftz",
- "schema": 1681239259655,
- "version": "1.0",
- "attachment": {
- "hash": "8f3472cfe8738a7b6099e8e999c3cbfae0dcd15696aac7d7738a8039db603e83",
- "size": 938013,
- "filename": "lid.176.ftz",
- "location": "main-workspace/translations-identification-models/fc2a4381-bc9e-47ad-8cff-a31163538e27.ftz",
- "mimetype": "application/octet-stream"
- },
- "filter_expression": "",
- "id": "a4446164-b886-11ed-932c-c7bfd1c4d2fa",
- "last_modified": 1681500405555
- }
- ],
- "timestamp": 1681500405555
-}
diff --git a/services/settings/dumps/main/translations-models.json b/services/settings/dumps/main/translations-models.json
index 7144b09988..6b42206b9f 100644
--- a/services/settings/dumps/main/translations-models.json
+++ b/services/settings/dumps/main/translations-models.json
@@ -1,6 +1,108 @@
{
"data": [
{
+ "name": "vocab.caen.spm",
+ "schema": 1715268348400,
+ "toLang": "en",
+ "version": "1.0",
+ "fileType": "vocab",
+ "fromLang": "ca",
+ "attachment": {
+ "hash": "10a1f25e5640f596b547190082f87ba4994f8714693904c82a35d965b9cc7470",
+ "size": 811443,
+ "filename": "vocab.caen.spm",
+ "location": "main-workspace/translations-models/2c8f521d-17af-455b-a52f-b3236013f936.spm",
+ "mimetype": "text/plain"
+ },
+ "id": "7471c959-6e86-457c-a698-0db1aea2e2e9",
+ "last_modified": 1715291348584
+ },
+ {
+ "name": "lex.50.50.caen.s2t.bin",
+ "schema": 1715268308506,
+ "toLang": "en",
+ "version": "1.0",
+ "fileType": "lex",
+ "fromLang": "ca",
+ "attachment": {
+ "hash": "a648be17d6f008feee687b455d00dbfaedba2ead8bee32658783c4325a8d3ece",
+ "size": 5244644,
+ "filename": "lex.50.50.caen.s2t.bin",
+ "location": "main-workspace/translations-models/131e044c-85ed-4287-9ee0-4aebe393b15f.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "id": "a5922e2f-ec10-4ccc-8c84-019999861030",
+ "last_modified": 1715291348582
+ },
+ {
+ "name": "model.caen.intgemm.alphas.bin",
+ "schema": 1715268342735,
+ "toLang": "en",
+ "version": "1.0",
+ "fileType": "model",
+ "fromLang": "ca",
+ "attachment": {
+ "hash": "3a315266490d87f72adf9e5387ee567b2fb76a30018e51586b882b1d87bf5aed",
+ "size": 17140899,
+ "filename": "model.caen.intgemm.alphas.bin",
+ "location": "main-workspace/translations-models/af0c1e43-2d39-4761-99fe-df4eb4c8f9f5.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "id": "2c743b80-f06d-4113-878a-aa808ba86471",
+ "last_modified": 1715291348579
+ },
+ {
+ "name": "lex.50.50.enca.s2t.bin",
+ "schema": 1715073385877,
+ "toLang": "ca",
+ "version": "1.0",
+ "fileType": "lex",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "88c3229e6fc203545b5ec8131e31c589a79dc0ba21c5b19b786c9ec8f6bb2733",
+ "size": 3576936,
+ "filename": "lex.50.50.enca.s2t.bin",
+ "location": "main-workspace/translations-models/0586f6fa-d677-4322-8c3e-38c7a70dd04a.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "id": "b7036cef-6fb4-44a6-8384-98294f7b5de1",
+ "last_modified": 1715291348576
+ },
+ {
+ "name": "vocab.enca.spm",
+ "schema": 1715268271791,
+ "toLang": "ca",
+ "version": "1.0",
+ "fileType": "vocab",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "4fbb317b58e31b330f642a8ecc4c4cb719e328b6ef412624f24e9705898cf72a",
+ "size": 791579,
+ "filename": "vocab.enca.spm",
+ "location": "main-workspace/translations-models/db8b8599-a90b-409f-a110-88d25f8c7920.spm",
+ "mimetype": "text/plain"
+ },
+ "id": "b2276df1-06e3-4c4a-9ffb-5ba710cf64dc",
+ "last_modified": 1715291348574
+ },
+ {
+ "name": "model.enca.intgemm.alphas.bin",
+ "schema": 1715268302013,
+ "toLang": "ca",
+ "version": "1.0",
+ "fileType": "model",
+ "fromLang": "en",
+ "attachment": {
+ "hash": "3fff1f35345b69c8507993d1c75bef9bb7a46effcb18118dff9873c6cdc9c2e1",
+ "size": 17140898,
+ "filename": "model.enca.intgemm.alphas.bin",
+ "location": "main-workspace/translations-models/2a25e493-cc96-4da0-b3d7-efbf5e3ec440.bin",
+ "mimetype": "application/octet-stream"
+ },
+ "id": "8316e03c-098d-4b7a-8f85-d13d44cf0cbd",
+ "last_modified": 1715291348571
+ },
+ {
"name": "lex.50.50.encs.s2t.bin",
"schema": 1712262975283,
"toLang": "cs",
@@ -109,60 +211,6 @@
"last_modified": 1712068183356
},
{
- "name": "model.enca.intgemm.alphas.bin",
- "schema": 1710172593713,
- "toLang": "ca",
- "version": "1.0a1",
- "fileType": "model",
- "fromLang": "en",
- "attachment": {
- "hash": "3fff1f35345b69c8507993d1c75bef9bb7a46effcb18118dff9873c6cdc9c2e1",
- "size": 17140898,
- "filename": "model.enca.intgemm.alphas.bin",
- "location": "main-workspace/translations-models/2a25e493-cc96-4da0-b3d7-efbf5e3ec440.bin",
- "mimetype": "application/octet-stream"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "8316e03c-098d-4b7a-8f85-d13d44cf0cbd",
- "last_modified": 1710173317976
- },
- {
- "name": "vocab.enca.spm",
- "schema": 1710172596644,
- "toLang": "ca",
- "version": "1.0a1",
- "fileType": "vocab",
- "fromLang": "en",
- "attachment": {
- "hash": "4fbb317b58e31b330f642a8ecc4c4cb719e328b6ef412624f24e9705898cf72a",
- "size": 791579,
- "filename": "vocab.enca.spm",
- "location": "main-workspace/translations-models/db8b8599-a90b-409f-a110-88d25f8c7920.spm",
- "mimetype": "text/plain"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "b2276df1-06e3-4c4a-9ffb-5ba710cf64dc",
- "last_modified": 1710173317972
- },
- {
- "name": "lex.50.50.enca.s2t.bin",
- "schema": 1710172598190,
- "toLang": "ca",
- "version": "1.0a1",
- "fileType": "lex",
- "fromLang": "en",
- "attachment": {
- "hash": "88c3229e6fc203545b5ec8131e31c589a79dc0ba21c5b19b786c9ec8f6bb2733",
- "size": 3576936,
- "filename": "lex.50.50.enca.s2t.bin",
- "location": "main-workspace/translations-models/0586f6fa-d677-4322-8c3e-38c7a70dd04a.bin",
- "mimetype": "application/octet-stream"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "b7036cef-6fb4-44a6-8384-98294f7b5de1",
- "last_modified": 1710173317967
- },
- {
"name": "lex.50.50.elen.s2t.bin",
"schema": 1709574542054,
"toLang": "en",
@@ -235,24 +283,6 @@
"last_modified": 1709674886815
},
{
- "name": "qualityModel.enet.bin",
- "schema": 1709574556632,
- "toLang": "et",
- "version": "1.0",
- "fileType": "qualityModel",
- "fromLang": "en",
- "attachment": {
- "hash": "bb9b9c449c705297fe6b83542d64406201960971f102787b9b6c733416406707",
- "size": 68,
- "filename": "qualityModel.enet.bin",
- "location": "main-workspace/translations-models/e1233b94-e22d-4e37-a065-92d66e49fe97.bin",
- "mimetype": "application/octet-stream"
- },
- "filter_expression": "",
- "id": "5d7d9bb7-def8-4424-965d-a06ae69b0654",
- "last_modified": 1709674886811
- },
- {
"name": "model.enet.intgemm.alphas.bin",
"schema": 1709574558010,
"toLang": "et",
@@ -1117,24 +1147,6 @@
"last_modified": 1701186751722
},
{
- "name": "qualityModel.encs.bin",
- "schema": 1700619908215,
- "toLang": "cs",
- "version": "1.0a1",
- "fileType": "qualityModel",
- "fromLang": "en",
- "attachment": {
- "hash": "d7eba90036a065e4a1e93e889befe09f93a7d9a3417f3edffdb09a0db88fe83a",
- "size": 68,
- "filename": "qualityModel.encs.bin",
- "location": "main-workspace/translations-models/ef7dad4b-40b5-4f73-a72b-a98a465123c9.bin",
- "mimetype": "application/octet-stream"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "39dc5368-4d1f-4e83-9db4-fa4bdaf747ca",
- "last_modified": 1701186751719
- },
- {
"name": "vocab.encs.spm",
"schema": 1700619911362,
"toLang": "cs",
@@ -1243,24 +1255,6 @@
"last_modified": 1701186751700
},
{
- "name": "qualityModel.enet.bin",
- "schema": 1700619939863,
- "toLang": "et",
- "version": "1.0a1",
- "fileType": "qualityModel",
- "fromLang": "en",
- "attachment": {
- "hash": "bb9b9c449c705297fe6b83542d64406201960971f102787b9b6c733416406707",
- "size": 68,
- "filename": "qualityModel.enet.bin",
- "location": "main-workspace/translations-models/49913732-7c8b-42b2-8824-bf11bd119ce4.bin",
- "mimetype": "application/octet-stream"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "fafbaa61-5049-40dc-8bb4-3a15d4d7f968",
- "last_modified": 1701186751697
- },
- {
"name": "model.enet.intgemm.alphas.bin",
"schema": 1700619943016,
"toLang": "et",
@@ -1405,60 +1399,6 @@
"last_modified": 1701186751672
},
{
- "name": "model.caen.intgemm.alphas.bin",
- "schema": 1700619981767,
- "toLang": "en",
- "version": "1.0a1",
- "fileType": "model",
- "fromLang": "ca",
- "attachment": {
- "hash": "3a315266490d87f72adf9e5387ee567b2fb76a30018e51586b882b1d87bf5aed",
- "size": 17140899,
- "filename": "model.caen.intgemm.alphas.bin",
- "location": "main-workspace/translations-models/af0c1e43-2d39-4761-99fe-df4eb4c8f9f5.bin",
- "mimetype": "application/octet-stream"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "2c743b80-f06d-4113-878a-aa808ba86471",
- "last_modified": 1701186751669
- },
- {
- "name": "lex.50.50.caen.s2t.bin",
- "schema": 1700619988106,
- "toLang": "en",
- "version": "1.0a1",
- "fileType": "lex",
- "fromLang": "ca",
- "attachment": {
- "hash": "a648be17d6f008feee687b455d00dbfaedba2ead8bee32658783c4325a8d3ece",
- "size": 5244644,
- "filename": "lex.50.50.caen.s2t.bin",
- "location": "main-workspace/translations-models/131e044c-85ed-4287-9ee0-4aebe393b15f.bin",
- "mimetype": "application/octet-stream"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "a5922e2f-ec10-4ccc-8c84-019999861030",
- "last_modified": 1701186751665
- },
- {
- "name": "vocab.caen.spm",
- "schema": 1700619992874,
- "toLang": "en",
- "version": "1.0a1",
- "fileType": "vocab",
- "fromLang": "ca",
- "attachment": {
- "hash": "10a1f25e5640f596b547190082f87ba4994f8714693904c82a35d965b9cc7470",
- "size": 811443,
- "filename": "vocab.caen.spm",
- "location": "main-workspace/translations-models/2c8f521d-17af-455b-a52f-b3236013f936.spm",
- "mimetype": "text/plain"
- },
- "filter_expression": "env.channel == 'default' || env.channel == 'nightly'",
- "id": "7471c959-6e86-457c-a698-0db1aea2e2e9",
- "last_modified": 1701186751662
- },
- {
"name": "vocab.enfa.spm",
"schema": 1700619996576,
"toLang": "fa",
@@ -2377,24 +2317,6 @@
"last_modified": 1701186751494
},
{
- "name": "qualityModel.enes.bin",
- "schema": 1700620251765,
- "toLang": "es",
- "version": "1.0",
- "fileType": "qualityModel",
- "fromLang": "en",
- "attachment": {
- "hash": "ce141f8e9e50a5ef4d8e3243a274b1734dc532f6963794a8869dce35acb543c2",
- "size": 68,
- "filename": "qualityModel.enes.bin",
- "location": "main-workspace/translations-models/bf47c1e1-b01e-40e4-ad4b-b16edec5510f.bin",
- "mimetype": "application/octet-stream"
- },
- "filter_expression": "",
- "id": "f0accb47-36ef-4996-98df-8c59de49bc0c",
- "last_modified": 1701186751491
- },
- {
"name": "lex.50.50.esen.s2t.bin",
"schema": 1700620254899,
"toLang": "en",
@@ -2827,5 +2749,5 @@
"last_modified": 1701186751412
}
],
- "timestamp": 1712849848180
+ "timestamp": 1716389617204
}
diff --git a/services/settings/dumps/main/url-classifier-skip-urls.json b/services/settings/dumps/main/url-classifier-skip-urls.json
index 54e7371601..35cea1645a 100644
--- a/services/settings/dumps/main/url-classifier-skip-urls.json
+++ b/services/settings/dumps/main/url-classifier-skip-urls.json
@@ -16,5 +16,5 @@
"last_modified": 1701090424139
}
],
- "timestamp": 1701090424142
+ "timestamp": 1716288373828
}
diff --git a/services/settings/dumps/moz.build b/services/settings/dumps/moz.build
index f407580bfa..a3e9e9b3f2 100644
--- a/services/settings/dumps/moz.build
+++ b/services/settings/dumps/moz.build
@@ -14,3 +14,4 @@ FINAL_TARGET_FILES.defaults.settings += ["!%s" % dump_summary]
if CONFIG["MOZ_BUILD_APP"] == "browser":
DIST_SUBDIR = "browser"
+ export("DIST_SUBDIR")
diff --git a/services/settings/dumps/security-state/intermediates.json b/services/settings/dumps/security-state/intermediates.json
index ac343a2494..35b0b0893d 100644
--- a/services/settings/dumps/security-state/intermediates.json
+++ b/services/settings/dumps/security-state/intermediates.json
@@ -1,6 +1,636 @@
{
"data": [
{
+ "schema": 1714791237384,
+ "derHash": "5b/O2dIW66faNjSBn7U0+5zroez55jee2DWD0usXfBs=",
+ "subject": "CN=CrowdStrike TLS RSA CA G5,O=CrowdStrike\\, Inc.,C=US",
+ "subjectDN": "ME0xCzAJBgNVBAYTAlVTMRowGAYDVQQKExFDcm93ZFN0cmlrZSwgSW5jLjEiMCAGA1UEAxMZQ3Jvd2RTdHJpa2UgVExTIFJTQSBDQSBHNQ==",
+ "whitelist": false,
+ "attachment": {
+ "hash": "6b261b8fac36823a39b743b18ca457b49c1f4893a008a41240cb63de234b3eba",
+ "size": 2320,
+ "filename": "0toMaTXv4oQGhqLQb3wV6ngpwpcoCQfzynj32yb61O0=.pem",
+ "location": "security-state-staging/intermediates/205794c2-2f9b-4b57-b0b0-170704b16ee2.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "0toMaTXv4oQGhqLQb3wV6ngpwpcoCQfzynj32yb61O0=",
+ "crlite_enrolled": false,
+ "id": "42278641-4abb-4aa5-9eae-d168aad1bd07",
+ "last_modified": 1714791423308
+ },
+ {
+ "schema": 1714704845694,
+ "derHash": "dOYv6feKkbpnDR7sX0ZK3E7se36jJCedcm/9u2mfqfE=",
+ "subject": "CN=TLC ECC EV SSL CA,O=泰尔认证中心有限公司,C=CN",
+ "subjectDN": "MFIxCzAJBgNVBAYTAkNOMScwJQYDVQQKDB7ms7DlsJTorqTor4HkuK3lv4PmnInpmZDlhazlj7gxGjAYBgNVBAMTEVRMQyBFQ0MgRVYgU1NMIENB",
+ "whitelist": false,
+ "attachment": {
+ "hash": "94fbdc7b47eb9f327f5d26de1fe64a91e1302a6abeddb69f12c50ca42c9d4b7b",
+ "size": 1199,
+ "filename": "4AZvGJkPu2IGbtV23Ddjg3gchfybLCPCDeCuH9KOhOA=.pem",
+ "location": "security-state-staging/intermediates/49ea4ff8-4c17-4d5a-9340-96808df993e6.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "4AZvGJkPu2IGbtV23Ddjg3gchfybLCPCDeCuH9KOhOA=",
+ "crlite_enrolled": false,
+ "id": "88a774a2-f773-415e-9f90-5998d2875d99",
+ "last_modified": 1714705023283
+ },
+ {
+ "schema": 1714704845298,
+ "derHash": "wmJ1jffOSO3muntY3zkYn+WcdhKHhUEDTVOtVRB3BoA=",
+ "subject": "CN=TLC RSA EV SSL CA,O=泰尔认证中心有限公司,C=CN",
+ "subjectDN": "MFIxCzAJBgNVBAYTAkNOMScwJQYDVQQKDB7ms7DlsJTorqTor4HkuK3lv4PmnInpmZDlhazlj7gxGjAYBgNVBAMTEVRMQyBSU0EgRVYgU1NMIENB",
+ "whitelist": false,
+ "attachment": {
+ "hash": "3c508f0bd22883f8ba5007906e10f91b266c8ab44a7610ae267bbf78a9f6db5a",
+ "size": 2211,
+ "filename": "xzR8bkQ4UNd0_ANMrSjojF2wOKZqm6Tcl3BiWae2a8U=.pem",
+ "location": "security-state-staging/intermediates/18acdf66-8842-4905-a40d-503d147cdf40.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "xzR8bkQ4UNd0/ANMrSjojF2wOKZqm6Tcl3BiWae2a8U=",
+ "crlite_enrolled": false,
+ "id": "96248ea3-8697-4c3f-9bca-6f45f9cc916d",
+ "last_modified": 1714705023281
+ },
+ {
+ "schema": 1714704844877,
+ "derHash": "y5+K8ykM32GdzIFIRg7GgjjoBrwP2lQiybtyH1ikn2A=",
+ "subject": "CN=TLC ECC DV SSL CA,O=泰尔认证中心有限公司,C=CN",
+ "subjectDN": "MFIxCzAJBgNVBAYTAkNOMScwJQYDVQQKDB7ms7DlsJTorqTor4HkuK3lv4PmnInpmZDlhazlj7gxGjAYBgNVBAMTEVRMQyBFQ0MgRFYgU1NMIENB",
+ "whitelist": false,
+ "attachment": {
+ "hash": "261bb7c89d70587315d0b2f180e211f0a078db822fa9f28b596d304c61831521",
+ "size": 1199,
+ "filename": "znavVbQeyZVgAMRBfl_At7oscqmMOrTOPHCIBWmuLTI=.pem",
+ "location": "security-state-staging/intermediates/bbc5f08a-5c8b-49b4-9535-65481d806c01.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "znavVbQeyZVgAMRBfl/At7oscqmMOrTOPHCIBWmuLTI=",
+ "crlite_enrolled": false,
+ "id": "65f3efaa-ccc0-4ac9-ac21-d07137585612",
+ "last_modified": 1714705023278
+ },
+ {
+ "schema": 1714704844483,
+ "derHash": "2KqlL45a43CHlprtHk8K+Mz2eJQQkPW2aQdqv2FghZs=",
+ "subject": "CN=TLC ECC OV SSL CA,O=泰尔认证中心有限公司,C=CN",
+ "subjectDN": "MFIxCzAJBgNVBAYTAkNOMScwJQYDVQQKDB7ms7DlsJTorqTor4HkuK3lv4PmnInpmZDlhazlj7gxGjAYBgNVBAMTEVRMQyBFQ0MgT1YgU1NMIENB",
+ "whitelist": false,
+ "attachment": {
+ "hash": "9632999c2f6121aeca53467eeeb24543c9423c503c8051b335aa137c0975c78e",
+ "size": 1203,
+ "filename": "1mntplQ3IQAKEEMMiw1XWdsvePYy6J9KrPlhDcP4kuk=.pem",
+ "location": "security-state-staging/intermediates/f775d056-a313-4fec-8983-11b4ef09ae98.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "1mntplQ3IQAKEEMMiw1XWdsvePYy6J9KrPlhDcP4kuk=",
+ "crlite_enrolled": false,
+ "id": "9a557ba0-089c-4230-b267-caa82b6835eb",
+ "last_modified": 1714705023276
+ },
+ {
+ "schema": 1714704844057,
+ "derHash": "xuVtaMuHDaku43ueaxgg2uFxA7GOgNldEOnrteBsrPU=",
+ "subject": "CN=TLC RSA DV SSL CA,O=泰尔认证中心有限公司,C=CN",
+ "subjectDN": "MFIxCzAJBgNVBAYTAkNOMScwJQYDVQQKDB7ms7DlsJTorqTor4HkuK3lv4PmnInpmZDlhazlj7gxGjAYBgNVBAMTEVRMQyBSU0EgRFYgU1NMIENB",
+ "whitelist": false,
+ "attachment": {
+ "hash": "073b414de061470344a5e479bc1062a6ad29bb020678be50adabe1398f670d73",
+ "size": 2215,
+ "filename": "YE8NAiBXY_ACKrjqVig61xRUqLSEjvnI87lBcLzClRo=.pem",
+ "location": "security-state-staging/intermediates/05426970-ec05-43ff-b847-acd8997bd247.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "YE8NAiBXY/ACKrjqVig61xRUqLSEjvnI87lBcLzClRo=",
+ "crlite_enrolled": false,
+ "id": "da273e4b-b916-497f-bd08-213a8880803e",
+ "last_modified": 1714705023273
+ },
+ {
+ "schema": 1714704843612,
+ "derHash": "F3G/q5oBiq8pT0Txjs7pdpJmkj0yU9ahPwPwxCtbG7Y=",
+ "subject": "CN=TLC RSA OV SSL CA,O=泰尔认证中心有限公司,C=CN",
+ "subjectDN": "MFIxCzAJBgNVBAYTAkNOMScwJQYDVQQKDB7ms7DlsJTorqTor4HkuK3lv4PmnInpmZDlhazlj7gxGjAYBgNVBAMTEVRMQyBSU0EgT1YgU1NMIENB",
+ "whitelist": false,
+ "attachment": {
+ "hash": "8dcdb7d8cc7dabc1dce7ebb85ef6eee7f38e513baff75d29064b55a83f241cba",
+ "size": 2215,
+ "filename": "IzsrJpSzxjilA5JA6B2Dw3M_xVfE27SgLk462nNc9lY=.pem",
+ "location": "security-state-staging/intermediates/6d779fca-ef85-4501-b470-95e37e467635.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "IzsrJpSzxjilA5JA6B2Dw3M/xVfE27SgLk462nNc9lY=",
+ "crlite_enrolled": false,
+ "id": "4c0ac58e-15e2-4eaa-a0d3-e7d1734bbcf8",
+ "last_modified": 1714705023270
+ },
+ {
+ "schema": 1714427627443,
+ "derHash": "f1eunNLVdKEDdeXd1eIhbK+M9Qt1nMYiJKGEDLg7SCw=",
+ "subject": "CN=TUBITAK Kamu SM SSL Sertifika Hizmet Saglayicisi - Surum 2,O=TUBITAK Kamu Sertifikasyon Merkezi,ST=Kocaeli,C=TR",
+ "subjectDN": "MIGRMQswCQYDVQQGEwJUUjEQMA4GA1UECAwHS29jYWVsaTErMCkGA1UECgwiVFVCSVRBSyBLYW11IFNlcnRpZmlrYXN5b24gTWVya2V6aTFDMEEGA1UEAww6VFVCSVRBSyBLYW11IFNNIFNTTCBTZXJ0aWZpa2EgSGl6bWV0IFNhZ2xheWljaXNpIC0gU3VydW0gMg==",
+ "whitelist": false,
+ "attachment": {
+ "hash": "75a728b640e676b8e595337af1762254cff720fd4ac8135ef117a393a44bd814",
+ "size": 1882,
+ "filename": "Ug8FXxQFGfGFLV5SAvBW4_SeEJGGTkYvNWRN0Kw9nsY=.pem",
+ "location": "security-state-staging/intermediates/39c5e4e0-1563-4742-8514-8f95fc550320.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "Ug8FXxQFGfGFLV5SAvBW4/SeEJGGTkYvNWRN0Kw9nsY=",
+ "crlite_enrolled": false,
+ "id": "a8041685-8527-4f8b-b58f-159cf26d9259",
+ "last_modified": 1714427823465
+ },
+ {
+ "schema": 1714384143635,
+ "derHash": "NSWCzMhbOUTjzSUF2TGPIqvqQYv/KaD+TSwN8oDyAOM=",
+ "subject": "CN=KeepTrust DV TLS RSA CA G2,O=Shanghai Huandu Info Tech Co. Ltd.,C=CN",
+ "subjectDN": "MF8xCzAJBgNVBAYTAkNOMSswKQYDVQQKEyJTaGFuZ2hhaSBIdWFuZHUgSW5mbyBUZWNoIENvLiBMdGQuMSMwIQYDVQQDExpLZWVwVHJ1c3QgRFYgVExTIFJTQSBDQSBHMg==",
+ "whitelist": false,
+ "attachment": {
+ "hash": "cb1e75148eceed08088a456b7ff90363a57d8da4c80abbf378d19a637786b41c",
+ "size": 2223,
+ "filename": "jO9ialQwHTcCcnf0Nko-La1t7vZFzxL5VXkBOmJv7jg=.pem",
+ "location": "security-state-staging/intermediates/a804f758-b0ec-4f4d-9c9e-511cb91df400.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "jO9ialQwHTcCcnf0Nko+La1t7vZFzxL5VXkBOmJv7jg=",
+ "crlite_enrolled": false,
+ "id": "76e13e33-5d66-4147-a5ab-4c85170f8b97",
+ "last_modified": 1714384623510
+ },
+ {
+ "schema": 1714384143295,
+ "derHash": "qpzQc3QH6enZ2GsUWiz9fNOFwovPWZaqjZptpfx286I=",
+ "subject": "CN=JoySSL DV Secure Server CA G1,O=JoySSL Limited,C=CN",
+ "subjectDN": "ME4xCzAJBgNVBAYTAkNOMRcwFQYDVQQKEw5Kb3lTU0wgTGltaXRlZDEmMCQGA1UEAxMdSm95U1NMIERWIFNlY3VyZSBTZXJ2ZXIgQ0EgRzE=",
+ "whitelist": false,
+ "attachment": {
+ "hash": "32ccda450ba0deeacc2115bf2d3478e63d9d4b3b15fc6031afcfc5e150655dc6",
+ "size": 2198,
+ "filename": "g2JiZieXxu45iG0JwUld77tedfys3MKpmMM2ouvyhRI=.pem",
+ "location": "security-state-staging/intermediates/a6437d76-0de8-4e88-85a7-6e9ba5cf828f.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "g2JiZieXxu45iG0JwUld77tedfys3MKpmMM2ouvyhRI=",
+ "crlite_enrolled": false,
+ "id": "72c9deb2-8b62-4cf8-a8a6-40743cc470a3",
+ "last_modified": 1714384623507
+ },
+ {
+ "schema": 1714384142243,
+ "derHash": "zVBVmm3FxwQjfqv5oHC3nwzfwaecOmrIxeceKVoGXQo=",
+ "subject": "CN=KeepTrust OV TLS RSA CA G2,O=Shanghai Huandu Info Tech Co. Ltd.,C=CN",
+ "subjectDN": "MF8xCzAJBgNVBAYTAkNOMSswKQYDVQQKEyJTaGFuZ2hhaSBIdWFuZHUgSW5mbyBUZWNoIENvLiBMdGQuMSMwIQYDVQQDExpLZWVwVHJ1c3QgT1YgVExTIFJTQSBDQSBHMg==",
+ "whitelist": false,
+ "attachment": {
+ "hash": "b30d651b1cf199129209cea1f430fb2b363d57d20eb77b53b6eb37c94224ca5f",
+ "size": 2223,
+ "filename": "DhtTzWZStZsTMTNNO6vo1uEZOd1s-yYx4N1Ln-w4bjk=.pem",
+ "location": "security-state-staging/intermediates/23383e48-0bb4-4174-b350-8772ec15e787.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "DhtTzWZStZsTMTNNO6vo1uEZOd1s+yYx4N1Ln+w4bjk=",
+ "crlite_enrolled": false,
+ "id": "96114308-dcd6-417f-8831-f2c4a87a2734",
+ "last_modified": 1714384623505
+ },
+ {
+ "schema": 1714384142927,
+ "derHash": "PsEj1x2yeuHcj4dyhsIi9MQWeirk/XvPNweJ70qVIbg=",
+ "subject": "CN=ZoTrus RSA OV SSL CA G1,O=ZoTrus Technology Limited,C=CN",
+ "subjectDN": "MFMxCzAJBgNVBAYTAkNOMSIwIAYDVQQKExlab1RydXMgVGVjaG5vbG9neSBMaW1pdGVkMSAwHgYDVQQDExdab1RydXMgUlNBIE9WIFNTTCBDQSBHMQ==",
+ "whitelist": false,
+ "attachment": {
+ "hash": "04574410ded46eb7bc3d7788bfdac3b8688c8d43491c563568bc5d1a1aa80808",
+ "size": 2207,
+ "filename": "Kg6NFkFHP4nuyrV6WsFy_N3rIzXxOyarWXhBLd8QZ3c=.pem",
+ "location": "security-state-staging/intermediates/d9f96eae-0341-4bfd-be63-a02d45f145ca.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "Kg6NFkFHP4nuyrV6WsFy/N3rIzXxOyarWXhBLd8QZ3c=",
+ "crlite_enrolled": false,
+ "id": "6e7bdeda-c95b-4230-9b7d-ac18f0c7dcad",
+ "last_modified": 1714384623502
+ },
+ {
+ "schema": 1714384141868,
+ "derHash": "5+8a2UYhSzKvA8woeTDQRk7SwIbXoUR8bif8khfU4Ws=",
+ "subject": "CN=ZoTrus RSA DV SSL CA G1,O=ZoTrus Technology Limited,C=CN",
+ "subjectDN": "MFMxCzAJBgNVBAYTAkNOMSIwIAYDVQQKExlab1RydXMgVGVjaG5vbG9neSBMaW1pdGVkMSAwHgYDVQQDExdab1RydXMgUlNBIERWIFNTTCBDQSBHMQ==",
+ "whitelist": false,
+ "attachment": {
+ "hash": "1e1681f8ac91837d962d38225b3c3a106f0cf2c36ed1d04b2d9e4694e0e86a89",
+ "size": 2207,
+ "filename": "rlXZ4Cf3fWuCzOrRwUo4Kk3-SLmJoSF-dmdULfZE3ZY=.pem",
+ "location": "security-state-staging/intermediates/39754f62-7a5b-4043-8317-99d5625244e9.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "rlXZ4Cf3fWuCzOrRwUo4Kk3+SLmJoSF+dmdULfZE3ZY=",
+ "crlite_enrolled": false,
+ "id": "a4cd48cf-5e44-4eae-a17b-0d311ec7d609",
+ "last_modified": 1714384623500
+ },
+ {
+ "schema": 1714384142579,
+ "derHash": "DdM/o2bKAoCNKaXBxFZJarUBXDYE6yHBAUBq8lM9mYo=",
+ "subject": "CN=JoySSL OV Secure Server CA G1,O=JoySSL Limited,C=CN",
+ "subjectDN": "ME4xCzAJBgNVBAYTAkNOMRcwFQYDVQQKEw5Kb3lTU0wgTGltaXRlZDEmMCQGA1UEAxMdSm95U1NMIE9WIFNlY3VyZSBTZXJ2ZXIgQ0EgRzE=",
+ "whitelist": false,
+ "attachment": {
+ "hash": "e961da4ab42fd2633d4e7a7970ba2f972ebde2c8bd68a2eac4751f802d2cb816",
+ "size": 2198,
+ "filename": "DgRu4eBFqtUDTN-UkWIoybum_t54rCgrv-U-lRXORBw=.pem",
+ "location": "security-state-staging/intermediates/cdaa5dd0-80c0-4b91-b53f-cd8652ca483f.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "DgRu4eBFqtUDTN+UkWIoybum/t54rCgrv+U+lRXORBw=",
+ "crlite_enrolled": false,
+ "id": "244aeb2d-bf5f-4431-82a1-1d1744733921",
+ "last_modified": 1714384623497
+ },
+ {
+ "schema": 1713801022424,
+ "derHash": "XUSUtl0cFO+ZWcU56r4hlZ8aSmiA8T/dsZC4suGFzNw=",
+ "subject": "CN=certSIGN Web CA,O=CERTSIGN SA,C=RO",
+ "subjectDN": "MFYxCzAJBgNVBAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lHTiBTQTEYMBYGA1UEAxMPY2VydFNJR04gV2ViIENBMRcwFQYDVQRhEw5WQVRSTy0xODI4ODI1MA==",
+ "whitelist": false,
+ "attachment": {
+ "hash": "e167023854b7a05b9ca70d8db4bc84d6eb3e4d6b1db5f7b7db951e80125300fb",
+ "size": 1975,
+ "filename": "G6NjfcFmFAa5DouUTqNGb3I5tG34kmES3evs_0ubJ68=.pem",
+ "location": "security-state-staging/intermediates/7a2907d8-f702-4338-96fa-ae42d3d1ee3b.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "G6NjfcFmFAa5DouUTqNGb3I5tG34kmES3evs/0ubJ68=",
+ "crlite_enrolled": false,
+ "id": "e240965f-851e-4200-ba0b-17b7fa547f5d",
+ "last_modified": 1713801423278
+ },
+ {
+ "schema": 1713563345018,
+ "derHash": "IZxZzNBtAhCtz26BJXANFXj2mgZwoH/Z3emeSsglJM0=",
+ "subject": "CN=ZoTrus RSA OV SSL CA,O=ZoTrus Technology Limited,C=CN",
+ "subjectDN": "MFAxCzAJBgNVBAYTAkNOMSIwIAYDVQQKExlab1RydXMgVGVjaG5vbG9neSBMaW1pdGVkMR0wGwYDVQQDExRab1RydXMgUlNBIE9WIFNTTCBDQQ==",
+ "whitelist": false,
+ "attachment": {
+ "hash": "df459901a281cbe7636484586532b6b0f97f8624ad80259948b32e8b32f57d01",
+ "size": 2186,
+ "filename": "CpOFwp9u6sYpBiZdnXJcuX-x4w2iZ0y98RsCFJ4JVec=.pem",
+ "location": "security-state-staging/intermediates/9ff98225-689c-485f-892a-a572d7c6fc58.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "CpOFwp9u6sYpBiZdnXJcuX+x4w2iZ0y98RsCFJ4JVec=",
+ "crlite_enrolled": false,
+ "id": "fa3842ac-f284-467d-b036-0e5b4c88ca50",
+ "last_modified": 1713563823131
+ },
+ {
+ "schema": 1713563344315,
+ "derHash": "acJYYSNlAvDCI0Q/2FGi+2rLdFu4FK1yuy5QhnxSw7s=",
+ "subject": "CN=ZoTrus RSA DV SSL CA,O=ZoTrus Technology Limited,C=CN",
+ "subjectDN": "MFAxCzAJBgNVBAYTAkNOMSIwIAYDVQQKExlab1RydXMgVGVjaG5vbG9neSBMaW1pdGVkMR0wGwYDVQQDExRab1RydXMgUlNBIERWIFNTTCBDQQ==",
+ "whitelist": false,
+ "attachment": {
+ "hash": "b393a21ea913aac405b4ee3342a01e46e0948a4274fd9b12853f1fe807d86d69",
+ "size": 2186,
+ "filename": "Cww1k9MzHuL6DZFf8KvIl44NqeUd1st4eTJGzTX1kYY=.pem",
+ "location": "security-state-staging/intermediates/a6bf409d-0112-4d87-a25a-3777feef0e46.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "Cww1k9MzHuL6DZFf8KvIl44NqeUd1st4eTJGzTX1kYY=",
+ "crlite_enrolled": false,
+ "id": "f1b159b3-d5ee-4930-a183-0d11cd444460",
+ "last_modified": 1713563823128
+ },
+ {
+ "schema": 1713563343973,
+ "derHash": "rKCQy9vdNVILIuw89wMmVboWosgA+ASzqrf4Zfpvw4c=",
+ "subject": "CN=JoySSL OV Secure Server CA,O=JoySSL Limited,C=CN",
+ "subjectDN": "MEsxCzAJBgNVBAYTAkNOMRcwFQYDVQQKEw5Kb3lTU0wgTGltaXRlZDEjMCEGA1UEAxMaSm95U1NMIE9WIFNlY3VyZSBTZXJ2ZXIgQ0E=",
+ "whitelist": false,
+ "attachment": {
+ "hash": "88466fa7d95b757a7d4a8fecb8a975bcc6ba1677cac49f30f93c5109aa15f65e",
+ "size": 2182,
+ "filename": "jtWy8BfFvLgKrzt6mKianqUuZ1PXKdIvXZzSmyr3_-w=.pem",
+ "location": "security-state-staging/intermediates/c9659949-5039-44e3-84f3-803544c952d4.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "jtWy8BfFvLgKrzt6mKianqUuZ1PXKdIvXZzSmyr3/+w=",
+ "crlite_enrolled": false,
+ "id": "8fe4a5ad-a4e9-47f2-9ba7-bcab681f426b",
+ "last_modified": 1713563823126
+ },
+ {
+ "schema": 1713563344664,
+ "derHash": "/9DZ7uqvu0xE9xOS8gpS4PZYloVJMxOWQHIt7PwtRlg=",
+ "subject": "CN=KeepTrust OV TLS RSA CA G1,O=Shanghai Huandu Info Tech Co. Ltd.,C=CN",
+ "subjectDN": "MF8xCzAJBgNVBAYTAkNOMSswKQYDVQQKEyJTaGFuZ2hhaSBIdWFuZHUgSW5mbyBUZWNoIENvLiBMdGQuMSMwIQYDVQQDExpLZWVwVHJ1c3QgT1YgVExTIFJTQSBDQSBHMQ==",
+ "whitelist": false,
+ "attachment": {
+ "hash": "7d3dd6bb2446b15df04ebc4b8c50d8a3dabf66fc2b32bab9b38bff6321f687a7",
+ "size": 2207,
+ "filename": "85cJCFYD08OgL627TkJaiRlaXlhLH-X69RT3h0uEcwM=.pem",
+ "location": "security-state-staging/intermediates/15dfb64e-b086-408b-855c-8c562439f65c.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "85cJCFYD08OgL627TkJaiRlaXlhLH+X69RT3h0uEcwM=",
+ "crlite_enrolled": false,
+ "id": "5af111fa-ed57-4069-b6ac-7e51199118e3",
+ "last_modified": 1713563823123
+ },
+ {
+ "schema": 1713563343607,
+ "derHash": "nG2hQcs5TOa5caI/mIZH/0RC55jwcYdxtUhaDMdAIzU=",
+ "subject": "CN=JoySSL DV Secure Server CA,O=JoySSL Limited,C=CN",
+ "subjectDN": "MEsxCzAJBgNVBAYTAkNOMRcwFQYDVQQKEw5Kb3lTU0wgTGltaXRlZDEjMCEGA1UEAxMaSm95U1NMIERWIFNlY3VyZSBTZXJ2ZXIgQ0E=",
+ "whitelist": false,
+ "attachment": {
+ "hash": "84496c854fb2d8cad229bb75a8de9839a986a3d51d9eee944b88ecafbd3a0a65",
+ "size": 2182,
+ "filename": "pZFHI421hRWO43yx8HCJLhSo4mOjwrjbFnCGBEN0LvE=.pem",
+ "location": "security-state-staging/intermediates/6820726c-20e4-481b-98f5-6b13b1ae6d14.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "pZFHI421hRWO43yx8HCJLhSo4mOjwrjbFnCGBEN0LvE=",
+ "crlite_enrolled": false,
+ "id": "f391ba6d-e041-48c5-a43c-d5af91121cc5",
+ "last_modified": 1713563823121
+ },
+ {
+ "schema": 1713473658968,
+ "derHash": "a0DT26rWi+boBOMghfeDfO4It8T6apkLNiJ6bc/whzs=",
+ "subject": "CN=PerfectSSL,O=PerfectSSL,C=NL",
+ "subjectDN": "MDcxCzAJBgNVBAYTAk5MMRMwEQYDVQQKEwpQZXJmZWN0U1NMMRMwEQYDVQQDEwpQZXJmZWN0U1NM",
+ "whitelist": false,
+ "attachment": {
+ "hash": "b75222a66459085ea18be6201277a8268889995fe60f7044c2c32aeb6ff40dd0",
+ "size": 1959,
+ "filename": "9RQ9clPdkWNhDziW0svuZ7LXhk0f0s2Ml81OxcqhrqQ=.pem",
+ "location": "security-state-staging/intermediates/cb51eabd-87f1-4373-9b0b-6a1bb18d1c79.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "9RQ9clPdkWNhDziW0svuZ7LXhk0f0s2Ml81OxcqhrqQ=",
+ "crlite_enrolled": false,
+ "id": "342b832e-bb1f-4408-9906-ff1b291f3e96",
+ "last_modified": 1713473823432
+ },
+ {
+ "schema": 1713473658447,
+ "derHash": "MzfU5LTvapTwSRXS6Gsfj0ejyDZn2iUZ2bla5ycK/+E=",
+ "subject": "CN=GandiCert,O=Gandi SAS,C=FR",
+ "subjectDN": "MDUxCzAJBgNVBAYTAkZSMRIwEAYDVQQKEwlHYW5kaSBTQVMxEjAQBgNVBAMTCUdhbmRpQ2VydA==",
+ "whitelist": false,
+ "attachment": {
+ "hash": "3e6f5e189669c1d64d89e7571909742cebbe17aec48eb5ca9f8cccb6094e7689",
+ "size": 1955,
+ "filename": "0dflgFofXiuLoZvgRpP8N9xrpDTgZ7c1xbmTjIxym7o=.pem",
+ "location": "security-state-staging/intermediates/9bf57459-554d-4097-b765-7c699260613f.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "0dflgFofXiuLoZvgRpP8N9xrpDTgZ7c1xbmTjIxym7o=",
+ "crlite_enrolled": false,
+ "id": "080e3470-9e74-48e7-957d-a5dde3daddfb",
+ "last_modified": 1713473823429
+ },
+ {
+ "schema": 1713452052498,
+ "derHash": "iJW+zvwq52yxVHc0XzJL0rljPKYutDui/Zx/29uG5zs=",
+ "subject": "CN=GlobalSign Atlas E46 EV TLS CA 2024 Q3,O=GlobalSign nv-sa,C=BE",
+ "subjectDN": "MFkxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS8wLQYDVQQDEyZHbG9iYWxTaWduIEF0bGFzIEU0NiBFViBUTFMgQ0EgMjAyNCBRMw==",
+ "whitelist": false,
+ "attachment": {
+ "hash": "6d71e60403974080f3a60316da33e3cd0853f79eb814af508d28e1183d735128",
+ "size": 1195,
+ "filename": "GL1_4VKxhjyJ54_uySfexhsBT5pCdaSyVqFsqOgJF8I=.pem",
+ "location": "security-state-staging/intermediates/be82d832-3efe-4188-bfc3-a861cecf3e7c.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "GL1/4VKxhjyJ54/uySfexhsBT5pCdaSyVqFsqOgJF8I=",
+ "crlite_enrolled": false,
+ "id": "ffd3b55a-6cc6-4a36-8490-00225549d1a0",
+ "last_modified": 1713452223321
+ },
+ {
+ "schema": 1713452053181,
+ "derHash": "XwxjNtMYvQtG4YMlFJczYMmCkwH0ukKkAqU6WpQhYg4=",
+ "subject": "CN=GlobalSign Atlas R3 DV TLS CA 2024 Q3,O=GlobalSign nv-sa,C=BE",
+ "subjectDN": "MFgxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS4wLAYDVQQDEyVHbG9iYWxTaWduIEF0bGFzIFIzIERWIFRMUyBDQSAyMDI0IFEz",
+ "whitelist": false,
+ "attachment": {
+ "hash": "991f25b3e47b9047f93fd2d57d3e3c4a215a51a596d5da5a510fdb37db8d0016",
+ "size": 1642,
+ "filename": "JTrpt0XhAg9V4GwmsBhvwkOFUPBwqttAzQvQ_hbIHhc=.pem",
+ "location": "security-state-staging/intermediates/607e70b5-ed2c-4fc2-8406-6b5c67e9ca13.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "JTrpt0XhAg9V4GwmsBhvwkOFUPBwqttAzQvQ/hbIHhc=",
+ "crlite_enrolled": false,
+ "id": "628991ba-49ab-4da7-9cc9-47e8d75a6b6f",
+ "last_modified": 1713452223319
+ },
+ {
+ "schema": 1713452052825,
+ "derHash": "/vjtqnvL7Wnh4rchlSeo/DK6drFwjnFJKzxJHjrzQuk=",
+ "subject": "CN=GlobalSign Atlas R3 OV ACME CA 2024 Q3,O=GlobalSign nv-sa,C=BE",
+ "subjectDN": "MFkxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS8wLQYDVQQDEyZHbG9iYWxTaWduIEF0bGFzIFIzIE9WIEFDTUUgQ0EgMjAyNCBRMw==",
+ "whitelist": false,
+ "attachment": {
+ "hash": "88113b359d589cf0833963be727452f9868d4e4b6e116efbca91fbaacac17b23",
+ "size": 1642,
+ "filename": "RSHkyRfXbvY7M8TmbPKTu_nWU8FQEkrL3e6rP50xzwg=.pem",
+ "location": "security-state-staging/intermediates/14dbf0de-bde3-4e90-8719-5b4976d5eb98.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "RSHkyRfXbvY7M8TmbPKTu/nWU8FQEkrL3e6rP50xzwg=",
+ "crlite_enrolled": false,
+ "id": "84134ea9-bcc0-44aa-887e-e8eeb981777e",
+ "last_modified": 1713452223316
+ },
+ {
+ "schema": 1713452051802,
+ "derHash": "pYQF9kGgq8EXMsANNadI870PUoFDN6aYDThd483gSzo=",
+ "subject": "CN=GlobalSign Atlas R3 AlphaSSL CA 2024 Q3,O=GlobalSign nv-sa,C=BE",
+ "subjectDN": "MFoxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTAwLgYDVQQDEydHbG9iYWxTaWduIEF0bGFzIFIzIEFscGhhU1NMIENBIDIwMjQgUTM=",
+ "whitelist": false,
+ "attachment": {
+ "hash": "df89bae8f377c3eb0387d8f4c3caa1a66d5d81216b624bfa4f9a108029b20f69",
+ "size": 1646,
+ "filename": "BuoLHGbIs4O5asWIShpYPo0M63hKKDQVqf4405uAzrE=.pem",
+ "location": "security-state-staging/intermediates/cb49a613-0017-47ec-91a5-e04609b1e5a6.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "BuoLHGbIs4O5asWIShpYPo0M63hKKDQVqf4405uAzrE=",
+ "crlite_enrolled": false,
+ "id": "9f7111b4-d5c8-4d37-8e7b-28f498506965",
+ "last_modified": 1713452223313
+ },
+ {
+ "schema": 1713452052160,
+ "derHash": "pASsAuj1JVRLso6goYYX86NbeohSFnIioVT8kzYYLss=",
+ "subject": "CN=GlobalSign Atlas R3 DV ACME CA 2024 Q3,O=GlobalSign nv-sa,C=BE",
+ "subjectDN": "MFkxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS8wLQYDVQQDEyZHbG9iYWxTaWduIEF0bGFzIFIzIERWIEFDTUUgQ0EgMjAyNCBRMw==",
+ "whitelist": false,
+ "attachment": {
+ "hash": "b87712ddee405f5ff47745b3d15c297140ce8a5628486ca931d5166437af9b7a",
+ "size": 1642,
+ "filename": "n0ok38zjxt5xKpAOUFN0RAxAj9vFO81o9e8rEj2babo=.pem",
+ "location": "security-state-staging/intermediates/8c8d128c-3e31-4770-a244-a0a4bdc08225.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "n0ok38zjxt5xKpAOUFN0RAxAj9vFO81o9e8rEj2babo=",
+ "crlite_enrolled": false,
+ "id": "34d5cc70-950c-4069-8c9b-ae50a21b4334",
+ "last_modified": 1713452223311
+ },
+ {
+ "schema": 1713452051036,
+ "derHash": "U4gwB90ss85ywPBPs1ZBr6CqExseAUVeXGtZAfFUkyg=",
+ "subject": "CN=GlobalSign Atlas ECCR5 OV TLS CA 2024 Q3,O=GlobalSign nv-sa,C=BE",
+ "subjectDN": "MFsxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTEwLwYDVQQDEyhHbG9iYWxTaWduIEF0bGFzIEVDQ1I1IE9WIFRMUyBDQSAyMDI0IFEz",
+ "whitelist": false,
+ "attachment": {
+ "hash": "893cbd37b012ee4fbe6598a4d806b97cfdde065c3d3785a7be4d1014609d8d4d",
+ "size": 1199,
+ "filename": "t2BaTrST1wiXR9cBYwSsA9izi_1ZIxfSZk4rXwtEp2E=.pem",
+ "location": "security-state-staging/intermediates/0e4ea6d6-00f4-4e34-ad3a-0daabba45cc8.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "t2BaTrST1wiXR9cBYwSsA9izi/1ZIxfSZk4rXwtEp2E=",
+ "crlite_enrolled": false,
+ "id": "9dcd2610-1edc-4705-8989-276a0ef6bb2c",
+ "last_modified": 1713452223308
+ },
+ {
+ "schema": 1713452049952,
+ "derHash": "x1s6YzPHxGeN8/264NO7ntgl+fEwU+Elq+MUpunDREM=",
+ "subject": "CN=GlobalSign Atlas R3 OV TLS CA 2024 Q3,O=GlobalSign nv-sa,C=BE",
+ "subjectDN": "MFgxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS4wLAYDVQQDEyVHbG9iYWxTaWduIEF0bGFzIFIzIE9WIFRMUyBDQSAyMDI0IFEz",
+ "whitelist": false,
+ "attachment": {
+ "hash": "5906d770ca5d651dedb73738785630d7f6958dce6070d94d82f1c29a24db2617",
+ "size": 1642,
+ "filename": "kc9wzxo68rBmtiracxbsuvjOhB0PR3m0n_R8vGv0vH4=.pem",
+ "location": "security-state-staging/intermediates/8f9b6617-c21b-49ac-8a1e-6e0fdbf381bb.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "kc9wzxo68rBmtiracxbsuvjOhB0PR3m0n/R8vGv0vH4=",
+ "crlite_enrolled": false,
+ "id": "89dc8da6-6f9c-4192-b8d1-686bd6dcd124",
+ "last_modified": 1713452223305
+ },
+ {
+ "schema": 1713452050667,
+ "derHash": "OBzNHc2btgR+2iVQzxkZSTJY3O+36HtZTdREDMukAOI=",
+ "subject": "CN=GlobalSign Atlas ECCR5 DV ACME CA 2024 Q3,O=GlobalSign nv-sa,C=BE",
+ "subjectDN": "MFwxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTIwMAYDVQQDEylHbG9iYWxTaWduIEF0bGFzIEVDQ1I1IERWIEFDTUUgQ0EgMjAyNCBRMw==",
+ "whitelist": false,
+ "attachment": {
+ "hash": "7de60587b585ed93985c8a6815cb21c929c1ee58af92e99b131bcd6a300a27a0",
+ "size": 1199,
+ "filename": "o2b-6LjIyo-5oczRqmr2g0yn04YfAmnMFdL33lDB_Qg=.pem",
+ "location": "security-state-staging/intermediates/b92192fa-1114-4f87-93c1-200da6a30e63.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "o2b+6LjIyo+5oczRqmr2g0yn04YfAmnMFdL33lDB/Qg=",
+ "crlite_enrolled": false,
+ "id": "70d918be-26b1-4c41-a318-1bff748ff39a",
+ "last_modified": 1713452223302
+ },
+ {
+ "schema": 1713452051434,
+ "derHash": "cUNFpm0G0yXP4F4GJsA5rYEBaTvUcLxOldh0/UgKImE=",
+ "subject": "CN=GlobalSign Atlas ECCR5 DV TLS CA 2024 Q3,O=GlobalSign nv-sa,C=BE",
+ "subjectDN": "MFsxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTEwLwYDVQQDEyhHbG9iYWxTaWduIEF0bGFzIEVDQ1I1IERWIFRMUyBDQSAyMDI0IFEz",
+ "whitelist": false,
+ "attachment": {
+ "hash": "c1c5d766dab9839f49866c5209c2b0bbb888f2c4dc0434a8ab99b487d19216ba",
+ "size": 1199,
+ "filename": "FWvyMI4mJOnhz__Y2pSFT5jWfbr0dWQe-o9q4QYbVC8=.pem",
+ "location": "security-state-staging/intermediates/89081b55-c3d0-485b-a757-eb475ba4fbe7.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "FWvyMI4mJOnhz//Y2pSFT5jWfbr0dWQe+o9q4QYbVC8=",
+ "crlite_enrolled": false,
+ "id": "68ceea86-103e-4d57-87c8-d4e2ef4b70a2",
+ "last_modified": 1713452223300
+ },
+ {
+ "schema": 1713452050320,
+ "derHash": "X4uqm41dsXB9VvB+G0TXfYTvDKaSO2tEt89HrZxH7s8=",
+ "subject": "CN=GlobalSign Atlas R6 EV TLS CA 2024 Q3,O=GlobalSign nv-sa,C=BE",
+ "subjectDN": "MFgxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS4wLAYDVQQDEyVHbG9iYWxTaWduIEF0bGFzIFI2IEVWIFRMUyBDQSAyMDI0IFEz",
+ "whitelist": false,
+ "attachment": {
+ "hash": "b1101abf9ceb855b2b5656fb54a1940810e2cfe5a126e44327c171739fa4e36c",
+ "size": 2353,
+ "filename": "X2HAp4fB30kjd5iuOMNGV710IsuKUu3ty0_SzZds8Tw=.pem",
+ "location": "security-state-staging/intermediates/a882e856-3607-408b-a63e-ca2efb559786.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "X2HAp4fB30kjd5iuOMNGV710IsuKUu3ty0/SzZds8Tw=",
+ "crlite_enrolled": false,
+ "id": "c5fa8b22-4bef-4325-bd54-6cd3e10a57b4",
+ "last_modified": 1713452223297
+ },
+ {
+ "schema": 1713452049576,
+ "derHash": "oqF8kqq4Fl0QgskixUH4as2y1pHWRb27HJ1l7c1dVt8=",
+ "subject": "CN=GlobalSign Atlas R46 EV TLS CA 2024 Q3,O=GlobalSign nv-sa,C=BE",
+ "subjectDN": "MFkxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMS8wLQYDVQQDEyZHbG9iYWxTaWduIEF0bGFzIFI0NiBFViBUTFMgQ0EgMjAyNCBRMw==",
+ "whitelist": false,
+ "attachment": {
+ "hash": "b348a1d1629319d3e46741e6878505d385781048770c0044490e0437c8cbdb73",
+ "size": 2345,
+ "filename": "PnZ4Yd0ARy1OzpGnDld1Iw22M13JQRYfZvRpmjPPkZY=.pem",
+ "location": "security-state-staging/intermediates/afdfaef1-07f5-4e41-821b-f0a28065f271.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "PnZ4Yd0ARy1OzpGnDld1Iw22M13JQRYfZvRpmjPPkZY=",
+ "crlite_enrolled": false,
+ "id": "0d5db210-869d-4d82-91a3-944f584b4137",
+ "last_modified": 1713452223294
+ },
+ {
+ "schema": 1713452049146,
+ "derHash": "G8VO4pO5mSvwnzFMPYxEd8Kw0tYQmlAOq1CPNWW2M9Y=",
+ "subject": "CN=GlobalSign Atlas ECCR5 OV ACME CA 2024 Q3,O=GlobalSign nv-sa,C=BE",
+ "subjectDN": "MFwxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMTIwMAYDVQQDEylHbG9iYWxTaWduIEF0bGFzIEVDQ1I1IE9WIEFDTUUgQ0EgMjAyNCBRMw==",
+ "whitelist": false,
+ "attachment": {
+ "hash": "e04813361b31ce38513883a907100f64d91193a853a147d0b0539285699f110f",
+ "size": 1199,
+ "filename": "p8VBtP9cZDINwbjuhYP0otNnPF_ySI5P5IKrIbMsl7I=.pem",
+ "location": "security-state-staging/intermediates/05fe8134-1bdb-46aa-9285-cae06448d260.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "p8VBtP9cZDINwbjuhYP0otNnPF/ySI5P5IKrIbMsl7I=",
+ "crlite_enrolled": false,
+ "id": "706a46dc-a960-46e2-87bf-bd9094702451",
+ "last_modified": 1713452223292
+ },
+ {
+ "schema": 1713279247562,
+ "derHash": "qHnLAaJmHCVbnCub4LILp07qlUbiGoLFcOF3z1v0rto=",
+ "subject": "CN=KeepTrust DV TLS RSA CA G1,O=Shanghai Huandu Info Tech Co. Ltd.,C=CN",
+ "subjectDN": "MF8xCzAJBgNVBAYTAkNOMSswKQYDVQQKEyJTaGFuZ2hhaSBIdWFuZHUgSW5mbyBUZWNoIENvLiBMdGQuMSMwIQYDVQQDExpLZWVwVHJ1c3QgRFYgVExTIFJTQSBDQSBHMQ==",
+ "whitelist": false,
+ "attachment": {
+ "hash": "93a741fbafcd5340a19168c4bd08054a4848435b3be5fe670b8f11c2375684aa",
+ "size": 2207,
+ "filename": "bOEjmQANKVH0X6KYfPDfKE84GnLDQ9OEma-H2A_9vsM=.pem",
+ "location": "security-state-staging/intermediates/a8577b4a-44b2-44d9-860f-74a05b5f338f.pem",
+ "mimetype": "application/x-pem-file"
+ },
+ "pubKeyHash": "bOEjmQANKVH0X6KYfPDfKE84GnLDQ9OEma+H2A/9vsM=",
+ "crlite_enrolled": false,
+ "id": "1a5f9580-38a5-4f0e-821b-2973701c1722",
+ "last_modified": 1713279423465
+ },
+ {
"schema": 1712310550077,
"derHash": "w+vOp+axOsPrOnnwWBnmfWiTxlZC9Q2bXhZHyyZQa44=",
"subject": "CN=Security Communication ECC RootCA1,O=SECOM Trust Systems CO.\\,LTD.,C=JP",
@@ -721,42 +1351,6 @@
"last_modified": 1709323057665
},
{
- "schema": 1709322861260,
- "derHash": "wKHKNkddM7Rx5OWOVXTdkpTTVMRXKVlU21VbJOrSqks=",
- "subject": "CN=COMODO/PKWARE Secure Email CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB",
- "subjectDN": "MIGAMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01PRE8gQ0EgTGltaXRlZDEmMCQGA1UEAxMdQ09NT0RPL1BLV0FSRSBTZWN1cmUgRW1haWwgQ0E=",
- "whitelist": false,
- "attachment": {
- "hash": "536d387994d2fcf3c04c848acb66841104d87c9b0b1ed73ccec9768bd275d362",
- "size": 1979,
- "filename": "javoiDXitAWxKnEeWWJB_XeluETyAl8SAu8OHaB7Q0c=.pem",
- "location": "security-state-staging/intermediates/a14785fd-f6c9-4f29-9d06-df68da0a3959.pem",
- "mimetype": "application/x-pem-file"
- },
- "pubKeyHash": "javoiDXitAWxKnEeWWJB/XeluETyAl8SAu8OHaB7Q0c=",
- "crlite_enrolled": false,
- "id": "da5c02a2-8457-4e22-87c0-9f6e49221efe",
- "last_modified": 1709323057662
- },
- {
- "schema": 1709322860874,
- "derHash": "YmFumxG9Djo1g2DIO3jbxb7qV1yQuX5oJEgz+zBDfGs=",
- "subject": "CN=TERENA Personal CA,O=TERENA,C=NL",
- "subjectDN": "MDsxCzAJBgNVBAYTAk5MMQ8wDQYDVQQKEwZURVJFTkExGzAZBgNVBAMTElRFUkVOQSBQZXJzb25hbCBDQQ==",
- "whitelist": false,
- "attachment": {
- "hash": "b540a4b8690142678f25aaa6f34207fd3c4298612d40cac2034f5049aa748c3b",
- "size": 1711,
- "filename": "GrQOOcgaiD1vs9vGDvRaVMQKNDQm2_Nj7lPXTk4s2F0=.pem",
- "location": "security-state-staging/intermediates/4742da83-41bb-4761-b382-7a48eb3f8886.pem",
- "mimetype": "application/x-pem-file"
- },
- "pubKeyHash": "GrQOOcgaiD1vs9vGDvRaVMQKNDQm2/Nj7lPXTk4s2F0=",
- "crlite_enrolled": false,
- "id": "d447cf4a-07e2-4ccf-b3c9-898267f291fe",
- "last_modified": 1709323057659
- },
- {
"schema": 1709322860517,
"derHash": "mm/Eq02x6m9mY1B+3B0Ajwka6I+rbzrlaoSkCQUp71g=",
"subject": "CN=Telekom Security EV RSA CA 23,O=Deutsche Telekom Security GmbH,C=DE",
@@ -775,24 +1369,6 @@
"last_modified": 1709323057656
},
{
- "schema": 1709322859788,
- "derHash": "/QKa3j96gKmNb//JQpBGWF7x2MuBk6F/YhQxfQZS18M=",
- "subject": "CN=COMODO/HP Secure Email CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB",
- "subjectDN": "MHwxCzAJBgNVBAYTAkdCMRswGQYDVQQIExJHcmVhdGVyIE1hbmNoZXN0ZXIxEDAOBgNVBAcTB1NhbGZvcmQxGjAYBgNVBAoTEUNPTU9ETyBDQSBMaW1pdGVkMSIwIAYDVQQDExlDT01PRE8vSFAgU2VjdXJlIEVtYWlsIENB",
- "whitelist": false,
- "attachment": {
- "hash": "adb2966a8c1fc1a877edbb79b2d43109f804829872e34bd8667f85ba432153e5",
- "size": 1975,
- "filename": "VQkNSqdqPoVan53-i1N5YrjNCMnJRtvNFB7icXr9un8=.pem",
- "location": "security-state-staging/intermediates/dde31d19-c833-41ae-a61a-48529e89c711.pem",
- "mimetype": "application/x-pem-file"
- },
- "pubKeyHash": "VQkNSqdqPoVan53+i1N5YrjNCMnJRtvNFB7icXr9un8=",
- "crlite_enrolled": false,
- "id": "a53b33af-6b45-402a-abac-9e6140dc28ec",
- "last_modified": 1709323057653
- },
- {
"schema": 1709322862713,
"derHash": "oCHY53TGozxza9tcF2klrd9EbJlnm83NguW9LqX+RE0=",
"subject": "CN=TrustSign BR RSA EV SSL CA 3,O=TrustSign Certificadora Dig. & Solucoes Seguranca da Inf. Ltda.,C=BR",
@@ -847,24 +1423,6 @@
"last_modified": 1709323057644
},
{
- "schema": 1709322856729,
- "derHash": "j3JA8WCTbx/UBr8CizW11gm2SzvQ4x4TzG3Zq3yhLm8=",
- "subject": "CN=GLOBE SSL SECURE EMAIL CA,O=GLOBE HOSTING CERTIFICATION AUTHORITY,C=RO",
- "subjectDN": "MGExCzAJBgNVBAYTAlJPMS4wLAYDVQQKEyVHTE9CRSBIT1NUSU5HIENFUlRJRklDQVRJT04gQVVUSE9SSVRZMSIwIAYDVQQDExlHTE9CRSBTU0wgU0VDVVJFIEVNQUlMIENB",
- "whitelist": false,
- "attachment": {
- "hash": "1cf3286ce0babb75314968445c3959acec4c2fb01d7342d74be3d80efd77125a",
- "size": 1764,
- "filename": "_eRFHz8wxXnTOa1eOct617RUUVoCS6wHVpWc2LKjvVg=.pem",
- "location": "security-state-staging/intermediates/4c03d7f3-2876-42e2-8e63-1770d52bb8dd.pem",
- "mimetype": "application/x-pem-file"
- },
- "pubKeyHash": "/eRFHz8wxXnTOa1eOct617RUUVoCS6wHVpWc2LKjvVg=",
- "crlite_enrolled": false,
- "id": "22c0373b-2dd6-46fd-a8f5-948c6627d4ea",
- "last_modified": 1709323057641
- },
- {
"schema": 1709322858961,
"derHash": "6bmYDIo/WT9Nnn2j9Jev+Ptm4kLGy6DXMOIGVZUT+l0=",
"subject": "CN=CloudSecure RSA Extended Validation Secure Server CA 2,O=CloudSecure Corporation,C=JP",
@@ -901,60 +1459,6 @@
"last_modified": 1709323057634
},
{
- "schema": 1709322857466,
- "derHash": "6QSgV9g5vL5jEJK0IV3YzE+ISbqHtRqvJyi3HmSs51E=",
- "subject": "CN=DREAMHOST SECURE EMAIL CA,O=DREAMHOST CERTIFICATION AUTHORITY,C=US",
- "subjectDN": "MF0xCzAJBgNVBAYTAlVTMSowKAYDVQQKEyFEUkVBTUhPU1QgQ0VSVElGSUNBVElPTiBBVVRIT1JJVFkxIjAgBgNVBAMTGURSRUFNSE9TVCBTRUNVUkUgRU1BSUwgQ0E=",
- "whitelist": false,
- "attachment": {
- "hash": "bd46e6b3068ecccbabe7da0273be8a3d35a413fdfcca05bc18847e7402db16fa",
- "size": 1756,
- "filename": "63NWnCfq1JadpotgYBS_ORAIQ4nhhoHBm9FjkLxi1nA=.pem",
- "location": "security-state-staging/intermediates/6ba6c581-5ba3-48f8-8ccc-e38734c2de49.pem",
- "mimetype": "application/x-pem-file"
- },
- "pubKeyHash": "63NWnCfq1JadpotgYBS/ORAIQ4nhhoHBm9FjkLxi1nA=",
- "crlite_enrolled": false,
- "id": "ad597bfa-50d0-4288-95d2-d15db698ffba",
- "last_modified": 1709323057631
- },
- {
- "schema": 1709322858187,
- "derHash": "Xwo1uk+Epl9osW1KM/ZRfAl3CDk+qv0oVvuak0GHGfQ=",
- "subject": "CN=SGTRUST EMAIL AND CLIENT CA,O=SGssl,C=KR",
- "subjectDN": "MEMxCzAJBgNVBAYTAktSMQ4wDAYDVQQKEwVTR3NzbDEkMCIGA1UEAxMbU0dUUlVTVCBFTUFJTCBBTkQgQ0xJRU5UIENB",
- "whitelist": false,
- "attachment": {
- "hash": "17a9b911f686f237aa390ea2ff06319ae420ccb51198aeed267a5518db5715c4",
- "size": 1723,
- "filename": "gQN5MDXBIRQe70cFfEaNKKTh3AELpmBrtzu-04X41Po=.pem",
- "location": "security-state-staging/intermediates/460d3cb1-d178-47f3-b286-99a9adab7c6a.pem",
- "mimetype": "application/x-pem-file"
- },
- "pubKeyHash": "gQN5MDXBIRQe70cFfEaNKKTh3AELpmBrtzu+04X41Po=",
- "crlite_enrolled": false,
- "id": "5a347462-e209-4a4f-bba5-902bb7cdd29b",
- "last_modified": 1709323057628
- },
- {
- "schema": 1709322860157,
- "derHash": "JhjEFcFGupil8K1+pJiqWHgLpV+o47By0TwzDUEBBxc=",
- "subject": "CN=EuropeanSSL Client CA,O=EUNETIC GmbH,C=DE",
- "subjectDN": "MEQxCzAJBgNVBAYTAkRFMRUwEwYDVQQKEwxFVU5FVElDIEdtYkgxHjAcBgNVBAMTFUV1cm9wZWFuU1NMIENsaWVudCBDQQ==",
- "whitelist": false,
- "attachment": {
- "hash": "939382e857302d9c045c2918ffbab03973b2a29f5c566cfdd7e53388636562f6",
- "size": 1723,
- "filename": "6rE_4fpPwsenurNcVvOyU8xh7Vp9kamSGTFA4_9ffGI=.pem",
- "location": "security-state-staging/intermediates/a5c74b09-42b9-4fbe-ab76-8aac990547e8.pem",
- "mimetype": "application/x-pem-file"
- },
- "pubKeyHash": "6rE/4fpPwsenurNcVvOyU8xh7Vp9kamSGTFA4/9ffGI=",
- "crlite_enrolled": false,
- "id": "21c33409-b6a8-429b-bddf-96d8eb9b5e6d",
- "last_modified": 1709323057625
- },
- {
"schema": 1709322856380,
"derHash": "sF4Fz8v4GBPsMPo/dJIKoj/tNn4UfMgeESH2RphEnQ8=",
"subject": "CN=WISeKey CertifyID SSL GC CA 1,O=WISeKey,C=CH",
@@ -973,24 +1477,6 @@
"last_modified": 1709323057622
},
{
- "schema": 1709322855255,
- "derHash": "9AUHfHF0cDuXgceVRKe+mUJjhU0VFz5hqNGaKM96SrE=",
- "subject": "CN=TERENA eScience Personal CA,O=TERENA,C=NL",
- "subjectDN": "MEQxCzAJBgNVBAYTAk5MMQ8wDQYDVQQKEwZURVJFTkExJDAiBgNVBAMTG1RFUkVOQSBlU2NpZW5jZSBQZXJzb25hbCBDQQ==",
- "whitelist": false,
- "attachment": {
- "hash": "0ff25cb8ace98409f31247ecb59b650b17e31d145ec2485517081e2ac1dfa4fb",
- "size": 1743,
- "filename": "rfAIoQEXwIYxHVXIaa2COA8XlDmE8FsumvzEWCU7MfU=.pem",
- "location": "security-state-staging/intermediates/572cc780-7a7f-4edb-bb11-5177e420e4ee.pem",
- "mimetype": "application/x-pem-file"
- },
- "pubKeyHash": "rfAIoQEXwIYxHVXIaa2COA8XlDmE8FsumvzEWCU7MfU=",
- "crlite_enrolled": false,
- "id": "df33d49d-be3f-4bfc-9291-d978b63c2fb5",
- "last_modified": 1709323057619
- },
- {
"schema": 1709322855622,
"derHash": "Jk2YC0i7HaMvuxR7gQQ0RaxMhWOVlLoVrZoriDai2sA=",
"subject": "CN=TrustSign BR RSA DV SSL CA 3,O=TrustSign Certificadora Dig. & Solucoes Seguranca da Inf. Ltda.,C=BR",
@@ -1009,24 +1495,6 @@
"last_modified": 1709323057615
},
{
- "schema": 1709322854820,
- "derHash": "TywMFwG94Btr7tptF8M2BCQhr3MRcGM0f36Xt2rYl/U=",
- "subject": "CN=GlobalSSL Secure E-Mail and Client Authentication CA,O=GlobalSSL,C=DE",
- "subjectDN": "MGAxCzAJBgNVBAYTAkRFMRIwEAYDVQQKEwlHbG9iYWxTU0wxPTA7BgNVBAMTNEdsb2JhbFNTTCBTZWN1cmUgRS1NYWlsIGFuZCBDbGllbnQgQXV0aGVudGljYXRpb24gQ0E=",
- "whitelist": false,
- "attachment": {
- "hash": "b2019acf4321d57d1f4034c278f7761779e2fc130bbf2ca87aabbe5a7047c614",
- "size": 1760,
- "filename": "rvxRPOOErynHJj6lYghacyWHWiAPuUDhnQ7bzVQe7nA=.pem",
- "location": "security-state-staging/intermediates/cacd7664-e756-4647-96f8-682e65e01ae0.pem",
- "mimetype": "application/x-pem-file"
- },
- "pubKeyHash": "rvxRPOOErynHJj6lYghacyWHWiAPuUDhnQ7bzVQe7nA=",
- "crlite_enrolled": false,
- "id": "9d2ed0cf-a2d4-430d-ae23-724baec635e4",
- "last_modified": 1709323057612
- },
- {
"schema": 1709322857831,
"derHash": "16iplHwxgGwbRiX4L8vMp8wgkOWNshW45NiLqcYNMWY=",
"subject": "CN=Telekom Security EV ECC CA 21,O=Deutsche Telekom Security GmbH,C=DE",
@@ -1063,42 +1531,6 @@
"last_modified": 1709323057606
},
{
- "schema": 1709322857090,
- "derHash": "8BflEJGLd9pn5NAg4rdqQkYYdugi9iDFVzvLw7uzdAY=",
- "subject": "CN=Gandi Secure Email CA,O=GANDI SAS,C=FR",
- "subjectDN": "MEExCzAJBgNVBAYTAkZSMRIwEAYDVQQKEwlHQU5ESSBTQVMxHjAcBgNVBAMTFUdhbmRpIFNlY3VyZSBFbWFpbCBDQQ==",
- "whitelist": false,
- "attachment": {
- "hash": "7374bb117a04dbe56b2af679a65a85a2c734afce7e88acb81917ecd528ba648e",
- "size": 1719,
- "filename": "iFIEeQ06wWLDY4tmZC6npViJr_VFbFCHUdRkqmIc7OY=.pem",
- "location": "security-state-staging/intermediates/80641d57-3847-4459-9d66-f653dd7bfadc.pem",
- "mimetype": "application/x-pem-file"
- },
- "pubKeyHash": "iFIEeQ06wWLDY4tmZC6npViJr/VFbFCHUdRkqmIc7OY=",
- "crlite_enrolled": false,
- "id": "61df2979-bddb-4586-94f1-15e23fe3c076",
- "last_modified": 1709323057603
- },
- {
- "schema": 1709322855985,
- "derHash": "9ooj65c3qMdE7mcRLy/AJKrcUDu7sE8lze1PJXbJNIU=",
- "subject": "CN=The Code Project Secure Email (S/mime) CA,O=The Code Project,C=CA",
- "subjectDN": "MFwxCzAJBgNVBAYTAkNBMRkwFwYDVQQKExBUaGUgQ29kZSBQcm9qZWN0MTIwMAYDVQQDEylUaGUgQ29kZSBQcm9qZWN0IFNlY3VyZSBFbWFpbCAoUy9taW1lKSBDQQ==",
- "whitelist": false,
- "attachment": {
- "hash": "e34a2353b9ea221ccf98cccc3d39c3562f1daceb776f42298bbc37afdd4fc54a",
- "size": 1752,
- "filename": "xtYGt02m4umLJCyy0kfaczCboF12WILjsGOb1umDfX0=.pem",
- "location": "security-state-staging/intermediates/53d673f8-b2c7-4c5c-9730-8965f2ec1dcb.pem",
- "mimetype": "application/x-pem-file"
- },
- "pubKeyHash": "xtYGt02m4umLJCyy0kfaczCboF12WILjsGOb1umDfX0=",
- "crlite_enrolled": false,
- "id": "81d6dcac-df61-4042-bd32-3070f7a85340",
- "last_modified": 1709323057600
- },
- {
"schema": 1705981670999,
"derHash": "edV7Fd+mXChw6v4Rtjd2WQnP6Te0nBXOfxlAMMqzla0=",
"subject": "CN=DigiCert Global Root G2,OU=www.digicert.com,O=DigiCert Inc,C=US",
@@ -8983,60 +9415,6 @@
"last_modified": 1666727873758
},
{
- "schema": 1666727393255,
- "derHash": "m/q9jZEoRQC01BLFclyHyzoBP5QP8eYoEOaSnGk5Ptk=",
- "subject": "CN=CUISEC GCC R3 TLS EV CA 2021,O=联通智慧安全科技有限公司,C=CN",
- "subjectDN": "MGMxCzAJBgNVBAYTAkNOMS0wKwYDVQQKDCTogZTpgJrmmbrmhaflronlhajnp5HmioDmnInpmZDlhazlj7gxJTAjBgNVBAMTHENVSVNFQyBHQ0MgUjMgVExTIEVWIENBIDIwMjE=",
- "whitelist": false,
- "attachment": {
- "hash": "2d49d4197ed82f1b42a22adc7c313e685dbb3ad2d71e872eca62a72ad44e5f09",
- "size": 1727,
- "filename": "9VJFGEWro7X56n20u_Yid3uitID-FtwujrXPJd_UUi8=.pem",
- "location": "security-state-staging/intermediates/0ed5c801-2c4d-48d9-94a2-8d9ee4fac113.pem",
- "mimetype": "application/x-pem-file"
- },
- "pubKeyHash": "9VJFGEWro7X56n20u/Yid3uitID+FtwujrXPJd/UUi8=",
- "crlite_enrolled": false,
- "id": "657d3530-54d0-4905-8819-2c4ed441e0b6",
- "last_modified": 1666727873744
- },
- {
- "schema": 1666727371927,
- "derHash": "aS/huLommVMd5M0vUq44+hGasB9LMat4/m2z/fA6cDE=",
- "subject": "CN=CUISEC GCC R3 TLS DV CA 2021,O=联通智慧安全科技有限公司,C=CN",
- "subjectDN": "MGMxCzAJBgNVBAYTAkNOMS0wKwYDVQQKDCTogZTpgJrmmbrmhaflronlhajnp5HmioDmnInpmZDlhazlj7gxJTAjBgNVBAMTHENVSVNFQyBHQ0MgUjMgVExTIERWIENBIDIwMjE=",
- "whitelist": false,
- "attachment": {
- "hash": "2362379bf98129dd0a1754e516e9383efeac16c9d49e8d5dbe74dd8e76f58a09",
- "size": 1727,
- "filename": "1G8aNb1oR_IGXiLx3-c3BvkRmQ2AjMYBtH40HeLEUds=.pem",
- "location": "security-state-staging/intermediates/d36a1d9e-0533-432a-858f-28d514ac308a.pem",
- "mimetype": "application/x-pem-file"
- },
- "pubKeyHash": "1G8aNb1oR/IGXiLx3+c3BvkRmQ2AjMYBtH40HeLEUds=",
- "crlite_enrolled": false,
- "id": "a49ffd3d-57de-4238-898a-cc903eb6e447",
- "last_modified": 1666727873730
- },
- {
- "schema": 1666727364984,
- "derHash": "x/FF1HT13CCyemThaWF5UiRpB4szP+j/iHuXzngF42I=",
- "subject": "CN=CUISEC GCC R3 TLS OV CA 2021,O=联通智慧安全科技有限公司,C=CN",
- "subjectDN": "MGMxCzAJBgNVBAYTAkNOMS0wKwYDVQQKDCTogZTpgJrmmbrmhaflronlhajnp5HmioDmnInpmZDlhazlj7gxJTAjBgNVBAMTHENVSVNFQyBHQ0MgUjMgVExTIE9WIENBIDIwMjE=",
- "whitelist": false,
- "attachment": {
- "hash": "799039d203bff502b78cba6679ff4243bd84a7daa095ccda9b9dad4f7bdbd772",
- "size": 1727,
- "filename": "7CtV2q_DG2mt1q7CNaMX5LYyXLV5l477mMcjjYZs2u4=.pem",
- "location": "security-state-staging/intermediates/f5f73cb5-53fb-4dc9-8de0-799355a73b83.pem",
- "mimetype": "application/x-pem-file"
- },
- "pubKeyHash": "7CtV2q/DG2mt1q7CNaMX5LYyXLV5l477mMcjjYZs2u4=",
- "crlite_enrolled": false,
- "id": "90d490c9-4f55-4511-92c3-af9d041f1998",
- "last_modified": 1666727873716
- },
- {
"schema": 1666727342323,
"derHash": "HparstZQK13OUY7AC1oeVDNJ79Lj9ovpq8ESiyVv7dc=",
"subject": "CN=GDCA TrustAUTH R4 SSL CA,O=GUANG DONG CERTIFICATE AUTHORITY CO.\\,LTD.,C=CN",
@@ -21745,24 +22123,6 @@
"last_modified": 1663786625894
},
{
- "schema": 1663786313489,
- "derHash": "VlyCcCtexjICdU1PS3bMO64ypMkUbtO+zXOkBP+tTN4=",
- "subject": "CN=UTN-USERFirst-Client Authentication and Email,OU=http://www.usertrust.com,O=The USERTRUST Network,L=Salt Lake City,ST=UT,C=US",
- "subjectDN": "MIGuMQswCQYDVQQGEwJVUzELMAkGA1UECBMCVVQxFzAVBgNVBAcTDlNhbHQgTGFrZSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxITAfBgNVBAsTGGh0dHA6Ly93d3cudXNlcnRydXN0LmNvbTE2MDQGA1UEAxMtVVROLVVTRVJGaXJzdC1DbGllbnQgQXV0aGVudGljYXRpb24gYW5kIEVtYWls",
- "whitelist": false,
- "attachment": {
- "hash": "ea4a8d488e32504fd104cbe43ae869fa05d6c9a40760f4ad44d6138279f5a48c",
- "size": 1674,
- "filename": "Laj56jRU0hFGRko_nQKNxMf7tXscUsc8KwVyovWZotM=.pem",
- "location": "security-state-staging/intermediates/ff1f6147-d1b8-4857-90c1-1c69f32d66f2.pem",
- "mimetype": "application/x-pem-file"
- },
- "pubKeyHash": "Laj56jRU0hFGRko/nQKNxMf7tXscUsc8KwVyovWZotM=",
- "crlite_enrolled": false,
- "id": "f9921d3b-2c14-4cd8-ba89-946e88ff8a45",
- "last_modified": 1663786625873
- },
- {
"schema": 1663786305752,
"derHash": "dnvCnbma9MKmJkkADRcvxswtCdQIxMq2qNmaHdXc99s=",
"subject": "CN=CertCenter Enterprise ECC DV CA,O=CertCenter AG,L=Giessen,ST=Hessen,C=DE",
@@ -26659,24 +27019,6 @@
"last_modified": 1645578266596
},
{
- "schema": 1645577621120,
- "derHash": "s0oztER0/bAHjxE1J7vbdv5b+ByiS7htYoE2xQFgQ+g=",
- "subject": "CN=Certum Class I CA,OU=Certum Certification Authority,O=Unizeto Technologies S.A.,C=PL",
- "subjectDN": "MHYxCzAJBgNVBAYTAlBMMSIwIAYDVQQKExlVbml6ZXRvIFRlY2hub2xvZ2llcyBTLkEuMScwJQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxGjAYBgNVBAMTEUNlcnR1bSBDbGFzcyBJIENB",
- "whitelist": false,
- "attachment": {
- "hash": "30af05c15084780c6d3ae3b8241e1c92fd060afc921724be7e63675470aeac33",
- "size": 1711,
- "filename": "MbF_6zzENJgNMBtdiV6R_9-GZ7l6Nl4QjwF-GW39Yms=.pem",
- "location": "security-state-staging/intermediates/c2f18743-c18b-4fe1-b235-ecce5a4917d4.pem",
- "mimetype": "application/x-pem-file"
- },
- "pubKeyHash": "MbF/6zzENJgNMBtdiV6R/9+GZ7l6Nl4QjwF+GW39Yms=",
- "crlite_enrolled": false,
- "id": "db7340be-ba36-4e17-be92-a5e77a41f0ee",
- "last_modified": 1645578266555
- },
- {
"schema": 1645577625212,
"derHash": "Euom9u7v7HarhZJUVAOriFFbAOJ12YiHE0B6hvxcf9c=",
"subject": "CN=e-Szigno Qualified Organization CA 2017,O=Microsec Ltd.,L=Budapest,C=HU",
@@ -27811,24 +28153,6 @@
"last_modified": 1601517443236
},
{
- "schema": 1601376758715,
- "derHash": "ZLNULRvJcvWKHRefPQuWUr5DTzrjhC4MRHiA1NYjpN4=",
- "subject": "CN=Cybertrust Global Root,O=Cybertrust\\, Inc",
- "subjectDN": "MDsxGDAWBgNVBAoTD0N5YmVydHJ1c3QsIEluYzEfMB0GA1UEAxMWQ3liZXJ0cnVzdCBHbG9iYWwgUm9vdA==",
- "whitelist": false,
- "attachment": {
- "hash": "47de0a95895055ce31d99d828b0db0f2ec2817ccee0b1699eac0fc8b4c0d7a15",
- "size": 1715,
- "filename": "foeCwVDOOVL4AuY2AjpdPpW7XWjjPoWtsroXgSXOvxU=.pem",
- "location": "security-state-staging/intermediates/b0359886-f578-4ff8-b6f6-68c9c49ac966.pem",
- "mimetype": "application/x-pem-file"
- },
- "pubKeyHash": "foeCwVDOOVL4AuY2AjpdPpW7XWjjPoWtsroXgSXOvxU=",
- "crlite_enrolled": false,
- "id": "565f7b1a-68fa-497d-9c56-e9cd5a86b74e",
- "last_modified": 1601517443097
- },
- {
"schema": 1601376718312,
"derHash": "y/j7d2YBZ+a6rNDfd82jl9ARfuK+6iO5NTF/i7W147A=",
"subject": "CN=DigiCert High Assurance EV Root CA,OU=www.digicert.com,O=DigiCert Inc,C=US",
@@ -27919,24 +28243,6 @@
"last_modified": 1601517442835
},
{
- "schema": 1601376765799,
- "derHash": "2Wy8A7UjzTMVkYZRz0hiFiiH3VY6+yNS0/NLuUV2+T0=",
- "subject": "CN=Verizon Global Root CA,OU=OmniRoot,O=Verizon Business,C=US",
- "subjectDN": "MFwxCzAJBgNVBAYTAlVTMRkwFwYDVQQKDBBWZXJpem9uIEJ1c2luZXNzMREwDwYDVQQLDAhPbW5pUm9vdDEfMB0GA1UEAwwWVmVyaXpvbiBHbG9iYWwgUm9vdCBDQQ==",
- "whitelist": false,
- "attachment": {
- "hash": "522a9129b746a60c4aa7d040da0f639b8349b1fee088f3f0ecf8b8101c7e452a",
- "size": 1760,
- "filename": "v-gpCYcuRDTxFcUaVhaAGVlNDgPco2PZ87SDnQurzeU=.pem",
- "location": "security-state-staging/intermediates/98a3c55c-3f5d-4937-9389-3ca882ba85cf.pem",
- "mimetype": "application/x-pem-file"
- },
- "pubKeyHash": "v+gpCYcuRDTxFcUaVhaAGVlNDgPco2PZ87SDnQurzeU=",
- "crlite_enrolled": false,
- "id": "62b74836-05bd-4881-9d60-b255969ce226",
- "last_modified": 1601517442759
- },
- {
"schema": 1601376738922,
"derHash": "LRK2GaZgzvsBMnGDHYkSE/xDTpgqIVaCVs9OLoYyS+o=",
"subject": "CN=Starfield Services Root Certificate Authority - G2,O=Starfield Technologies\\, Inc.,L=Scottsdale,ST=Arizona,C=US",
@@ -30601,5 +30907,5 @@
"last_modified": 1559865884636
}
],
- "timestamp": 1712674623155
+ "timestamp": 1715637423088
}
diff --git a/services/settings/dumps/security-state/moz.build b/services/settings/dumps/security-state/moz.build
index 9133cd4e3e..6e92217dcb 100644
--- a/services/settings/dumps/security-state/moz.build
+++ b/services/settings/dumps/security-state/moz.build
@@ -2,10 +2,13 @@
# 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/.
+# These collections are referenced in toolkit/ or other core code.
FINAL_TARGET_FILES.defaults.settings["security-state"] += [
- "intermediates.json",
"onecrl.json",
]
-if CONFIG["MOZ_BUILD_APP"] == "browser":
- DIST_SUBDIR = "browser"
+# Not packaged on android/ios currently - not crucial data for first load.
+if not CONFIG["MOZ_BUILD_APP"].startswith("mobile/"):
+ FINAL_TARGET_FILES.defaults.settings["security-state"] += [
+ "intermediates.json",
+ ]
diff --git a/services/settings/static-dumps/main/moz.build b/services/settings/static-dumps/main/moz.build
index cc7658a22a..de7b915d83 100644
--- a/services/settings/static-dumps/main/moz.build
+++ b/services/settings/static-dumps/main/moz.build
@@ -2,10 +2,11 @@
# 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/.
-FINAL_TARGET_FILES.defaults.settings.main += [
- "doh-config.json",
- "doh-providers.json",
-]
-
if CONFIG["MOZ_BUILD_APP"] == "browser":
DIST_SUBDIR = "browser"
+
+ # These collections are only referenced from browser/
+ FINAL_TARGET_FILES.defaults.settings.main += [
+ "doh-config.json",
+ "doh-providers.json",
+ ]
diff --git a/services/settings/test/unit/test_remote_settings_release_prefs.js b/services/settings/test/unit/test_remote_settings_release_prefs.js
index bc3c3dd167..251c407631 100644
--- a/services/settings/test/unit/test_remote_settings_release_prefs.js
+++ b/services/settings/test/unit/test_remote_settings_release_prefs.js
@@ -21,7 +21,7 @@ function clear_state() {
add_setup(async function () {
// Set this env vars in order to test the code path where the
// server URL can only be overridden from Dev Tools.
- // See `isRunningTests` in `services/settings/Utils.jsm`.
+ // See `isRunningTests` in `services/settings/Utils.sys.mjs`.
const before = Services.env.get("MOZ_DISABLE_NONLOCAL_CONNECTIONS");
Services.env.set("MOZ_DISABLE_NONLOCAL_CONNECTIONS", "0");
diff --git a/services/sync/modules/constants.sys.mjs b/services/sync/modules/constants.sys.mjs
index 958e3345e6..9efe941c0a 100644
--- a/services/sync/modules/constants.sys.mjs
+++ b/services/sync/modules/constants.sys.mjs
@@ -4,7 +4,7 @@
// Don't manually modify this line, as it is automatically replaced on merge day
// by the gecko_migration.py script.
-export const WEAVE_VERSION = "1.127.0";
+export const WEAVE_VERSION = "1.128.0";
// Sync Server API version that the client supports.
export const SYNC_API_VERSION = "1.5";
diff --git a/services/sync/tests/unit/test_addons_store.js b/services/sync/tests/unit/test_addons_store.js
index a0a3ac6c69..e3c17e3392 100644
--- a/services/sync/tests/unit/test_addons_store.js
+++ b/services/sync/tests/unit/test_addons_store.js
@@ -43,7 +43,7 @@ AddonTestUtils.overrideCertDB();
Services.prefs.setBoolPref("extensions.experiments.enabled", true);
const SYSTEM_ADDON_ID = "system1@tests.mozilla.org";
-add_task(async function setupSystemAddon() {
+add_setup(async function setupSystemAddon() {
const distroDir = FileUtils.getDir("ProfD", ["sysfeatures", "app0"]);
distroDir.create(Ci.nsIFile.DIRECTORY_TYPE, FileUtils.PERMS_DIRECTORY);
AddonTestUtils.registerDirectory("XREAppFeat", distroDir);
@@ -137,6 +137,28 @@ const MISSING_SEARCH_RESULT = {
],
};
+const AMOSIGNED_SHA1_SEARCH_RESULT = {
+ next: null,
+ results: [
+ {
+ name: "Test Extension",
+ type: "extension",
+ guid: "amosigned-xpi@tests.mozilla.org",
+ current_version: {
+ version: "2.1",
+ files: [
+ {
+ platform: "all",
+ size: 4287,
+ url: "http://localhost:8888/amosigned-sha1only.xpi",
+ },
+ ],
+ },
+ last_updated: "2024-03-21T16:00:06.640Z",
+ },
+ ],
+};
+
const XPIS = {};
for (let [name, files] of Object.entries(ADDONS)) {
XPIS[name] = AddonTestUtils.createTempWebExtensionFile(files);
@@ -215,6 +237,18 @@ function createAndStartHTTPServer(port) {
);
server.registerFile("/addon1.xpi", XPIS.test_addon1);
+ server.registerPathHandler(
+ "/search/guid:amosigned-xpi%40tests.mozilla.org",
+ (req, resp) => {
+ resp.setHeader("Content-type", "application/json", true);
+ resp.write(JSON.stringify(AMOSIGNED_SHA1_SEARCH_RESULT));
+ }
+ );
+ server.registerFile(
+ "/amosigned-sha1only.xpi",
+ do_get_file("amosigned-sha1only.xpi")
+ );
+
server.start(port);
return server;
@@ -237,7 +271,7 @@ async function checkReconcilerUpToDate(addon) {
deepEqual(stateBefore, stateAfter);
}
-add_task(async function setup() {
+add_setup(async function setup() {
await Service.engineManager.register(AddonsEngine);
engine = Service.engineManager.get("addons");
store = engine._store;
@@ -562,6 +596,57 @@ add_task(async function test_create() {
await promiseStopServer(server);
});
+add_task(async function test_weak_signature_restrictions() {
+ _("Ensure installing add-ons with a weak signature fails when restricted.");
+
+ // Ensure restrictions on weak signatures are enabled (this should be removed when
+ // the new behavior is riding the train).
+ const resetWeakSignaturePref =
+ AddonTestUtils.setWeakSignatureInstallAllowed(false);
+ const server = createAndStartHTTPServer(HTTP_PORT);
+ const ID_TEST_SHA1 = "amosigned-xpi@tests.mozilla.org";
+
+ const guidKO = Utils.makeGUID();
+ const guidOK = Utils.makeGUID();
+ const recordKO = createRecordForThisApp(guidKO, ID_TEST_SHA1, true, false);
+ const recordOK = createRecordForThisApp(guidOK, ID1, true, false);
+ const countTelemetry = new SyncedRecordsTelemetry();
+
+ let failed;
+
+ const { messages } = await AddonTestUtils.promiseConsoleOutput(async () => {
+ failed = await store.applyIncomingBatch(
+ [recordKO, recordOK],
+ countTelemetry
+ );
+ });
+
+ Assert.equal(
+ 1,
+ failed.length,
+ "Expect only 1 on the two synced add-ons to fail"
+ );
+
+ resetWeakSignaturePref();
+
+ let addonKO = await AddonManager.getAddonByID(ID_TEST_SHA1);
+ Assert.equal(null, addonKO, `Expect ${ID_TEST_SHA1} to NOT be installed`);
+ let addonOK = await AddonManager.getAddonByID(ID1);
+ Assert.notEqual(null, addonOK, `Expect ${ID1} to be installed`);
+
+ await uninstallAddon(addonOK, reconciler);
+ await promiseStopServer(server);
+
+ AddonTestUtils.checkMessages(messages, {
+ expected: [
+ {
+ message:
+ /Download of .*\/amosigned-sha1only.xpi failed: install rejected due to the package not including a strong cryptographic signature/,
+ },
+ ],
+ });
+});
+
add_task(async function test_create_missing_search() {
_("Ensures that failed add-on searches are handled gracefully.");
diff --git a/services/sync/tests/unit/test_bookmark_tracker.js b/services/sync/tests/unit/test_bookmark_tracker.js
index 8c26232cd5..6084e48ebd 100644
--- a/services/sync/tests/unit/test_bookmark_tracker.js
+++ b/services/sync/tests/unit/test_bookmark_tracker.js
@@ -534,7 +534,7 @@ add_task(async function test_async_onItemTagged() {
await startTracking();
// This will change once tags are moved into a separate table (bug 424160).
- // We specifically test this case because Bookmarks.jsm updates tagged
+ // We specifically test this case because Bookmarks.sys.mjs updates tagged
// bookmarks and notifies observers.
_("Insert a tag using the async bookmarks API");
let tag = await PlacesUtils.bookmarks.insert({
diff --git a/services/sync/tests/unit/xpcshell.toml b/services/sync/tests/unit/xpcshell.toml
index e958c8a738..a7d9130668 100644
--- a/services/sync/tests/unit/xpcshell.toml
+++ b/services/sync/tests/unit/xpcshell.toml
@@ -12,6 +12,7 @@ support-files = [
"systemaddon-search.json",
"!/services/common/tests/unit/head_helpers.js",
"!/toolkit/components/extensions/test/xpcshell/head_sync.js",
+ "../../../../toolkit/mozapps/extensions/test/xpinstall/amosigned-sha1only.xpi",
]
# The manifest is roughly ordered from low-level to high-level. When making