From da4c7e7ed675c3bf405668739c3012d140856109 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 15 May 2024 05:34:42 +0200 Subject: Adding upstream version 126.0. Signed-off-by: Daniel Baumann --- services/common/tests/unit/test_restrequest.js | 1 + services/crypto/tests/unit/test_jwcrypto.js | 2 +- services/fxaccounts/FxAccounts.sys.mjs | 27 +- services/fxaccounts/FxAccountsKeys.sys.mjs | 61 + services/fxaccounts/FxAccountsOAuth.sys.mjs | 14 +- services/fxaccounts/FxAccountsWebChannel.sys.mjs | 34 +- .../fxaccounts/tests/xpcshell/test_accounts.js | 4 +- services/fxaccounts/tests/xpcshell/test_keys.js | 122 + .../tests/xpcshell/test_loginmgr_storage.js | 2 +- .../fxaccounts/tests/xpcshell/test_oauth_flow.js | 82 +- services/settings/docs/index.rst | 7 +- .../dumps/blocklists/addons-bloomfilters.json | 74 +- services/settings/dumps/blocklists/moz.build | 23 +- services/settings/dumps/blocklists/plugins.json | 3515 --------- .../dumps/main/cookie-banner-rules-list.json | 2614 ++++--- .../main/devtools-compatibility-browsers.json | 92 +- services/settings/dumps/main/moz.build | 234 +- services/settings/dumps/main/search-config-v2.json | 7711 ++++++++++---------- .../main/translations-identification-models.json | 20 - services/settings/dumps/moz.build | 1 + .../dumps/security-state/intermediates.json | 290 +- services/settings/dumps/security-state/moz.build | 9 +- services/settings/static-dumps/main/moz.build | 11 +- .../unit/test_remote_settings_release_prefs.js | 2 +- services/sync/modules/constants.sys.mjs | 2 +- services/sync/tests/unit/test_addons_store.js | 89 +- services/sync/tests/unit/test_bookmark_tracker.js | 2 +- services/sync/tests/unit/xpcshell.toml | 1 + 28 files changed, 6514 insertions(+), 8532 deletions(-) delete mode 100644 services/settings/dumps/blocklists/plugins.json delete mode 100644 services/settings/dumps/main/translations-identification-models.json (limited to 'services') 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 @@ -131,6 +131,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. * 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 c4f4a6ea42..489a3dc429 100644 --- a/services/settings/dumps/blocklists/addons-bloomfilters.json +++ b/services/settings/dumps/blocklists/addons-bloomfilters.json @@ -1,5 +1,77 @@ { "data": [ + { + "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": [ @@ -606,5 +678,5 @@ "last_modified": 1707395854769 } ], - "timestamp": 1713897363017 + "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 on Adobe's Flash page.", - "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 on Adobe's Flash page.", - "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 java.com.", - "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 java.com.", - "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 java.com.", - "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 on Adobe's Reader page.", - "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 on Adobe's Reader page.", - "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 on Adobe's Reader page.", - "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 Adobe's website.", - "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 java.com.", - "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 java.com.", - "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 java.com.", - "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 plugin check page.", - "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 update their Java plugin. For more information, please read our blog post or Oracle's Advisory.", - "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 plugin check 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 serious security vulnerability 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 Plugin Check 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 serious security vulnerability 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 Plugin Check 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 plugin check page.", - "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 plugin check page.", - "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 serious security vulnerability 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 Plugin Check 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 plugin check page.", - "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 plugin check page.", - "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 the Flip4Mac site.", - "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 plugin check page.", - "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 plugin check page.", - "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 update their Java plugin. For more information, please read our blog post or Oracle's Advisory.", - "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 serious security vulnerability 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 Plugin Check 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 update their Java plugin. For more information, please read our blog post or Oracle's Advisory.", - "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 plugin check page.", - "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 plugin check page.", - "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 serious security vulnerability 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 Plugin Check 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 plugin check page.\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 serious security vulnerability 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 Plugin Check 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 plugin check page.", - "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 plugin check page.\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 plugin check page.", - "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 plugin check page.", - "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 the Flash Player homepage 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 plugin check page.", - "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 the plugin check page 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 plugin check page.", - "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 plugin check page.", - "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 here.", - "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 discontinued by Apple 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 plugin check page.", - "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 plugin check page.", - "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 plugin check page.", - "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 plugin check page.", - "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 visit the vendor page.", - "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 plugin check page.", - "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 this blog post.", - "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 the official Silverlight page 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 plugin check page.", - "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 critical security bug 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 read our blog post or Oracle's Advisory.\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 plugin check page.", - "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 plugin check page 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 plugin check page.", - "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 the plugin check page 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 plugin check page.", - "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 plugin check page.", - "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 plugin check page.", - "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 the plugin check page 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 plugin check page.", - "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 on this site.", - "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. Find updates here.", - "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 plugin check page.", - "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 plugin check page.", - "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 plugin check page.", - "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 plugin check page.", - "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 the plugin check page 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 on this site.", - "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 plugin check page.", - "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 update their Java plugin. For more information, please read our blog post or Oracle's Advisory.", - "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 plugin check page.", - "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. Find updates here.", - "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 plugin check page.", - "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 plugin check page.", - "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 divx.com.", - "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 plugin check page.", - "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 plugin check page.", - "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 plugin check page.", - "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 plugin check page.", - "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 plugin check page.", - "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 plugin check page.", - "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 plugin check 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 plugin check 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 1c513579d9..e1757708ea 100644 --- a/services/settings/dumps/main/cookie-banner-rules-list.json +++ b/services/settings/dumps/main/cookie-banner-rules-list.json @@ -2,298 +2,925 @@ "data": [ { "click": { - "optIn": "#accept-btn", - "optOut": "#decline-btn", - "presence": "#privacy-manager-popin" + "optIn": "#shopify-pc__banner__btn-accept", + "optOut": "#shopify-pc__banner__btn-decline", + "presence": "#shopify-pc__banner" }, - "schema": 1713199742998, + "schema": 1714608006998, "domains": [ - "canalplus.com" + "decathlon.com.sa", + "decathlon.gp", + "decathlon.mq" ], - "id": "7b2e3401-697f-440a-b418-8477fcf2cfeb", - "last_modified": 1713281881442 + "id": "1da8a6ad-f894-400e-8b3d-2a281015b86d", + "last_modified": 1714811640008 }, { "click": { - "optIn": "button#didomi-notice-agree-button", - "optOut": "button#didomi-notice-disagree-button", - "presence": "div#didomi-host" + "optIn": "#ppms_cm_agree-to-all", + "optOut": "#ppms_cm_reject-all", + "presence": "#ppms_cm_popup_overlay" }, - "schema": 1713199742998, + "schema": 1714608006998, "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", - "rtl.fr", - "blablacar.fr", - "6play.fr", - "marianne.net" + "credit-agricole.pl" ], - "id": "690aa076-4a8b-48ec-b52c-1443d44ff008", - "last_modified": 1713281881438 + "id": "5050fb9c-fd8a-44c2-817c-23d95f494190", + "last_modified": 1714811640004 }, { - "click": { - "optIn": "button#onetrust-accept-btn-handler", - "optOut": "button.onetrust-close-btn-handler", - "presence": "div#onetrust-consent-sdk" + "schema": 1714608006998, + "cookies": { + "optOut": [ + { + "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" + } + ] }, - "schema": 1713199742998, - "cookies": {}, "domains": [ - "darty.com", - "e.leclerc", - "fnac.be", - "fnac.ch", - "fnac.com", - "fnac.pt", - "leclercdrive.fr", - "mondialrelay.fr", - "pasteur.fr" + "credit-agricole.it" ], - "id": "2d821158-5945-4134-a078-56c6da4f678d", - "last_modified": 1713281881435 + "id": "1944a25e-6f16-434d-8c59-0493ba587fe7", + "last_modified": 1714811640000 }, { "click": { - "optIn": "#popin_tc_privacy_button_3", - "optOut": "#popin_tc_privacy_button_2", + "optIn": "#popin_tc_privacy_button_2", + "optOut": "#popin_tc_privacy_button_3", "presence": "#tc-privacy-wrapper" }, - "schema": 1713199742998, - "domains": [ - "bouyguestelecom.fr", - "enedis.fr", - "fortuneo.fr", - "lcl.fr", - "tf1.fr", - "tf1info.fr" - ], - "id": "98D89E26-F4B6-4C2D-BABF-4295B922E433", - "last_modified": 1713281881431 - }, - { - "click": { - "optIn": ".btn-ok", - "optOut": ".btn-reject", - "presence": "#cookie-policy-info" - }, - "schema": 1713199742998, + "schema": 1714608006998, "cookies": { "optOut": [ { - "name": "isReadCookiePolicyDNT", - "value": "No" - }, - { - "name": "isReadCookiePolicyDNTAa", - "value": "false" + "name": "TC_PRIVACY", + "value": "1%40006%7C86%7C3315%40%40%402524608000000%2C2524608000000%2C2524608000000%40" } ] }, "domains": [ - "asus.com" + "credit-agricole.fr" ], - "id": "8c949b75-4c7b-4559-8ade-780064af370a", - "last_modified": 1713281881428 + "id": "f643be2a-b805-4ab0-9e67-929419e5c7c7", + "last_modified": 1714811639996 }, { "click": { - "optOut": ".sp_choice_type_13", - "presence": ".message-container > #notice", - "runContext": "child" + "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": 1713199742998, - "cookies": {}, "domains": [ - "aktuality.sk", - "sky.it", - "azet.sk", - "bloomberg.com", - "formula1.com" + "credit-agricole.de" ], - "id": "ae8f7761-35ff-45b2-92df-7868ca288ad2", - "last_modified": 1713281881424 + "id": "1e12c729-34ff-4aa5-9317-d19309affd2c", + "last_modified": 1714811639992 }, { "click": { - "optIn": "#c-bns #c-p-bn", - "optOut": "#c-bns button.grey", - "presence": "#cm" + "optIn": ".accept", + "optOut": ".deny", + "presence": "#tarteaucitronAlertBig" }, - "schema": 1711039008141, + "schema": 1714608006998, "cookies": { "optOut": [ { - "name": "cc_cookie", - "value": "{\"level\":[\"necessary\"],\"revision\":0,\"data\":null,\"rfc_cookie\":false}" + "name": "cookie_manager", + "value": "!atinternet=false!recaptcha=false!addthis=false!linkedin=false!twitter=false!ezplatform=true!youtube=false!hidebanner=true" } ] }, "domains": [ - "yazio.com" + "credit-agricole.com" ], - "id": "B8CB497B-9E12-49A7-BA2A-B7842CAEDFC3", - "last_modified": 1711550955136 + "id": "1f0a3536-5b09-426a-b6e6-b902c556cb8a", + "last_modified": 1714811639989 }, { - "click": { - "optIn": "#rgpd-btn-index-accept", - "optOut": "#rgpd-btn-index-continue", - "presence": "#modalTpl" + "schema": 1714608006998, + "cookies": { + "optIn": [ + { + "name": "_cookies_v2", + "value": "1" + } + ] }, - "schema": 1711039008141, "domains": [ - "rueducommerce.fr" + "blablacar.com.br", + "blablacar.com.tr", + "blablacar.com.ua", + "blablacar.in", + "blablacar.mx", + "blablacar.rs", + "blablacar.ru" ], - "id": "BC3582FC-C5FA-4743-85E8-7E46F67629AB", - "last_modified": 1711550955133 + "id": "2f4e1235-a360-46ca-bf26-8b09645ee3d5", + "last_modified": 1714811639986 }, { "click": { - "optIn": "#cookieConsentAcceptButton", - "optOut": "#cookieConsentRefuseButton", - "presence": "#cookieConsentBanner" + "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": [ - "ldlc.com", - "ldlc.pro", - "materiel.net" + "mediamarktsaturn.com" ], - "id": "4A767353-98B9-4284-857A-D98DC3ECDFE1", - "last_modified": 1711550955129 + "id": "6f85da65-e44e-4d58-b87c-3e31861de3e0", + "last_modified": 1714811639982 }, { "click": { - "optIn": "#header_tc_privacy_button_3", - "optOut": "#header_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": [ - "ovh.com", - "ovhcloud.com", - "ovhtelecom.fr" + "mediamarkt.at", + "mediamarkt.be", + "mediamarkt.de", + "mediamarkt.es", + "mediamarkt.nl", + "mediamarkt.pl", + "saturn.de" ], - "id": "17B1F270-F499-451C-AED5-5C737106F003", - "last_modified": 1711550955125 + "id": "2a2b8102-d276-4ece-afbd-005e8e917d18", + "last_modified": 1714811639978 }, { "click": { - "optIn": "#popin_tc_privacy_button_2", - "optOut": "#optout_link", - "presence": "#tc-privacy-wrapper" + "optIn": "#acceptAllQuick", + "optOut": "#rejectAllQuick", + "presence": "#gdpr-component", + "runContext": "child" + }, + "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" + } + ] }, - "schema": 1711039008141, "domains": [ - "laredoute.fr" + "t-mobile.cz" ], - "id": "9022E9FE-2DC2-48DD-BE4A-EFA8A2C81E2B", - "last_modified": 1711550955121 + "id": "c7f03541-c93e-4939-a640-7c686d595986", + "last_modified": 1714811639975 }, { - "click": { - "optIn": "#popin_tc_privacy_button_2", - "optOut": "#popin_tc_privacy_button", - "presence": "#tc-privacy-wrapper" + "schema": 1714780808679, + "cookies": { + "optOut": [ + { + "name": "orange_cookieconsent_dismissed", + "value": "no" + } + ] }, - "schema": 1711039008141, "domains": [ - "quechoisir.org", - "quechoisirensemble.fr" + "orange.sn" ], - "id": "5D50AA8D-D00E-4A51-8D32-64965A0575CA", - "last_modified": 1711550955117 + "id": "24350444-6b01-46a5-b8a4-99f4d417f08f", + "last_modified": 1714811639972 }, { "click": { - "optIn": "button#footer_tc_privacy_button_3", - "optOut": "button#footer_tc_privacy_button_2", - "presence": "div#tc-privacy-wrapper" + "optIn": ".js-consent-all-submit", + "optOut": ".js-consent-bypass-button", + "presence": ".fancybox-type-html" + }, + "schema": 1714780808679, + "cookies": { + "optOut": [ + { + "name": "consent", + "value": "bypass" + } + ] }, - "schema": 1711039008141, - "cookies": {}, "domains": [ - "labanquepostale.fr" + "orange.jobs" ], - "id": "6c1ebd2b-867a-40a5-8184-0ead733eae69", - "last_modified": 1711550955113 + "id": "2e026e27-1356-40c8-a25c-24fbe4bf8af4", + "last_modified": 1714811639968 }, { "click": { - "optIn": "button.orejime-Notice-saveButton", - "optOut": "button.orejime-Notice-declineButton", - "presence": "div.orejime-Notice" + "optIn": "#consent_optin", + "optOut": "#consent_optout", + "presence": "#__tealiumGDPRecModal" }, - "schema": 1711039008141, - "domains": [ - "service-public.fr" - ], - "id": "7293dc4c-1d3d-4236-84a6-3c5cb3def55a", - "last_modified": 1711550955109 - }, - { - "schema": 1711039008141, + "schema": 1714780808679, "cookies": { - "optIn": [ - { - "name": "cb", - "value": "1_2055_07_11_" - } - ], "optOut": [ { - "name": "cb", - "value": "1_2055_07_11_2-3" + "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": [ - "threads.net" + "orange.es" ], - "id": "c232eab8-f55a-436a-8033-478746d05d98", - "last_modified": 1711550955105 + "id": "1626f70d-7761-467c-b3ed-56e324786902", + "last_modified": 1714811639965 }, { "click": { - "optIn": "button#onetrust-accept-btn-handler", - "optOut": ".ot-pc-refuse-all-handler, #onetrust-reject-all-handler", + "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": [ + "decathlon.si", + "t-mobile.pl" + ], + "id": "83ad4c2f-e59a-4295-a342-5db40fb81763", + "last_modified": 1714811639927 + }, + { + "click": { + "optIn": ".ch2-allow-all-btn", + "optOut": ".ch2-deny-all-btn", + "presence": ".ch2-dialog" + }, + "schema": 1714608006998, + "domains": [ + "cookiehub.com", + "semrush.com", + "vodafone.is" + ], + "id": "305b6c0d-5b66-4b3f-bf0f-fb85db21fe60", + "last_modified": 1714811639924 + }, + { + "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": { + "optOut": [ + { + "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": "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": [ + "vodafone.cz" + ], + "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": 1711039008141, + "schema": 1714780808679, "cookies": {}, "domains": [ - "espncricinfo.com", - "blackboard.com", - "roche.com", + "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": { + "optIn": "button#onetrust-accept-btn-handler", + "optOut": ".ot-pc-refuse-all-handler, #onetrust-reject-all-handler", + "presence": "div#onetrust-consent-sdk" + }, + "schema": 1714780808679, + "cookies": {}, + "domains": [ + "espncricinfo.com", + "blackboard.com", + "roche.com", "apnews.com", "nationalgeographic.com", "espn.com", @@ -444,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", @@ -466,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", @@ -475,60 +1119,828 @@ "superuser.com", "carrefour.fr" ], - "id": "6c7366a0-4762-47b9-8eeb-04e86cc7a0cc", - "last_modified": 1711550955100 + "id": "6c7366a0-4762-47b9-8eeb-04e86cc7a0cc", + "last_modified": 1714811639877 + }, + { + "click": { + "optIn": "button#didomi-notice-agree-button", + "optOut": "button#didomi-notice-disagree-button", + "presence": "div#didomi-host" + }, + "schema": 1714780809581, + "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", + "rtl.fr", + "6play.fr", + "marianne.net" + ], + "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": { + "optIn": "button#didomi-notice-agree-button", + "optOut": "span.didomi-continue-without-agreeing", + "presence": "div#didomi-popup" + }, + "schema": 1714780808679, + "cookies": {}, + "domains": [ + "theconversation.com", + "leparisien.fr", + "lesechos.fr", + "numerama.com", + "jofogas.hu", + "orange.com", + "orange.fr", + "meteofrance.com", + "subito.it", + "hasznaltauto.hu", + "zdnet.de", + "zdnet.fr", + "intersport.fr", + "leboncoin.fr", + "boursorama.com", + "boursobank.com", + "intermarche.com", + "bricomarche.com", + "entrepot-du-bricolage.fr", + "lesnumeriques.com", + "seloger.com", + "societe.com", + "manomano.fr", + "pagesjaunes.fr", + "sncf-connect.com", + "largus.fr" + ], + "id": "c1d7be10-151e-4a66-b83b-31a762869a97", + "last_modified": 1714811639831 + }, + { + "schema": 1714780808679, + "cookies": { + "optOut": [ + { + "name": "gdpr", + "value": "1" + } + ] + }, + "domains": [ + "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": "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": { + "optIn": "button#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll", + "optOut": "button#CybotCookiebotDialogBodyButtonDecline", + "presence": "div#CybotCookiebotDialog" + }, + "schema": 1714780808679, + "cookies": {}, + "domains": [ + "intermarche.be", + "intermarche.pl", + "intermarche.pt", + "intersport.hr", + "intersport.it", + "intersport.pl", + "intersport.si", + "issuu.com", + "telekom.ro", + "voetbal24.be", + "weforum.org" + ], + "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", + "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": "#footer_tc_privacy_button", - "optOut": "#footer_tc_privacy_button_2", - "presence": ".tc-privacy-wrapper.tc-privacy-override.tc-privacy-wrapper" + "optIn": "#popin_tc_privacy_button_2", + "optOut": "#optout_link", + "presence": "#tc-privacy-wrapper" }, "schema": 1711039008141, "domains": [ - "arte.tv", - "urssaf.fr" + "laredoute.fr" ], - "id": "cc818b41-7b46-46d3-9b17-cf924cbe87d1", - "last_modified": 1711550955095 + "id": "9022E9FE-2DC2-48DD-BE4A-EFA8A2C81E2B", + "last_modified": 1711550955121 }, { "click": { - "optIn": "button#didomi-notice-agree-button", - "optOut": "span.didomi-continue-without-agreeing", - "presence": "div#didomi-popup" + "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": [ - "theconversation.com", - "leparisien.fr", - "lesechos.fr", - "numerama.com", - "jofogas.hu", - "orange.fr", - "meteofrance.com", - "subito.it", - "hasznaltauto.hu", - "zdnet.de", - "intersport.fr", - "decathlon.fr", - "leboncoin.fr", - "boursorama.com", - "boursobank.com", - "intermarche.com", - "bricomarche.com", - "entrepot-du-bricolage.fr", - "lesnumeriques.com", - "seloger.com", - "societe.com", - "manomano.fr", - "pagesjaunes.fr", - "sncf-connect.com", - "largus.fr" + "labanquepostale.fr" ], - "id": "c1d7be10-151e-4a66-b83b-31a762869a97", - "last_modified": 1711550955088 + "id": "6c1ebd2b-867a-40a5-8184-0ead733eae69", + "last_modified": 1711550955113 + }, + { + "click": { + "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": { @@ -798,108 +2210,6 @@ "id": "7AF1C34C-750E-44FC-A3C4-31FB61EBF71B", "last_modified": 1710331175376 }, - { - "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": { - "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\"]", @@ -1099,75 +2409,24 @@ "presence": "#kick__logi-container" }, "schema": 1708699541450, - "domains": [ - "kicker.de" - ], - "id": "E220B441-CAE6-4E4B-9F5D-BA167AE06812", - "last_modified": 1708772697230 - }, - { - "click": { - "optIn": "#cookieBtnAll", - "optOut": "#cookieBtnContinue", - "presence": ".cookie_consent_withings" - }, - "schema": 1708699541450, - "domains": [ - "withings.com" - ], - "id": "0132691F-247B-4CB9-BF9B-0EB61B7435F3", - "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": [ + "kicker.de" + ], + "id": "E220B441-CAE6-4E4B-9F5D-BA167AE06812", + "last_modified": 1708772697230 + }, + { + "click": { + "optIn": "#cookieBtnAll", + "optOut": "#cookieBtnContinue", + "presence": ".cookie_consent_withings" }, + "schema": 1708699541450, "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" + "withings.com" ], - "id": "8f401b10-02b6-4e05-88fa-c37012d4c8c0", - "last_modified": 1708772697214 + "id": "0132691F-247B-4CB9-BF9B-0EB61B7435F3", + "last_modified": 1708772697226 }, { "click": {}, @@ -1891,120 +3150,6 @@ "id": "bcf09922-64d7-4879-974a-119e8bd05fee", "last_modified": 1702633230645 }, - { - "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\"]", @@ -2036,28 +3181,6 @@ "id": "23710ccf-85e6-450e-953d-7ffc3f80bbf0", "last_modified": 1702633230618 }, - { - "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", @@ -2337,20 +3460,6 @@ "id": "0AB3A01E-10A9-4509-9350-6EF61AB223F3", "last_modified": 1700826062716 }, - { - "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", @@ -2365,21 +3474,6 @@ "id": "536f8027-111f-4798-a9ef-745b30fe65c8", "last_modified": 1700826062709 }, - { - "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", @@ -2538,20 +3632,6 @@ "id": "0caa99d5-2b67-44e1-bd45-509d8e785071", "last_modified": 1700826062661 }, - { - "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", @@ -2911,22 +3991,6 @@ "id": "2625ca4e-dd77-4e72-a6d0-c959f3575ad8", "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", @@ -3010,22 +4074,6 @@ "id": "didomi", "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", @@ -3150,40 +4198,18 @@ { "name": "marketing_consent", "value": "denied" - }, - { - "name": "personalization_consent", - "value": "denied" - } - ] - }, - "domains": [ - "arbeitsagentur.de" - ], - "id": "A04DD123-A10F-4665-9C2B-2FB5CC293F42", - "last_modified": 1697710931635 - }, - { - "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|" + "name": "personalization_consent", + "value": "denied" } ] }, "domains": [ - "mediamarkt.de", - "saturn.de" + "arbeitsagentur.de" ], - "id": "2A2B8102-D276-4ECE-AFBD-005E8E917D18", - "last_modified": 1697710931632 + "id": "A04DD123-A10F-4665-9C2B-2FB5CC293F42", + "last_modified": 1697710931635 }, { "click": { @@ -3197,34 +4223,6 @@ "id": "D168AF87-F481-4AD7-BE78-28A59F798406", "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": { @@ -3322,32 +4320,6 @@ "id": "e3968548-ebca-4d6b-b8cf-5707e90fb612", "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": { @@ -3448,26 +4420,6 @@ "id": "788ed05e-cf93-41a8-b2e5-c5571d855232", "last_modified": 1695037595328 }, - { - "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", @@ -4208,23 +5160,6 @@ "id": "d0b8bc2c-c633-4628-aa39-e840060efc2e", "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", @@ -4634,19 +5569,6 @@ "id": "5a3bf87a-62c2-40b2-bfbb-b2dcf8c23f84", "last_modified": 1676903765347 }, - { - "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", @@ -4994,19 +5916,6 @@ "id": "7e5d072f-ea5a-4a82-9ea4-3bbf06d5cc8d", "last_modified": 1676903765237 }, - { - "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", @@ -5307,19 +6216,6 @@ "id": "803fbd5e-3734-4cf6-a878-5ffe24ec6809", "last_modified": 1676903765155 }, - { - "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", @@ -5491,20 +6387,6 @@ "id": "84a097a3-5cd1-448a-afcf-4be950bc5756", "last_modified": 1676903765100 }, - { - "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", @@ -5699,20 +6581,6 @@ "id": "f6f48ce2-0487-4003-b1c7-dfcd37def8d7", "last_modified": 1676903765026 }, - { - "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", @@ -5727,19 +6595,6 @@ "id": "9ea83ecf-3e82-4976-80e7-86872d7e4aeb", "last_modified": 1676903765019 }, - { - "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", @@ -6654,26 +7509,6 @@ "id": "e5706488-f2e9-47bd-a178-4d569ca26ce8", "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", @@ -7781,22 +8616,6 @@ "id": "f1ddc6f6-8927-4205-8003-1f6e84ae22b0", "last_modified": 1670498157329 }, - { - "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]", @@ -7853,27 +8672,6 @@ "id": "c2f6b05e-73dc-4df4-bb54-68215bb9f176", "last_modified": 1670498157308 }, - { - "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, @@ -7926,23 +8724,6 @@ "id": "c5243e7c-eb86-4a9d-947c-7129e99fbd72", "last_modified": 1670498157243 }, - { - "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", @@ -8263,20 +9044,6 @@ "id": "3c03e0ec-aa84-48a1-83ca-0bf07d24e20e", "last_modified": 1670498156807 }, - { - "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", @@ -8781,20 +9548,6 @@ "id": "86b4e119-8e5c-471d-bf80-c65489277135", "last_modified": 1670498156241 }, - { - "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", @@ -8969,19 +9722,6 @@ "id": "944c0cf0-271b-41f8-b0ca-3fa67db7af29", "last_modified": 1670498156035 }, - { - "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", @@ -9373,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": 1713281881442 + "timestamp": 1714811640008 } diff --git a/services/settings/dumps/main/devtools-compatibility-browsers.json b/services/settings/dumps/main/devtools-compatibility-browsers.json index 1fa98c8aa1..b14dc1f005 100644 --- a/services/settings/dumps/main/devtools-compatibility-browsers.json +++ b/services/settings/dumps/main/devtools-compatibility-browsers.json @@ -1,5 +1,50 @@ { "data": [ + { + "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": "25.0", + "browserid": "samsunginternet_android", + "id": "91fb10f8-ce37-4722-9eac-296c08d297c6", + "last_modified": 1714638388565 + }, + { + "name": "Edge", + "schema": 1714521906580, + "status": "current", + "version": "124", + "browserid": "edge", + "id": "3837dc37-38b7-483b-82b3-c5593e7a4c91", + "last_modified": 1714638388557 + }, { "name": "Chrome", "schema": 1713917106736, @@ -162,15 +207,6 @@ "id": "a308f3c2-cc19-4a1e-825f-898696606328", "last_modified": 1712840749681 }, - { - "name": "Edge", - "schema": 1712707507922, - "status": "planned", - "version": "126", - "browserid": "edge", - "id": "c8bf4918-03b7-4be2-bf75-4d6139dbd7c9", - "last_modified": 1712840749678 - }, { "name": "Safari", "schema": 1712707507975, @@ -189,33 +225,6 @@ "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 - }, - { - "name": "Edge", - "schema": 1712707507867, - "status": "nightly", - "version": "125", - "browserid": "edge", - "id": "f1147d5f-d690-43d0-879d-117c6ca24a16", - "last_modified": 1712840749665 - }, - { - "name": "Edge", - "schema": 1711497907820, - "status": "current", - "version": "123", - "browserid": "edge", - "id": "d0c3d84f-8d27-455b-8746-7e25607e5b78", - "last_modified": 1711547229120 - }, { "name": "Safari", "schema": 1709769903331, @@ -252,15 +261,6 @@ "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, @@ -298,5 +298,5 @@ "last_modified": 1665656484764 } ], - "timestamp": 1713943930239 + "timestamp": 1715003394961 } 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 5a8be8dfeb..ec2e2cd829 100644 --- a/services/settings/dumps/main/search-config-v2.json +++ b/services/settings/dumps/main/search-config-v2.json @@ -1,525 +1,283 @@ { "data": [ { - "base": { - "name": "DuckDuckGo", - "urls": { - "search": { - "base": "https://duckduckgo.com/", - "params": [ - { - "name": "t", - "value": "{partnerCode}" - } - ], - "searchTermParamName": "q" - }, - "suggestions": { - "base": "https://ac.duckduckgo.com/ac/", - "params": [ - { - "name": "type", - "value": "list" - } + "globalDefault": "google", + "id": "f3891684-2348-4e7a-9765-0c5d2d0ab1b9", + "last_modified": 1702906502241, + "recordType": "defaultEngines", + "schema": 1702901837584, + "specificDefaults": [ + { + "default": "baidu", + "environment": { + "locales": [ + "zh-CN" ], - "searchTermParamName": "q" + "regions": [ + "cn" + ] } }, - "aliases": [ - "duckduckgo", - "ddg" - ], - "partnerCode": "ffab", - "classification": "general" - }, - "schema": 1713282081098, - "variants": [ { + "default": "baidu", "environment": { - "allRegionsAndLocales": true - }, - "subVariants": [ - { - "environment": { - "channels": [ - "esr" - ] - }, - "partnerCode": "ftsa", - "telemetrySuffix": "esr" - } - ] + "distributions": [ + "MozillaOnline" + ] + } }, { + "default": "1und1", "environment": { "distributions": [ - "mint-001" + "1und1" ] - }, - "partnerCode": "lm", - "telemetrySuffix": "lm" - } - ], - "identifier": "ddg", - "recordType": "engine", - "id": "04e99a38-13ee-47d8-8aa4-64482b3dea99", - "last_modified": 1713282817053 - }, - { - "base": { - "name": "Google", - "urls": { - "search": { - "base": "https://www.google.com/search", - "params": [ - { - "name": "client", - "value": "{partnerCode}" - }, - { - "name": "channel", - "experimentConfig": "google_channel_row" - } - ], - "searchTermParamName": "q" - }, - "trending": { - "base": "https://www.google.com/complete/search", - "method": "GET", - "params": [ - { - "name": "client", - "value": "firefox" - }, - { - "name": "channel", - "value": "ftr" - } - ], - "searchTermParamName": "q" - }, - "suggestions": { - "base": "https://www.google.com/complete/search", - "params": [ - { - "name": "client", - "value": "firefox" - }, - { - "name": "channel", - "experimentConfig": "search_rich_suggestions" - } - ], - "searchTermParamName": "q" } }, - "aliases": [ - "google" - ], - "partnerCode": "firefox-b-d", - "classification": "general" - }, - "schema": 1713282083062, - "variants": [ { + "default": "webde", "environment": { - "allRegionsAndLocales": true - }, - "subVariants": [ - { - "environment": { - "channels": [ - "esr" - ] - }, - "partnerCode": "firefox-b-e", - "telemetrySuffix": "b-e" - } - ], - "telemetrySuffix": "b-d" + "distributions": [ + "webde" + ] + } }, { - "urls": { - "search": { - "params": [] - } - }, + "default": "mailcom", "environment": { - "regions": [ - "ru", - "tr", - "by", - "kz" + "distributions": [ + "mail.com" ] - }, - "telemetrySuffix": "com-nocodes" + } }, { - "urls": { - "search": { - "params": [ - { - "name": "client", - "value": "{partnerCode}" - }, - { - "name": "channel", - "experimentConfig": "google_channel_us" - } - ] - } - }, + "default": "qwant", "environment": { - "regions": [ - "us" + "distributions": [ + "qwant-001", + "qwant-002" ] - }, - "partnerCode": "firefox-b-1-d", - "subVariants": [ - { - "environment": { - "regions": [ - "us" - ], - "channels": [ - "esr" - ] - }, - "partnerCode": "firefox-b-1-e", - "telemetrySuffix": "b-1-e" - } - ], - "telemetrySuffix": "b-1-d" + } }, { - "urls": { - "search": { - "params": [ - { - "name": "client", - "value": "{partnerCode}" - }, - { - "name": "channel", - "value": "fs" - } - ] - } - }, + "default": "gmx-de", "environment": { "distributions": [ - "canonical", - "canonical-001" + "gmx" ] - }, - "partnerCode": "ubuntu", - "telemetrySuffix": "canonical" + } }, { - "urls": { - "search": { - "params": [ - { - "name": "client", - "value": "{partnerCode}" - }, - { - "name": "channel", - "value": "fs" - } - ] - } - }, + "default": "gmx-en-GB", "environment": { "distributions": [ - "canonical-002" + "gmxcouk" ] - }, - "partnerCode": "ubuntu-sn", - "telemetrySuffix": "ubuntu-sn" + } }, { + "default": "gmx-es", "environment": { "distributions": [ - "mint-001" + "gmxes" ] - }, - "partnerCode": "firefox-b-lm", - "telemetrySuffix": "b-lm" + } }, { + "default": "gmx-fr", "environment": { - "regions": [ - "us" - ], "distributions": [ - "mint-001" + "gmxfr" ] - }, - "partnerCode": "firefox-b-1-lm", - "telemetrySuffix": "b-1-lm" + } } - ], - "identifier": "google", - "recordType": "engine", - "id": "7ace4aa1-e762-4f4b-87b9-b23b3c3a930b", - "last_modified": 1713282817051 + ] }, { "base": { - "name": "Bing", + "classification": "unknown", + "name": "1&1 Suche", "urls": { "search": { - "base": "https://www.bing.com/search", + "base": "https://go.1und1.de/br/moz_search_web/", "params": [ { - "name": "pc", - "value": "{partnerCode}" - }, - { - "name": "form", - "searchAccessPoint": { - "newtab": "MOZTSB", - "homepage": "MOZSPG", - "searchbar": "MOZSBR", - "addressbar": "MOZLBR", - "contextmenu": "MOZCON" - } + "name": "enc", + "value": "UTF-8" } ], "searchTermParamName": "q" }, - "trending": { - "base": "https://www.bing.com/osjson.aspx" - }, "suggestions": { - "base": "https://www.bing.com/osjson.aspx", + "base": "https://suggestplugin.ui-portal.de/s", "params": [ { - "name": "form", - "value": "OSDJAS" + "name": "brand", + "value": "1und1" + }, + { + "name": "origin", + "value": "br_splugin_ff_sg" } ], - "searchTermParamName": "query" + "searchTermParamName": "q" } - }, - "aliases": [ - "bing" - ], - "partnerCode": "MOZI", - "classification": "general" + } }, - "schema": 1713199744323, + "id": "e870e51d-efed-41d3-8d65-f833ee8e9d96", + "identifier": "1und1", + "last_modified": 1702906502336, + "recordType": "engine", + "schema": 1702901817337, "variants": [ { "environment": { - "locales": [ - "ach", - "af", - "an", - "ar", - "ast", - "az", - "bn", - "bs", - "ca", - "ca-valencia", - "cak", - "cs", - "cy", - "da", - "de", - "dsb", - "el", - "en-CA", - "en-GB", - "en-US", - "eo", - "es-CL", - "es-ES", - "es-MX", - "eu", - "fa", - "ff", - "fi", - "fr", - "fur", - "fy-NL", - "gd", - "gl", - "gn", - "gu-IN", - "he", - "hi-IN", - "hr", - "hsb", - "hy-AM", - "ia", - "id", - "is", - "it", - "ja", - "ja-JP-macos", - "ka", - "kab", - "km", - "kn", - "lij", - "lo", - "lt", - "meh", - "mk", - "ms", - "my", - "nb-NO", - "ne-NP", - "nl", - "nn-NO", - "oc", - "pa-IN", - "pt-BR", - "rm", - "ro", - "sc", - "sco", - "son", - "sq", - "sr", - "sv-SE", - "te", - "th", - "tl", - "tr", - "trs", - "uk", - "ur", - "uz", - "wo", - "xh", - "zh-CN" + "distributions": [ + "1und1" ] - }, - "subVariants": [ - { - "environment": { - "channels": [ - "esr" - ] - }, - "partnerCode": "MOZR", - "telemetrySuffix": "esr" - } - ] + } } - ], - "identifier": "bing", - "recordType": "engine", - "id": "05645095-d26e-4f20-9137-f24a14a23f28", - "last_modified": 1713282817048 + ] }, { "base": { - "name": "Qwant", + "classification": "unknown", + "name": "Allegro", "urls": { "search": { - "base": "https://www.qwant.com/", - "params": [ - { - "name": "client", - "value": "{partnerCode}" - } - ], - "searchTermParamName": "q" - }, - "suggestions": { - "base": "https://api.qwant.com/api/suggest/", + "base": "https://allegro.pl/listing", "params": [ { - "name": "client", - "value": "opensearch" + "name": "sourceid", + "value": "Mozilla-search" } ], - "searchTermParamName": "q" + "searchTermParamName": "string" } - }, - "aliases": [ - "qwant" - ], - "partnerCode": "brz-moz", - "classification": "general" + } }, - "schema": 1710460806956, + "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": [ - { - "order": [ - "baidu", - "bing", - "google", - "wikipedia*" - ], - "environment": { - "distributions": [ - "MozillaOnline" - ] + "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": [ - "qwant", - "qwantjr" - ], "environment": { - "distributions": [ - "qwant-001", - "qwant-002" + "locales": [ + "az" ] } } - ], - "schema": 1707824831520, - "recordType": "engineOrders", - "id": "3e1fed64-5ec7-4b1c-bedc-741fe3c59bc3", - "last_modified": 1707833224345 + ] }, { "base": { + "aliases": [ + "百度", + "baidu" + ], + "classification": "general", "name": "百度", "urls": { "search": { @@ -546,13 +304,12 @@ ], "searchTermParamName": "wd" } - }, - "aliases": [ - "百度", - "baidu" - ], - "classification": "general" + } }, + "id": "ad58537f-f397-46ec-a1a8-935e12f0aab6", + "identifier": "baidu", + "last_modified": 1702906502749, + "recordType": "engine", "schema": 1702901740286, "variants": [ { @@ -562,112 +319,116 @@ ] } } - ], - "identifier": "baidu", - "recordType": "engine", - "id": "ad58537f-f397-46ec-a1a8-935e12f0aab6", - "last_modified": 1702906502749 + ] }, { "base": { - "name": "Wikipedia (en)", + "aliases": [ + "bing" + ], + "classification": "general", + "name": "Bing", + "partnerCode": "MOZI", "urls": { "search": { - "base": "https://en.wikipedia.org/wiki/Special:Search", + "base": "https://www.bing.com/search", "params": [ { - "name": "sourceid", - "value": "Mozilla-search" + "name": "pc", + "value": "{partnerCode}" + }, + { + "name": "form", + "searchAccessPoint": { + "addressbar": "MOZLBR", + "contextmenu": "MOZCON", + "homepage": "MOZSPG", + "newtab": "MOZTSB", + "searchbar": "MOZSBR" + } } ], - "searchTermParamName": "search" + "searchTermParamName": "q" }, "suggestions": { - "base": "https://en.wikipedia.org/w/api.php", + "base": "https://www.bing.com/osjson.aspx", "params": [ { - "name": "action", - "value": "opensearch" + "name": "form", + "value": "OSDJAS" } ], - "searchTermParamName": "search" + "searchTermParamName": "query" + }, + "trending": { + "base": "https://www.bing.com/osjson.aspx" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901740904, + "id": "05645095-d26e-4f20-9137-f24a14a23f28", + "identifier": "bing", + "last_modified": 1713282817048, + "recordType": "engine", + "schema": 1713199744323, "variants": [ { "environment": { - "excludedLocales": [ + "locales": [ + "ach", "af", "an", "ar", "ast", "az", - "be", - "bg", "bn", - "br", "bs", "ca", "ca-valencia", + "cak", "cs", "cy", "da", "de", "dsb", "el", + "en-CA", + "en-GB", + "en-US", "eo", - "cak", - "es-AR", "es-CL", "es-ES", "es-MX", - "trs", - "et", "eu", "fa", + "ff", "fi", "fr", - "ff", - "son", + "fur", "fy-NL", - "ga-IE", "gd", "gl", "gn", "gu-IN", - "hi-IN", "he", + "hi-IN", "hr", "hsb", - "hu", "hy-AM", "ia", "id", "is", + "it", "ja", "ja-JP-macos", "ka", "kab", - "kk", "km", "kn", - "ko", - "it", - "fur", - "sc", "lij", "lo", "lt", - "ltg", - "lv", + "meh", "mk", - "mr", "ms", "my", "nb-NO", @@ -676,2162 +437,2740 @@ "nn-NO", "oc", "pa-IN", - "pl", - "szl", "pt-BR", - "pt-PT", "rm", "ro", - "ru", - "si", - "sk", - "sl", + "sc", + "sco", + "son", "sq", "sr", "sv-SE", - "ta", "te", "th", "tl", "tr", + "trs", "uk", "ur", "uz", - "vi", "wo", - "zh-CN", - "zh-TW" + "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": { + "locales": [ + "nb-NO", + "nn-NO" + ] + } + } + ] + }, + { + "base": { + "classification": "unknown", + "name": "Ceneje.si", + "urls": { + "search": { + "base": "https://www.ceneje.si/search_new.aspx", + "params": [ + { + "name": "FF-SearchBox", + "value": "1" + } + ], + "searchTermParamName": "q" + } + } + }, + "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": "s", + "value": "ff" + }, + { + "name": "utm_source", + "value": "firefox" + } + ], + "searchTermParamName": "query" + }, + "suggestions": { + "base": "https://coccoc.com/composer/autocomplete", + "params": [ + { + "name": "of", + "value": "b" + }, + { + "name": "s", + "value": "ff" + } ], - "allRegionsAndLocales": true + "searchTermParamName": "q" } } - ], - "identifier": "wikipedia", + }, + "id": "20104daa-cb8a-40b9-a8c5-2433f4476c3e", + "identifier": "coccoc", + "last_modified": 1702906502314, "recordType": "engine", - "id": "7f6d23c2-191e-483e-af3a-ce6451e3a8dd", - "last_modified": 1702906502744 + "schema": 1702901821664, + "variants": [ + { + "environment": { + "locales": [ + "vi" + ] + } + } + ] }, { "base": { - "name": "Wikipedia (af)", + "classification": "unknown", + "name": "다음", "urls": { "search": { - "base": "https://af.wikipedia.org/wiki/Spesiaal:Soek", + "base": "https://search.daum.net/search", "params": [ { - "name": "sourceid", - "value": "Mozilla-search" + "name": "w", + "value": "tot" + }, + { + "name": "nil_ch", + "value": "ffsr" } ], - "searchTermParamName": "search" + "searchTermParamName": "q" }, "suggestions": { - "base": "https://af.wikipedia.org/w/api.php", + "base": "https://suggest.search.daum.net/sushi/opensearch/pc", "params": [ { - "name": "action", - "value": "opensearch" + "name": "DA", + "value": "JU2" } ], - "searchTermParamName": "search" + "searchTermParamName": "q" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901741515, + "id": "3330e927-6733-4239-9738-b41c5c460b11", + "identifier": "daum-kr", + "last_modified": 1702906502311, + "recordType": "engine", + "schema": 1702901822275, "variants": [ { "environment": { "locales": [ - "af" + "ko" ] } } - ], - "identifier": "wikipedia-af", - "recordType": "engine", - "id": "9dcc6d57-1b00-4cdc-bc11-d70593a3da30", - "last_modified": 1702906502739 + ] }, { "base": { - "name": "Biquipedia (an)", + "aliases": [ + "duckduckgo", + "ddg" + ], + "classification": "general", + "name": "DuckDuckGo", + "partnerCode": "ffab", "urls": { "search": { - "base": "https://an.wikipedia.org/wiki/Especial:Mirar", + "base": "https://duckduckgo.com/", "params": [ { - "name": "sourceid", - "value": "Mozilla-search" + "name": "t", + "value": "{partnerCode}" } ], - "searchTermParamName": "search" + "searchTermParamName": "q" }, "suggestions": { - "base": "https://an.wikipedia.org/w/api.php", + "base": "https://ac.duckduckgo.com/ac/", "params": [ { - "name": "action", - "value": "opensearch" + "name": "type", + "value": "list" } ], - "searchTermParamName": "search" + "searchTermParamName": "q" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901742155, + "id": "04e99a38-13ee-47d8-8aa4-64482b3dea99", + "identifier": "ddg", + "last_modified": 1713282817053, + "recordType": "engine", + "schema": 1713282081098, "variants": [ { "environment": { - "locales": [ - "an" + "allRegionsAndLocales": true + }, + "subVariants": [ + { + "environment": { + "channels": [ + "esr" + ] + }, + "partnerCode": "ftsa", + "telemetrySuffix": "esr" + } + ] + }, + { + "environment": { + "distributions": [ + "mint-001" ] - } + }, + "partnerCode": "lm", + "telemetrySuffix": "lm" } - ], - "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.com/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": "711-53200-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": "0" + }, + { + "name": "fmt", + "value": "osr" } ], - "searchTermParamName": "search" + "searchTermParamName": "kwd" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901742756, + "id": "d8b7ed81-00f3-478a-a835-dc0677d7190a", + "identifier": "ebay", + "last_modified": 1702906502450, + "recordType": "engine", + "schema": 1702901794691, "variants": [ { "environment": { "locales": [ - "ar" + "en-US" + ], + "regions": [ + "us" ] } } - ], - "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.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://ast.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": 1702901743369, + "id": "8dee7454-6c6c-4b22-a411-4e474c7afbb3", + "identifier": "ebay-at", + "last_modified": 1702906502421, + "recordType": "engine", + "schema": 1702901800849, "variants": [ { "environment": { "locales": [ - "ast" + "de", + "dsb", + "hsb" + ], + "regions": [ + "at" ] } } - ], - "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.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://az.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": 1702901743987, + "id": "e5a64fe0-2cb9-4b22-83d3-4e529c3702a9", + "identifier": "ebay-au", + "last_modified": 1702906502429, + "recordType": "engine", + "schema": 1702901799015, "variants": [ { "environment": { "locales": [ - "az" + "cy", + "en-GB", + "en-US", + "gd" + ], + "regions": [ + "au" ] } } - ], - "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.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://bg.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": 1702901744580, + "id": "5f40614e-4fc6-4dee-a897-07b258e00820", + "identifier": "ebay-be", + "last_modified": 1702906502442, + "recordType": "engine", + "schema": 1702901796541, "variants": [ { "environment": { "locales": [ - "bg" + "br", + "en-US", + "fr", + "wo", + "fy-NL", + "nl" + ], + "regions": [ + "be" ] } } - ], - "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.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://br.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": 1702901745178, + "id": "336d7fa9-7579-4981-bfb0-024c6c5f977d", + "identifier": "ebay-ca", + "last_modified": 1715090108516, + "recordType": "engine", + "schema": 1714065170548, "variants": [ { "environment": { "locales": [ - "br" + "br", + "en-US", + "fr", + "wo" + ], + "regions": [ + "ca" + ] + } + }, + { + "environment": { + "excludedRegions": [ + "pl" + ], + "locales": [ + "en-CA" ] } } - ], - "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.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://bs.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": 1702901745796, + "id": "8d8484a2-b856-4edd-93d7-c53a7aaca6e1", + "identifier": "ebay-ch", + "last_modified": 1715090108518, + "recordType": "engine", + "schema": 1714498577167, "variants": [ { "environment": { "locales": [ - "bs" + "br", + "de", + "dsb", + "en-US", + "fr", + "hsb", + "wo" + ], + "regions": [ + "ch" + ] + } + }, + { + "environment": { + "excludedRegions": [ + "pl" + ], + "locales": [ + "rm" ] } } - ], - "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.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://cy.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": 1702901746399, + "id": "e991a5f7-616e-43b0-b349-7995b837a520", + "identifier": "ebay-de", + "last_modified": 1715090108527, + "recordType": "engine", + "schema": 1714498578625, "variants": [ { "environment": { + "excludedRegions": [ + "at", + "ch", + "pl" + ], "locales": [ - "cy" + "de", + "dsb", + "hsb" ] } } - ], - "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.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://da.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": 1702901746995, + "id": "0592aedc-f4e5-4873-a8d4-da9482071613", + "identifier": "ebay-es", + "last_modified": 1715090108511, + "recordType": "engine", + "schema": 1714498579838, "variants": [ { "environment": { + "excludedRegions": [ + "pl" + ], "locales": [ - "da" + "an", + "ast", + "ca", + "ca-valencia", + "es-ES", + "eu", + "gl" ] } } - ], - "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.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://de.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": 1702901747613, + "id": "d327156c-dfc4-47f6-a620-3846a21144d9", + "identifier": "ebay-fr", + "last_modified": 1715090108513, + "recordType": "engine", + "schema": 1714498580858, "variants": [ { "environment": { + "excludedRegions": [ + "be", + "ca", + "ch", + "pl" + ], "locales": [ - "de" + "br", + "fr", + "wo" ] } } - ], - "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.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://dsb.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" + } + } + }, + "id": "0a9fed24-cd33-4293-bac8-eb26a285c9f1", + "identifier": "ebay-ie", + "last_modified": 1715090108524, + "recordType": "engine", + "schema": 1714498581865, + "variants": [ + { + "environment": { + "locales": [ + "cy", + "en-GB", + "en-US", + "gd" + ], + "regions": [ + "ie" + ] } }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" - }, - "schema": 1702901748278, - "variants": [ { "environment": { + "excludedRegions": [ + "pl" + ], "locales": [ - "dsb" + "ga-IE" ] } } - ], - "identifier": "wikipedia-dsb", - "recordType": "engine", - "id": "c8a9299d-c9d2-4bf3-8f94-812d38af35f7", - "last_modified": 1702906502701 + ] }, { "base": { - "name": "Wikipedia (el)", + "aliases": [ + "ebay" + ], + "classification": "unknown", + "name": "eBay", + "partnerCode": "5338192028", "urls": { "search": { - "base": "https://el.wikipedia.org/wiki/Ειδικό:Αναζήτηση", + "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://el.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": 1702901748903, + "id": "f36dd44c-ba5f-44e5-8b19-672eb1ed62fd", + "identifier": "ebay-it", + "last_modified": 1715090108532, + "recordType": "engine", + "schema": 1714498582844, "variants": [ { "environment": { + "excludedRegions": [ + "pl" + ], "locales": [ - "el" + "fur", + "it", + "lij", + "sc" ] } } - ], - "identifier": "wikipedia-el", - "recordType": "engine", - "id": "6ebc40f2-9307-4e58-8fd7-0e1a23b80723", - "last_modified": 1702906502698 + ] }, { "base": { - "name": "Vikipedio (eo)", + "aliases": [ + "ebay" + ], + "classification": "unknown", + "name": "eBay", + "partnerCode": "5338192028", "urls": { "search": { - "base": "https://eo.wikipedia.org/wiki/Specialaĵo:Serĉi", + "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://eo.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": 1702901749556, + "id": "670475c3-d56f-4f87-9834-ddb12d0e8cbd", + "identifier": "ebay-nl", + "last_modified": 1715090108529, + "recordType": "engine", + "schema": 1714498583851, "variants": [ { "environment": { + "excludedRegions": [ + "be", + "pl" + ], "locales": [ - "eo" + "fy-NL", + "nl" + ] + } + }, + { + "environment": { + "locales": [ + "en-US" + ], + "regions": [ + "nl" ] } } - ], - "identifier": "wikipedia-eo", - "recordType": "engine", - "id": "25b42f42-d6e4-4193-be32-b4ca61cb55c7", - "last_modified": 1702906502695 + ] }, { "base": { - "name": "Vikipeedia (et)", + "aliases": [ + "ebay" + ], + "classification": "unknown", + "name": "eBay", + "partnerCode": "5338192028", "urls": { "search": { - "base": "https://et.wikipedia.org/wiki/Eri:Otsimine", + "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://et.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": 1702901750177, + "id": "37f83917-8d6e-46d6-9d15-8e7779339d08", + "identifier": "ebay-pl", + "last_modified": 1715090108535, + "recordType": "engine", + "schema": 1714498585934, "variants": [ { "environment": { - "locales": [ - "et" + "regions": [ + "pl" ] } } - ], - "identifier": "wikipedia-et", - "recordType": "engine", - "id": "87388ad0-c470-4a90-b79d-231e28b86eda", - "last_modified": 1702906502691 + ] }, { "base": { - "name": "Wikipedia (eu)", + "aliases": [ + "ebay" + ], + "classification": "unknown", + "name": "eBay", + "partnerCode": "5338192028", "urls": { "search": { - "base": "https://eu.wikipedia.org/wiki/Berezi:Bilatu", + "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://eu.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" + } + } + }, + "id": "37f83917-8d6e-46d6-9d15-8e7779339d18", + "identifier": "ebay-uk", + "last_modified": 1715090108522, + "recordType": "engine", + "schema": 1714498584991, + "variants": [ + { + "environment": { + "excludedRegions": [ + "au", + "ie", + "pl" + ], + "locales": [ + "cy", + "en-GB", + "gd" + ] } }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" - }, - "schema": 1702901750807, - "variants": [ { "environment": { "locales": [ - "eu" + "sco" + ], + "regions": [ + "gb" + ] + } + }, + { + "environment": { + "locales": [ + "en-US" + ], + "regions": [ + "gb" ] } } - ], - "identifier": "wikipedia-eu", - "recordType": "engine", - "id": "0d6704d1-3aed-420c-8c16-6aeefede499f", - "last_modified": 1702906502688 + ] }, { "base": { - "name": "ویکی‌پدیا (fa)", + "classification": "general", + "name": "Ecosia", + "partnerCode": "mzl", "urls": { "search": { - "base": "https://fa.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://fa.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": 1702901751455, + "id": "e8e4a7e3-aead-43e3-887d-4064a186bd70", + "identifier": "ecosia", + "last_modified": 1702906502308, + "recordType": "engine", + "schema": 1702901822899, "variants": [ { "environment": { "locales": [ - "fa" + "de" ] } } - ], - "identifier": "wikipedia-fa", - "recordType": "engine", - "id": "ce737d17-06f0-46f2-8c88-97f796ad88dc", - "last_modified": 1702906502685 + ] }, { "base": { - "name": "Wikipedia (fi)", + "classification": "unknown", + "name": "EUdict Eng->Cro", "urls": { "search": { - "base": "https://fi.wikipedia.org/wiki/Toiminnot:Haku", - "params": [ - { - "name": "sourceid", - "value": "Mozilla-search" - } - ], - "searchTermParamName": "search" - }, - "suggestions": { - "base": "https://fi.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": 1702901752065, + "id": "8fe5af92-3b6d-4cbe-a736-4cad01a21efe", + "identifier": "eudict", + "last_modified": 1702906502306, + "recordType": "engine", + "schema": 1702901823499, "variants": [ { "environment": { "locales": [ - "fi" + "hr" ] } } - ], - "identifier": "wikipedia-fi", - "recordType": "engine", - "id": "0820d593-6616-476a-ab3d-763c4d14dcc6", - "last_modified": 1702906502682 + ] }, { "base": { - "name": "Wikipedy (fy)", + "classification": "unknown", + "name": "Am Faclair Beag", "urls": { "search": { - "base": "https://fy.wikipedia.org/wiki/Wiki:Sykje", - "params": [ - { - "name": "sourceid", - "value": "Mozilla-search" - } - ], - "searchTermParamName": "search" - }, - "suggestions": { - "base": "https://fy.wikipedia.org/w/api.php", - "params": [ - { - "name": "action", - "value": "opensearch" - } - ], - "searchTermParamName": "search" + "base": "https://www.faclair.com/", + "searchTermParamName": "txtSearch" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901752745, + "id": "d21e561b-64ae-4a33-b2f0-c4a490a5cf82", + "identifier": "faclair-beag", + "last_modified": 1702906502303, + "recordType": "engine", + "schema": 1702901824109, "variants": [ { "environment": { "locales": [ - "fy-NL" + "gd" ] } } - ], - "identifier": "wikipedia-fy-NL", - "recordType": "engine", - "id": "4a6a7952-460d-4951-a011-9fc414f2569a", - "last_modified": 1702906502679 + ] }, { "base": { - "name": "Vicipéid (ga)", + "classification": "unknown", + "name": "GMX Suche", "urls": { "search": { - "base": "https://ga.wikipedia.org/wiki/Speisialta:Search", + "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://ga.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": 1702901753350, + "id": "5240e0d8-8c2c-436b-b478-3fa0b506410f", + "identifier": "gmx-de", + "last_modified": 1702906502361, + "recordType": "engine", + "schema": 1702901812448, "variants": [ { "environment": { - "locales": [ - "ga-IE" + "distributions": [ + "gmx" ] } } - ], - "identifier": "wikipedia-ga-IE", - "recordType": "engine", - "id": "d8d0e94c-27e7-42b1-a5e2-b24198021234", - "last_modified": 1702906502675 + ] }, { "base": { - "name": "Uicipeid (gd)", + "classification": "unknown", + "name": "GMX Search", "urls": { "search": { - "base": "https://gd.wikipedia.org/wiki/Sònraichte:Search", + "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://gd.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": 1702901753945, + "id": "d5f10a5b-19b7-4214-9e84-be0b04d6414f", + "identifier": "gmx-en-GB", + "last_modified": 1702906502354, + "recordType": "engine", + "schema": 1702901813683, "variants": [ { "environment": { - "locales": [ - "gd" + "distributions": [ + "gmxcouk" ] } } - ], - "identifier": "wikipedia-gd", - "recordType": "engine", - "id": "df26225d-6726-4630-94ce-7a398598139b", - "last_modified": 1702906502672 + ] }, { "base": { - "name": "Wikipedia (gl)", + "classification": "unknown", + "name": "GMX - Búsqueda web", "urls": { "search": { - "base": "https://gl.wikipedia.org/wiki/Especial:Procurar", + "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://gl.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": 1702901754558, + "id": "bdb578f4-6362-4789-911d-193c98ec5378", + "identifier": "gmx-es", + "last_modified": 1702906502351, + "recordType": "engine", + "schema": 1702901814287, "variants": [ { "environment": { - "locales": [ - "gl" + "distributions": [ + "gmxes" ] } } - ], - "identifier": "wikipedia-gl", - "recordType": "engine", - "id": "cd385c40-96bc-43c4-9f30-eff738828401", - "last_modified": 1702906502668 + ] }, { "base": { - "name": "Vikipetã (gn)", + "classification": "unknown", + "name": "GMX - Recherche web", "urls": { "search": { - "base": "https://gn.wikipedia.org/wiki/Mba'echĩchĩ:Buscar", + "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://gn.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": 1702901755160, + "id": "2b628809-284d-468a-831f-95dc479f30da", + "identifier": "gmx-fr", + "last_modified": 1702906502349, + "recordType": "engine", + "schema": 1702901814882, "variants": [ { "environment": { - "locales": [ - "gn" + "distributions": [ + "gmxfr" ] } } - ], - "identifier": "wikipedia-gn", - "recordType": "engine", - "id": "b66515df-d7b1-403c-b0df-22a5ce9dd07f", - "last_modified": 1702906502665 + ] }, { "base": { - "name": "ויקיפדיה", + "classification": "unknown", + "name": "GMX Shopping", "urls": { "search": { - "base": "https://he.wikipedia.org/wiki/מיוחד:חיפוש", + "base": "https://shopping.gmx.net/", "params": [ { - "name": "sourceid", - "value": "Mozilla-search" + "name": "origin", + "value": "br_osd" } ], - "searchTermParamName": "search" + "searchTermParamName": "q" }, "suggestions": { - "base": "https://he.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": 1702901755766, + "id": "3a738904-cf8c-4d87-8972-ea98768d44f0", + "identifier": "gmx-shopping", + "last_modified": 1702906502357, + "recordType": "engine", + "schema": 1702901813066, "variants": [ { "environment": { - "locales": [ - "he" + "distributions": [ + "gmx" ] } } - ], - "identifier": "wikipedia-he", - "recordType": "engine", - "id": "f96aab0d-3562-445c-a70f-5805ea1d25fe", - "last_modified": 1702906502662 + ] }, { "base": { - "name": "Wikipedija (hr)", + "aliases": [ + "google" + ], + "classification": "general", + "name": "Google", + "partnerCode": "firefox-b-d", "urls": { "search": { - "base": "https://hr.wikipedia.org/wiki/Posebno:Traži", + "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://hr.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" + } + } + }, + "id": "7ace4aa1-e762-4f4b-87b9-b23b3c3a930b", + "identifier": "google", + "last_modified": 1713282817051, + "recordType": "engine", + "schema": 1713282083062, + "variants": [ + { + "environment": { + "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" + } + ] + } } }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" - }, - "schema": 1702901756375, - "variants": [ { "environment": { - "locales": [ - "hr" + "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-hr", - "recordType": "engine", - "id": "eb03a427-1f71-4df9-b609-a36064d2d0e2", - "last_modified": 1702906502658 + ] }, { "base": { - "name": "Wikipedija (hsb)", + "classification": "unknown", + "name": "Gule sider", "urls": { "search": { - "base": "https://hsb.wikipedia.org/wiki/Specialnje:Pytać", + "base": "https://www.gulesider.no/search", "params": [ { - "name": "sourceid", - "value": "Mozilla-search" - } - ], - "searchTermParamName": "search" - }, - "suggestions": { - "base": "https://hsb.wikipedia.org/w/api.php", - "params": [ + "name": "what", + "value": "all" + }, { - "name": "action", - "value": "opensearch" + "name": "cmpid", + "value": "fre_partner_fire_gssbtop" } ], - "searchTermParamName": "search" + "searchTermParamName": "q" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901756979, + "id": "0f9d78f8-e8ad-40be-8f50-b71d5da0f4cc", + "identifier": "gulesider-NO", + "last_modified": 1702906502300, + "recordType": "engine", + "schema": 1702901824715, "variants": [ { "environment": { "locales": [ - "hsb" + "nb-NO", + "nn-NO" ] } } - ], - "identifier": "wikipedia-hsb", - "recordType": "engine", - "id": "5235d5f1-e04d-4ba3-b53b-35a8d09d2142", - "last_modified": 1702906502655 + ] }, { "base": { - "name": "Wikipédia (hu)", + "classification": "unknown", + "name": "LEO Eng-Deu", "urls": { "search": { - "base": "https://hu.wikipedia.org/wiki/Speciális:Keresés", - "params": [ - { - "name": "sourceid", - "value": "Mozilla-search" - } - ], - "searchTermParamName": "search" + "base": "https://dict.leo.org/englisch-deutsch/{searchTerms}" }, "suggestions": { - "base": "https://hu.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": 1702901757634, + "id": "2669ab65-3d93-4432-a960-90413be80ae0", + "identifier": "leo_ende_de", + "last_modified": 1702906502297, + "recordType": "engine", + "schema": 1702901825311, "variants": [ { "environment": { "locales": [ - "hu" + "de", + "dsb", + "hsb", + "rm" ] } } - ], - "identifier": "wikipedia-hu", - "recordType": "engine", - "id": "9a10f883-2da7-4070-8a73-543153bdd52c", - "last_modified": 1702906502651 + ] }, { "base": { - "name": "Wikipedia (ia)", + "classification": "unknown", + "name": "พจนานุกรม ลองดู", "urls": { "search": { - "base": "https://ia.wikipedia.org/wiki/Special:Recerca", + "base": "https://dict.longdo.org/", "params": [ { - "name": "sourceid", - "value": "Mozilla-search" + "name": "src", + "value": "moz" } ], "searchTermParamName": "search" }, "suggestions": { - "base": "https://ia.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": 1702901758249, + "id": "fcc54178-e432-4d2b-820e-50f389bfb396", + "identifier": "longdo", + "last_modified": 1702906502295, + "recordType": "engine", + "schema": 1702901825919, "variants": [ { "environment": { "locales": [ - "ia" + "th" ] } } - ], - "identifier": "wikipedia-ia", - "recordType": "engine", - "id": "6787b684-aa4f-48d2-9673-fce3b528c71c", - "last_modified": 1702906502647 + ] }, { "base": { - "name": "Wikipedia (id)", + "classification": "unknown", + "name": "mail.com search", "urls": { "search": { - "base": "https://id.wikipedia.org/wiki/Istimewa:Pencarian", + "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://id.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": 1702901758856, + "id": "39375b5f-77bb-46cb-979d-345c002fe35f", + "identifier": "mailcom", + "last_modified": 1702906502329, + "recordType": "engine", + "schema": 1702901818560, "variants": [ { "environment": { - "locales": [ - "id" + "distributions": [ + "mail.com" ] } } - ], - "identifier": "wikipedia-id", - "recordType": "engine", - "id": "163da4a0-e59f-423a-bebc-3ec3bd68b941", - "last_modified": 1702906502644 + ] }, { "base": { - "name": "Wikipedia (is)", + "classification": "unknown", + "name": "Mapy.cz", "urls": { "search": { - "base": "https://is.wikipedia.org/wiki/Kerfissíða:Leit", + "base": "https://www.mapy.cz/", "params": [ { "name": "sourceid", - "value": "Mozilla-search" - } - ], - "searchTermParamName": "search" - }, - "suggestions": { - "base": "https://is.wikipedia.org/w/api.php", - "params": [ - { - "name": "action", - "value": "opensearch" + "value": "Searchmodule_3" } ], - "searchTermParamName": "search" + "searchTermParamName": "q" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901759494, + "id": "1ad708f0-5736-4f65-aeb4-31e5eca1c598", + "identifier": "mapy-cz", + "last_modified": 1702906502292, + "recordType": "engine", + "schema": 1702901826526, "variants": [ { "environment": { "locales": [ - "is" + "cs" ] } - } - ], - "identifier": "wikipedia-is", - "recordType": "engine", - "id": "26ca2f38-0472-45de-83fd-78d67aaecd22", - "last_modified": 1702906502640 - }, - { - "base": { - "name": "ვიკიპედია (ka)", - "urls": { - "search": { - "base": "https://ka.wikipedia.org/wiki/სპეციალური:ძიება", - "params": [ - { - "name": "sourceid", - "value": "Mozilla-search" - } - ], - "searchTermParamName": "search" - }, - "suggestions": { - "base": "https://ka.wikipedia.org/w/api.php", - "params": [ - { - "name": "action", - "value": "opensearch" - } - ], - "searchTermParamName": "search" + } + ] + }, + { + "base": { + "classification": "unknown", + "name": "MercadoLibre Argentina", + "urls": { + "search": { + "base": "https://www.mercadolibre.com.ar/jm/search", + "searchTermParamName": "as_word" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901760115, + "id": "8111d157-e064-40fa-993d-e1d972534754", + "identifier": "mercadolibre", + "last_modified": 1702906502289, + "recordType": "engine", + "schema": 1702901827142, "variants": [ { "environment": { "locales": [ - "ka" + "es-AR" ] } } - ], - "identifier": "wikipedia-ka", - "recordType": "engine", - "id": "ca784382-7beb-4a93-b211-745d4d71ec6c", - "last_modified": 1702906502636 + ] }, { "base": { - "name": "Wikipedia (kab)", + "classification": "unknown", + "name": "MercadoLibre Chile", "urls": { "search": { - "base": "https://kab.wikipedia.org/wiki/Uslig:Search", - "params": [ - { - "name": "sourceid", - "value": "Mozilla-search" - } - ], - "searchTermParamName": "search" - }, - "suggestions": { - "base": "https://kab.wikipedia.org/w/api.php", - "params": [ - { - "name": "action", - "value": "opensearch" - } - ], - "searchTermParamName": "search" + "base": "https://www.mercadolibre.cl/jm/search", + "searchTermParamName": "as_word" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901760752, + "id": "5659791c-6637-4ba9-b46b-83f16df084cd", + "identifier": "mercadolibre-cl", + "last_modified": 1702906502286, + "recordType": "engine", + "schema": 1702901827757, "variants": [ { "environment": { "locales": [ - "kab" + "es-CL" ] } } - ], - "identifier": "wikipedia-kab", - "recordType": "engine", - "id": "e6f20ba5-3013-4b18-ad7a-351a64e62ec4", - "last_modified": 1702906502632 + ] }, { "base": { - "name": "Уикипедия (kk)", + "classification": "unknown", + "name": "MercadoLibre Mexico", "urls": { "search": { - "base": "https://kk.wikipedia.org/wiki/Арнайы:Іздеу", - "params": [ - { - "name": "sourceid", - "value": "Mozilla-search" - } - ], - "searchTermParamName": "search" - }, - "suggestions": { - "base": "https://kk.wikipedia.org/w/api.php", - "params": [ - { - "name": "action", - "value": "opensearch" - } - ], - "searchTermParamName": "search" + "base": "https://www.mercadolibre.com.mx/jm/search", + "searchTermParamName": "as_word" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901761359, + "id": "162c9f26-f269-4b8e-b75f-01cf3c15e177", + "identifier": "mercadolibre-mx", + "last_modified": 1702906502283, + "recordType": "engine", + "schema": 1702901828372, "variants": [ { "environment": { "locales": [ - "kk" + "es-MX" ] } } - ], - "identifier": "wikipedia-kk", - "recordType": "engine", - "id": "15f00a29-0d68-4ff1-89d1-5e58b95618b7", - "last_modified": 1702906502628 + ] }, { "base": { - "name": "វីគីភីឌា (km)", + "classification": "unknown", + "name": "MercadoLivre", "urls": { "search": { - "base": "https://km.wikipedia.org/wiki/ពិសេស:ស្វែងរក", - "params": [ - { - "name": "sourceid", - "value": "Mozilla-search" - } - ], - "searchTermParamName": "search" - }, - "suggestions": { - "base": "https://km.wikipedia.org/w/api.php", - "params": [ - { - "name": "action", - "value": "opensearch" - } - ], - "searchTermParamName": "search" + "base": "https://www.mercadolivre.com.br/jm/search", + "searchTermParamName": "as_word" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901761969, + "id": "62453dfa-0d82-4961-b6e2-241647aa04b6", + "identifier": "mercadolivre", + "last_modified": 1702906502281, + "recordType": "engine", + "schema": 1702901829001, "variants": [ { "environment": { "locales": [ - "km" + "pt-BR" ] } } - ], - "identifier": "wikipedia-km", - "recordType": "engine", - "id": "c8a7bec0-7f33-44e1-9521-363530993acc", - "last_modified": 1702906502625 + ] }, { "base": { - "name": "Wikipedia (kn)", + "classification": "unknown", + "name": "네이버", "urls": { "search": { - "base": "https://kn.wikipedia.org/wiki/ವಿಶೇಷ: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://kn.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": 1702901762594, + "id": "88d22607-619b-4c7a-8708-bb0caef15e18", + "identifier": "naver-kr", + "last_modified": 1702906502278, + "recordType": "engine", + "schema": 1702901829625, "variants": [ { "environment": { "locales": [ - "kn" + "ko" ] } } - ], - "identifier": "wikipedia-kn", - "recordType": "engine", - "id": "ce510c56-9d5e-416c-aef0-277bfbaac464", - "last_modified": 1702906502622 + ] }, { "base": { - "name": "Wikipedia (lij)", + "classification": "unknown", + "name": "Odpiralni Časi", "urls": { "search": { - "base": "https://lij.wikipedia.org/wiki/Speçiale:Riçerca", - "params": [ - { - "name": "sourceid", - "value": "Mozilla-search" - } - ], - "searchTermParamName": "search" - }, - "suggestions": { - "base": "https://lij.wikipedia.org/w/api.php", + "base": "https://www.odpiralnicasi.com/spots", "params": [ { - "name": "action", - "value": "opensearch" + "name": "source", + "value": "1" } ], - "searchTermParamName": "search" + "searchTermParamName": "q" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901763202, + "id": "2039744c-adce-459b-a547-e3dba931c2a0", + "identifier": "odpiralni", + "last_modified": 1702906502275, + "recordType": "engine", + "schema": 1702901830238, "variants": [ { "environment": { "locales": [ - "lij" + "sl" ] } } - ], - "identifier": "wikipedia-lij", - "recordType": "engine", - "id": "5ec04310-966d-40da-af5b-f24383d40c8a", - "last_modified": 1702906502619 + ] }, { "base": { - "name": "ວິກິພີເດຍ (lo)", + "classification": "unknown", + "name": "Pazaruvaj", "urls": { "search": { - "base": "https://lo.wikipedia.org/wiki/ພິເສດ:ຊອກຫາ", - "params": [ - { - "name": "sourceid", - "value": "Mozilla-search" - } - ], - "searchTermParamName": "search" - }, - "suggestions": { - "base": "https://lo.wikipedia.org/w/api.php", - "params": [ - { - "name": "action", - "value": "opensearch" - } - ], - "searchTermParamName": "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" + ] } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } + ] + }, + { + "base": { + "charset": "ISO-8859-15", + "classification": "unknown", + "name": "Priberam", + "urls": { + "search": { + "base": "https://www.priberam.pt/dlpo/firefox.aspx", + "searchTermParamName": "pal" + } + } }, - "schema": 1702901763817, + "id": "4bc3282e-f318-443c-8b2f-c144205657d4", + "identifier": "priberam", + "last_modified": 1702906502270, + "recordType": "engine", + "schema": 1702901831479, "variants": [ { "environment": { "locales": [ - "lo" + "pt-PT" ] } } - ], - "identifier": "wikipedia-lo", - "recordType": "engine", - "id": "515c4522-284d-468f-926a-eb7eb8a55e22", - "last_modified": 1702906502615 + ] }, { "base": { - "name": "Wikipedia (lt)", + "classification": "unknown", + "name": "Prisjakt", "urls": { "search": { - "base": "https://lt.wikipedia.org/wiki/Specialus:Paieška", - "params": [ - { - "name": "sourceid", - "value": "Mozilla-search" - } - ], + "base": "https://www.prisjakt.nu/search", "searchTermParamName": "search" }, "suggestions": { - "base": "https://lt.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": 1702901764432, + "id": "e4f4c143-7b0a-4ae5-b461-cd22da9da90a", + "identifier": "prisjakt-sv-SE", + "last_modified": 1702906502267, + "recordType": "engine", + "schema": 1702901832077, "variants": [ { "environment": { "locales": [ - "lt" + "sv-SE" ] } } - ], - "identifier": "wikipedia-lt", - "recordType": "engine", - "id": "774990fb-aabc-4008-86d3-adf12f89ccd4", - "last_modified": 1702906502612 + ] }, { "base": { - "name": "Vikipedeja (ltg)", + "aliases": [ + "qwant" + ], + "classification": "general", + "name": "Qwant", + "partnerCode": "brz-moz", "urls": { "search": { - "base": "https://ltg.wikipedia.org/wiki/Seviškuo:Search", + "base": "https://www.qwant.com/", "params": [ { - "name": "sourceid", - "value": "Mozilla-search" + "name": "client", + "value": "{partnerCode}" } ], - "searchTermParamName": "search" + "searchTermParamName": "q" }, "suggestions": { - "base": "https://ltg.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": 1702901765044, + "id": "2e62746e-b90a-42ee-b0f2-9ed0e1e2eaf0", + "identifier": "qwant", + "last_modified": 1710766863306, + "recordType": "engine", + "schema": 1710460806956, "variants": [ { "environment": { "locales": [ - "ltg" + "fr" + ] + } + }, + { + "environment": { + "regions": [ + "be", + "ch", + "es", + "fr", + "it", + "nl" ] } + }, + { + "environment": { + "distributions": [ + "qwant-001", + "qwant-002" + ] + }, + "partnerCode": "firefoxqwant", + "telemetrySuffix": "qwant" } - ], - "identifier": "wikipedia-ltg", - "recordType": "engine", - "id": "52871fd0-a24a-443b-a2d4-17eb09951691", - "last_modified": 1702906502609 + ] }, { "base": { - "name": "Vikipēdija", + "classification": "unknown", + "name": "Qwant Junior", + "partnerCode": "firefoxqwant", "urls": { "search": { - "base": "https://lv.wikipedia.org/wiki/Special:Search", + "base": "https://www.qwantjunior.com/", "params": [ { - "name": "sourceid", - "value": "Mozilla-search" + "name": "client", + "value": "{partnerCode}" } ], - "searchTermParamName": "search" + "searchTermParamName": "q" }, "suggestions": { - "base": "https://lv.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": 1702901765673, + "id": "7996de41-caf5-4e52-8d96-4ee89ede5d5c", + "identifier": "qwantjr", + "last_modified": 1702906502346, + "recordType": "engine", + "schema": 1702901815498, "variants": [ { "environment": { + "distributions": [ + "qwant-001", + "qwant-002" + ], "locales": [ - "lv" + "fr" ] } } - ], - "identifier": "wikipedia-lv", - "recordType": "engine", - "id": "395b6c93-f7ff-47b8-b895-6f7bb99f9c56", - "last_modified": 1702906502606 + ] }, { "base": { - "name": "Википедија (mk)", + "charset": "EUC-JP", + "classification": "unknown", + "name": "楽天市場", "urls": { "search": { - "base": "https://mk.wikipedia.org/wiki/Специјална:Барај", + "base": "https://pt.afl.rakuten.co.jp/c/013ca98b.cd7c5f0c/", "params": [ { - "name": "sourceid", - "value": "Mozilla-search" - } - ], - "searchTermParamName": "search" - }, - "suggestions": { - "base": "https://mk.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": 1702901766290, + "id": "ab6f7178-b0be-452a-82f2-f5df8df2d836", + "identifier": "rakuten", + "last_modified": 1702906502326, + "recordType": "engine", + "schema": 1702901819182, "variants": [ { "environment": { "locales": [ - "mk" + "ja", + "ja-JP-macos" ] } } - ], - "identifier": "wikipedia-mk", - "recordType": "engine", - "id": "a3aa8882-cbb0-4002-b0fc-b6ff5cdb9d92", - "last_modified": 1702906502602 + ] }, { "base": { - "name": "विकिपीडिया (mr)", + "classification": "unknown", + "name": "Readmoo 讀墨電子書", "urls": { "search": { - "base": "https://mr.wikipedia.org/wiki/विशेष:शोधा", + "base": "https://readmoo.com/search/keyword", "params": [ { - "name": "sourceid", - "value": "Mozilla-search" - } - ], - "searchTermParamName": "search" - }, - "suggestions": { - "base": "https://mr.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": 1702901766916, + "id": "f1570611-5dfa-4028-851c-fafaa8324bbd", + "identifier": "readmoo", + "last_modified": 1702906502264, + "recordType": "engine", + "schema": 1702901832677, "variants": [ { "environment": { "locales": [ - "mr" + "zh-TW" ] } } - ], - "identifier": "wikipedia-mr", - "recordType": "engine", - "id": "09f48c9b-b420-4312-8c60-aeb4358e0b97", - "last_modified": 1702906502599 + ] }, { "base": { - "name": "Wikipedia (ms)", + "classification": "unknown", + "name": "Salidzini.lv", "urls": { "search": { - "base": "https://ms.wikipedia.org/wiki/Khas:Gelintar", + "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://ms.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": 1702901767543, + "id": "883c6f10-cac4-4dc0-b631-9a28cbadda49", + "identifier": "salidzinilv", + "last_modified": 1702906502262, + "recordType": "engine", + "schema": 1702901833283, "variants": [ { "environment": { "locales": [ - "ms" + "ltg", + "lv" ] } } - ], - "identifier": "wikipedia-ms", - "recordType": "engine", - "id": "7039c888-4bd6-4b82-a164-ca3bfc93b24c", - "last_modified": 1702906502595 + ] }, { "base": { - "name": "Wikipedia (my)", + "classification": "unknown", + "name": "Seznam", + "partnerCode": "firefox", "urls": { "search": { - "base": "https://my.wikipedia.org/wiki/Special:Search", + "base": "https://search.seznam.cz/", "params": [ { "name": "sourceid", - "value": "Mozilla-search" + "value": "{partnerCode}" } ], - "searchTermParamName": "search" + "searchTermParamName": "q" }, "suggestions": { - "base": "https://my.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": 1702901768156, + "id": "b0cdb724-b7df-47d0-8ead-93aa0a8f60a2", + "identifier": "seznam-cz", + "last_modified": 1702906502339, + "recordType": "engine", + "schema": 1702901816717, "variants": [ { "environment": { "locales": [ - "my" + "cs" ] } } - ], - "identifier": "wikipedia-my", - "recordType": "engine", - "id": "0616dd06-2bfd-46f0-9870-832a1db8a622", - "last_modified": 1702906502592 + ] }, { "base": { - "name": "Wikipedia (nl)", + "classification": "unknown", + "name": "Tyda.se", "urls": { "search": { - "base": "https://nl.wikipedia.org/wiki/Speciaal:Zoeken", - "params": [ - { - "name": "sourceid", - "value": "Mozilla-search" - } - ], - "searchTermParamName": "search" - }, - "suggestions": { - "base": "https://nl.wikipedia.org/w/api.php", - "params": [ - { - "name": "action", - "value": "opensearch" - } - ], - "searchTermParamName": "search" + "base": "https://tyda.se/", + "searchTermParamName": "w" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901768793, + "id": "511f0050-e322-456f-9f15-acafef69c898", + "identifier": "tyda-sv-SE", + "last_modified": 1702906502259, + "recordType": "engine", + "schema": 1702901833893, "variants": [ { "environment": { "locales": [ - "nl" + "sv-SE" ] } } - ], - "identifier": "wikipedia-nl", - "recordType": "engine", - "id": "9e423eca-df00-4385-ab15-4e61bc220b05", - "last_modified": 1702906502588 + ] }, { "base": { - "name": "Wikipèdia (oc)", + "charset": "ISO-8859-2", + "classification": "unknown", + "name": "Vatera.hu", "urls": { "search": { - "base": "https://oc.wikipedia.org/wiki/Especial:Recèrca", + "base": "https://www.vatera.hu/listings/index.php", "params": [ { - "name": "sourceid", - "value": "Mozilla-search" - } - ], - "searchTermParamName": "search" - }, - "suggestions": { - "base": "https://oc.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": 1702901769405, + "id": "ede75b07-cdc0-485b-8a9c-8282f15c4ede", + "identifier": "vatera", + "last_modified": 1702906502256, + "recordType": "engine", + "schema": 1702901834503, "variants": [ { "environment": { "locales": [ - "oc" + "hu" ] } } - ], - "identifier": "wikipedia-oc", - "recordType": "engine", - "id": "e3e2c4a1-4914-4a27-96f8-63fb6a90f490", - "last_modified": 1702906502585 + ] }, { "base": { - "name": "Wikipedia (rm)", + "classification": "unknown", + "name": "WEB.DE Suche", "urls": { "search": { - "base": "https://rm.wikipedia.org/wiki/Spezial:Search", + "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://rm.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": 1702901770011, + "id": "3d42fa9a-08ca-4057-b79d-917c576e2634", + "identifier": "webde", + "last_modified": 1702906502332, + "recordType": "engine", + "schema": 1702901817944, "variants": [ { "environment": { - "locales": [ - "rm" + "distributions": [ + "webde" ] } } - ], - "identifier": "wikipedia-rm", - "recordType": "engine", - "id": "4042df85-6b55-4a40-9c3f-ef74b05ef5be", - "last_modified": 1702906502581 + ] }, { "base": { - "name": "Wikipedia (ro)", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (en)", "urls": { "search": { - "base": "https://ro.wikipedia.org/wiki/Special:Căutare", + "base": "https://en.wikipedia.org/wiki/Special:Search", "params": [ { "name": "sourceid", @@ -2841,7 +3180,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://ro.wikipedia.org/w/api.php", + "base": "https://en.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -2850,78 +3189,131 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901770632, + "id": "7f6d23c2-191e-483e-af3a-ce6451e3a8dd", + "identifier": "wikipedia", + "last_modified": 1702906502744, + "recordType": "engine", + "schema": 1702901740904, "variants": [ { "environment": { - "locales": [ - "ro" + "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-ro", - "recordType": "engine", - "id": "c2f3213e-f43f-4776-b1cb-b70d8457b6c7", - "last_modified": 1702906502577 + ] }, { "base": { - "name": "Википедия (ru)", - "urls": { - "search": { - "base": "https://ru.wikipedia.org/wiki/Служебная:Поиск", - "params": [ - { - "name": "sourceid", - "value": "Mozilla-search" - } - ], - "searchTermParamName": "search" - }, - "suggestions": { - "base": "https://ru.wikipedia.org/w/api.php", - "params": [ - { - "name": "action", - "value": "opensearch" - } - ], - "searchTermParamName": "search" - } - }, "aliases": [ "wikipedia" ], - "classification": "unknown" - }, - "schema": 1702901771244, - "variants": [ - { - "environment": { - "locales": [ - "ru" - ] - } - } - ], - "identifier": "wikipedia-ru", - "recordType": "engine", - "id": "8f2b997a-8bfe-436d-9393-b9abb52522ef", - "last_modified": 1702906502574 - }, - { - "base": { - "name": "Wikipedia (si)", + "classification": "unknown", + "name": "Wikipedia (nn)", "urls": { "search": { - "base": "https://si.wikipedia.org/wiki/විශේෂ:ගවේෂණය", + "base": "https://nn.wikipedia.org/wiki/Spesial:Søk", "params": [ { "name": "sourceid", @@ -2931,7 +3323,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://si.wikipedia.org/w/api.php", + "base": "https://nn.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -2940,78 +3332,33 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901771856, + "id": "c3462c25-acc1-4003-a57b-3931bfacdce5", + "identifier": "wikipedia-NN", + "last_modified": 1702906502462, + "recordType": "engine", + "schema": 1702901792200, "variants": [ { "environment": { "locales": [ - "si" + "nn-NO" ] } } - ], - "identifier": "wikipedia-si", - "recordType": "engine", - "id": "6a54dc6e-623a-4839-afd7-224e06d7ba73", - "last_modified": 1702906502571 + ] }, { "base": { - "name": "Wikipédia (sk)", - "urls": { - "search": { - "base": "https://sk.wikipedia.org/wiki/Špeciálne:Hľadanie", - "params": [ - { - "name": "sourceid", - "value": "Mozilla-search" - } - ], - "searchTermParamName": "search" - }, - "suggestions": { - "base": "https://sk.wikipedia.org/w/api.php", - "params": [ - { - "name": "action", - "value": "opensearch" - } - ], - "searchTermParamName": "search" - } - }, "aliases": [ "wikipedia" ], - "classification": "unknown" - }, - "schema": 1702901772461, - "variants": [ - { - "environment": { - "locales": [ - "sk" - ] - } - } - ], - "identifier": "wikipedia-sk", - "recordType": "engine", - "id": "f9d77028-e386-4093-aacd-a8c2a56acbc0", - "last_modified": 1702906502568 - }, - { - "base": { - "name": "Wikipedija (sl)", + "classification": "unknown", + "name": "Wikipedia (no)", "urls": { "search": { - "base": "https://sl.wikipedia.org/wiki/Posebno:Iskanje", + "base": "https://no.wikipedia.org/wiki/Spesial:Søk", "params": [ { "name": "sourceid", @@ -3021,7 +3368,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://sl.wikipedia.org/w/api.php", + "base": "https://no.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -3030,33 +3377,33 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901773075, + "id": "607d401f-70cd-4810-b9b5-497d5a9489f6", + "identifier": "wikipedia-NO", + "last_modified": 1702906502467, + "recordType": "engine", + "schema": 1702901790944, "variants": [ { "environment": { "locales": [ - "sl" + "nb-NO" ] } } - ], - "identifier": "wikipedia-sl", - "recordType": "engine", - "id": "887d2a1b-7275-4a4e-afa2-9157eb98a7d5", - "last_modified": 1702906502565 + ] }, { "base": { - "name": "Wikipedia (sq)", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (af)", "urls": { "search": { - "base": "https://sq.wikipedia.org/wiki/Speciale:Kërkim", + "base": "https://af.wikipedia.org/wiki/Spesiaal:Soek", "params": [ { "name": "sourceid", @@ -3066,7 +3413,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://sq.wikipedia.org/w/api.php", + "base": "https://af.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -3075,33 +3422,33 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901773681, + "id": "9dcc6d57-1b00-4cdc-bc11-d70593a3da30", + "identifier": "wikipedia-af", + "last_modified": 1702906502739, + "recordType": "engine", + "schema": 1702901741515, "variants": [ { "environment": { "locales": [ - "sq" + "af" ] } } - ], - "identifier": "wikipedia-sq", - "recordType": "engine", - "id": "bc8c03e7-747a-408c-a0ee-6598ca9fad4a", - "last_modified": 1702906502561 + ] }, { "base": { - "name": "Википедија (sr)", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Biquipedia (an)", "urls": { "search": { - "base": "https://sr.wikipedia.org/wiki/Посебно:Претражи", + "base": "https://an.wikipedia.org/wiki/Especial:Mirar", "params": [ { "name": "sourceid", @@ -3111,7 +3458,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://sr.wikipedia.org/w/api.php", + "base": "https://an.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -3120,33 +3467,33 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901774302, + "id": "1c2173e4-1ad3-4347-900a-17f4103c6bbe", + "identifier": "wikipedia-an", + "last_modified": 1702906502736, + "recordType": "engine", + "schema": 1702901742155, "variants": [ { "environment": { "locales": [ - "sr" + "an" ] } } - ], - "identifier": "wikipedia-sr", - "recordType": "engine", - "id": "d381964d-d1e3-4378-962c-6ac5b89161f8", - "last_modified": 1702906502558 + ] }, { "base": { - "name": "Wikipedia (sv)", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "ويكيبيديا (ar)", "urls": { "search": { - "base": "https://sv.wikipedia.org/wiki/Special:Sök", + "base": "https://ar.wikipedia.org/wiki/خاص:بحث", "params": [ { "name": "sourceid", @@ -3156,7 +3503,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://sv.wikipedia.org/w/api.php", + "base": "https://ar.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -3165,33 +3512,33 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901774920, + "id": "3ed57e7f-df2a-4bb0-aecf-10327d5ff1ea", + "identifier": "wikipedia-ar", + "last_modified": 1702906502733, + "recordType": "engine", + "schema": 1702901742756, "variants": [ { "environment": { "locales": [ - "sv-SE" + "ar" ] } } - ], - "identifier": "wikipedia-sv-SE", - "recordType": "engine", - "id": "d0708bee-d246-4eb9-81ff-50d5947837ec", - "last_modified": 1702906502555 + ] }, { "base": { - "name": "விக்கிப்பீடியா (ta)", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (ast)", "urls": { "search": { - "base": "https://ta.wikipedia.org/wiki/சிறப்பு:Search", + "base": "https://ast.wikipedia.org/wiki/Especial:Gueta", "params": [ { "name": "sourceid", @@ -3201,7 +3548,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://ta.wikipedia.org/w/api.php", + "base": "https://ast.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -3210,33 +3557,33 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901775549, + "id": "e5f07079-9153-4104-a8b9-a9d15ff75853", + "identifier": "wikipedia-ast", + "last_modified": 1702906502729, + "recordType": "engine", + "schema": 1702901743369, "variants": [ { "environment": { "locales": [ - "ta" + "ast" ] } } - ], - "identifier": "wikipedia-ta", - "recordType": "engine", - "id": "78ed73b5-4afd-467e-b7ee-c96658f345c6", - "last_modified": 1702906502552 + ] }, { "base": { - "name": "వికీపీడియా (te)", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Vikipediya (az)", "urls": { "search": { - "base": "https://te.wikipedia.org/wiki/ప్రత్యేక:అన్వేషణ", + "base": "https://az.wikipedia.org/wiki/Xüsusi:Axtar", "params": [ { "name": "sourceid", @@ -3246,7 +3593,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://te.wikipedia.org/w/api.php", + "base": "https://az.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -3255,33 +3602,33 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901776173, + "id": "2230b4af-8fdf-4aa0-a496-5178b25382ed", + "identifier": "wikipedia-az", + "last_modified": 1702906502726, + "recordType": "engine", + "schema": 1702901743987, "variants": [ { "environment": { "locales": [ - "te" + "az" ] } } - ], - "identifier": "wikipedia-te", - "recordType": "engine", - "id": "391eb3c6-de7a-4aaf-8027-3ad1b8c3c00a", - "last_modified": 1702906502548 + ] }, { "base": { - "name": "วิกิพีเดีย", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Вікіпедыя (be)", "urls": { "search": { - "base": "https://th.wikipedia.org/wiki/พิเศษ:ค้นหา", + "base": "https://be.wikipedia.org/wiki/Адмысловае:Search", "params": [ { "name": "sourceid", @@ -3291,7 +3638,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://th.wikipedia.org/w/api.php", + "base": "https://be.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -3300,33 +3647,33 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901776774, + "id": "5327659a-3b79-4071-95b5-b86f7cc25a25", + "identifier": "wikipedia-be", + "last_modified": 1702906502510, + "recordType": "engine", + "schema": 1702901782971, "variants": [ { "environment": { "locales": [ - "th" + "be" ] } } - ], - "identifier": "wikipedia-th", - "recordType": "engine", - "id": "5c7903a3-5a44-41a0-aac2-fc26fe8f8fe7", - "last_modified": 1702906502545 + ] }, { "base": { - "name": "Wikipedia (tl)", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Вікіпэдыя (be-tarask)", "urls": { "search": { - "base": "https://tl.wikipedia.org/wiki/Natatangi:Maghanap", + "base": "https://be-tarask.wikipedia.org/wiki/Спэцыяльныя:Пошук", "params": [ { "name": "sourceid", @@ -3336,7 +3683,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://tl.wikipedia.org/w/api.php", + "base": "https://be-tarask.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -3345,33 +3692,33 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901777391, + "id": "d7cb9b4b-f53a-49ea-ae04-27172fb108e9", + "identifier": "wikipedia-be-tarask", + "last_modified": 1702906502506, + "recordType": "engine", + "schema": 1702901783595, "variants": [ { "environment": { "locales": [ - "tl" + "be" ] } } - ], - "identifier": "wikipedia-tl", - "recordType": "engine", - "id": "d0c8b2f5-accc-45f4-adf4-a7377692869b", - "last_modified": 1702906502542 + ] }, { "base": { - "name": "Wikipedia (tr)", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Уикипедия (bg)", "urls": { "search": { - "base": "https://tr.wikipedia.org/wiki/Özel:Ara", + "base": "https://bg.wikipedia.org/wiki/Специални:Търсене", "params": [ { "name": "sourceid", @@ -3381,7 +3728,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://tr.wikipedia.org/w/api.php", + "base": "https://bg.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -3390,33 +3737,33 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901777988, + "id": "6324bcb4-9aad-4aa2-b10c-f320ae1242c3", + "identifier": "wikipedia-bg", + "last_modified": 1702906502723, + "recordType": "engine", + "schema": 1702901744580, "variants": [ { "environment": { "locales": [ - "tr" + "bg" ] } } - ], - "identifier": "wikipedia-tr", - "recordType": "engine", - "id": "8885ffbb-f450-4642-8204-ed9128b29e51", - "last_modified": 1702906502539 + ] }, { "base": { - "name": "Вікіпедія (uk)", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "উইকিপিডিয়া (bn)", "urls": { "search": { - "base": "https://uk.wikipedia.org/wiki/Спеціальна:Пошук", + "base": "https://bn.wikipedia.org/wiki/বিশেষ:Search", "params": [ { "name": "sourceid", @@ -3426,7 +3773,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://uk.wikipedia.org/w/api.php", + "base": "https://bn.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -3435,33 +3782,35 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901778586, + "id": "a0a95a2c-83b7-4507-a4e9-5632ca9825dd", + "identifier": "wikipedia-bn", + "last_modified": 1702906502503, + "recordType": "engine", + "schema": 1702901784204, "variants": [ { "environment": { "locales": [ - "uk" + "bn", + "bn-BD", + "bn-IN" ] } } - ], - "identifier": "wikipedia-uk", - "recordType": "engine", - "id": "3b65a693-177a-4bd2-9d66-8c038e005800", - "last_modified": 1702906502536 + ] }, { "base": { - "name": "ویکیپیڈیا (ur)", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (br)", "urls": { "search": { - "base": "https://ur.wikipedia.org/wiki/خاص:تلاش", + "base": "https://br.wikipedia.org/wiki/Dibar:Klask", "params": [ { "name": "sourceid", @@ -3471,7 +3820,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://ur.wikipedia.org/w/api.php", + "base": "https://br.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -3480,33 +3829,33 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901779213, + "id": "c9266f36-f954-44df-924b-a1c205f66d7c", + "identifier": "wikipedia-br", + "last_modified": 1702906502718, + "recordType": "engine", + "schema": 1702901745178, "variants": [ { "environment": { "locales": [ - "ur" + "br" ] } } - ], - "identifier": "wikipedia-ur", - "recordType": "engine", - "id": "52a714ba-0471-47be-9557-fc5fe9c9ff50", - "last_modified": 1702906502533 + ] }, { "base": { - "name": "Vikipediya (uz)", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (bs)", "urls": { "search": { - "base": "https://uz.wikipedia.org/wiki/Maxsus:Search", + "base": "https://bs.wikipedia.org/wiki/Posebno:Pretraga", "params": [ { "name": "sourceid", @@ -3516,7 +3865,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://uz.wikipedia.org/w/api.php", + "base": "https://bs.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -3525,33 +3874,33 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901779828, + "id": "c88785cc-48de-4f07-a40f-5d6564de3183", + "identifier": "wikipedia-bs", + "last_modified": 1702906502715, + "recordType": "engine", + "schema": 1702901745796, "variants": [ { "environment": { "locales": [ - "uz" + "bs" ] } } - ], - "identifier": "wikipedia-uz", - "recordType": "engine", - "id": "1b07d255-6f2c-4e2d-a4b4-b0e99aae39e9", - "last_modified": 1702906502529 + ] }, { "base": { - "name": "Wikipedia (vi)", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Viquipèdia (ca)", "urls": { "search": { - "base": "https://vi.wikipedia.org/wiki/Đặc_biệt:Tìm_kiếm", + "base": "https://ca.wikipedia.org/wiki/Especial:Cerca", "params": [ { "name": "sourceid", @@ -3561,7 +3910,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://vi.wikipedia.org/w/api.php", + "base": "https://ca.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -3570,33 +3919,34 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901780448, + "id": "7ed640c7-bc86-45dc-b07a-f7d8b5a8e079", + "identifier": "wikipedia-ca", + "last_modified": 1702906502499, + "recordType": "engine", + "schema": 1702901784840, "variants": [ { "environment": { "locales": [ - "vi" + "ca", + "ca-valencia" ] } } - ], - "identifier": "wikipedia-vi", - "recordType": "engine", - "id": "5b6f0a3f-1f94-473d-8bcc-c48984523b0c", - "last_modified": 1702906502525 + ] }, { "base": { - "name": "Wikipedia (wo)", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wicipedia (cy)", "urls": { "search": { - "base": "https://wo.wikipedia.org/wiki/Jagleel:Ceet", + "base": "https://cy.wikipedia.org/wiki/Arbennig:Search", "params": [ { "name": "sourceid", @@ -3606,7 +3956,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://wo.wikipedia.org/w/api.php", + "base": "https://cy.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -3615,33 +3965,33 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901781072, + "id": "0df7934b-5903-4382-ae3d-d898ac0487aa", + "identifier": "wikipedia-cy", + "last_modified": 1702906502711, + "recordType": "engine", + "schema": 1702901746399, "variants": [ { "environment": { "locales": [ - "wo" + "cy" ] } } - ], - "identifier": "wikipedia-wo", - "recordType": "engine", - "id": "3f1ba3c7-23f1-4ca1-aa0c-623fcae80ddd", - "last_modified": 1702906502521 + ] }, { "base": { - "name": "维基百科", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedie (cs)", "urls": { "search": { - "base": "https://zh.wikipedia.org/wiki/Special:搜索", + "base": "https://cs.wikipedia.org/wiki/Speciální:Hledání", "params": [ { "name": "sourceid", @@ -3651,7 +4001,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://zh.wikipedia.org/w/api.php", + "base": "https://cs.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -3660,47 +4010,43 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901781680, + "id": "2574b200-f878-4b0c-b7e0-49804b3f4b8e", + "identifier": "wikipedia-cz", + "last_modified": 1702906502493, + "recordType": "engine", + "schema": 1702901786063, "variants": [ { "environment": { "locales": [ - "zh-CN" + "cs" ] } } - ], - "identifier": "wikipedia-zh-CN", - "recordType": "engine", - "id": "c0f736ce-c219-4388-a242-48168237e3f5", - "last_modified": 1702906502518 + ] }, { "base": { - "name": "Wikipedia (zh)", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (da)", "urls": { "search": { - "base": "https://zh.wikipedia.org/wiki/Special:搜索", + "base": "https://da.wikipedia.org/wiki/Speciel:Søgning", "params": [ { "name": "sourceid", "value": "Mozilla-search" - }, - { - "name": "variant", - "value": "zh-tw" } ], "searchTermParamName": "search" }, "suggestions": { - "base": "https://zh.wikipedia.org/w/api.php", + "base": "https://da.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -3709,33 +4055,33 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901782303, + "id": "ae42fcaa-ddee-4212-acb9-8bc15d09a39d", + "identifier": "wikipedia-da", + "last_modified": 1702906502707, + "recordType": "engine", + "schema": 1702901746995, "variants": [ { "environment": { "locales": [ - "zh-TW" + "da" ] } } - ], - "identifier": "wikipedia-zh-TW", - "recordType": "engine", - "id": "864df79e-c03d-47ee-aacf-06242cffe951", - "last_modified": 1702906502515 + ] }, { "base": { - "name": "Вікіпедыя (be)", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (de)", "urls": { "search": { - "base": "https://be.wikipedia.org/wiki/Адмысловае:Search", + "base": "https://de.wikipedia.org/wiki/Spezial:Suche", "params": [ { "name": "sourceid", @@ -3745,7 +4091,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://be.wikipedia.org/w/api.php", + "base": "https://de.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -3754,33 +4100,33 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901782971, + "id": "def1d4ba-b8c8-46c4-9800-134b989ca058", + "identifier": "wikipedia-de", + "last_modified": 1702906502704, + "recordType": "engine", + "schema": 1702901747613, "variants": [ { "environment": { "locales": [ - "be" + "de" ] } } - ], - "identifier": "wikipedia-be", - "recordType": "engine", - "id": "5327659a-3b79-4071-95b5-b86f7cc25a25", - "last_modified": 1702906502510 + ] }, { "base": { - "name": "Вікіпэдыя (be-tarask)", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedija (dsb)", "urls": { "search": { - "base": "https://be-tarask.wikipedia.org/wiki/Спэцыяльныя:Пошук", + "base": "https://dsb.wikipedia.org/wiki/Specialne:Pytaś", "params": [ { "name": "sourceid", @@ -3790,7 +4136,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://be-tarask.wikipedia.org/w/api.php", + "base": "https://dsb.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -3799,33 +4145,33 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901783595, + "id": "c8a9299d-c9d2-4bf3-8f94-812d38af35f7", + "identifier": "wikipedia-dsb", + "last_modified": 1702906502701, + "recordType": "engine", + "schema": 1702901748278, "variants": [ { "environment": { "locales": [ - "be" + "dsb" ] } } - ], - "identifier": "wikipedia-be-tarask", - "recordType": "engine", - "id": "d7cb9b4b-f53a-49ea-ae04-27172fb108e9", - "last_modified": 1702906502506 + ] }, { "base": { - "name": "উইকিপিডিয়া (bn)", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (el)", "urls": { "search": { - "base": "https://bn.wikipedia.org/wiki/বিশেষ:Search", + "base": "https://el.wikipedia.org/wiki/Ειδικό:Αναζήτηση", "params": [ { "name": "sourceid", @@ -3835,7 +4181,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://bn.wikipedia.org/w/api.php", + "base": "https://el.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -3844,35 +4190,33 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901784204, + "id": "6ebc40f2-9307-4e58-8fd7-0e1a23b80723", + "identifier": "wikipedia-el", + "last_modified": 1702906502698, + "recordType": "engine", + "schema": 1702901748903, "variants": [ { "environment": { "locales": [ - "bn", - "bn-BD", - "bn-IN" + "el" ] } } - ], - "identifier": "wikipedia-bn", - "recordType": "engine", - "id": "a0a95a2c-83b7-4507-a4e9-5632ca9825dd", - "last_modified": 1702906502503 + ] }, { "base": { - "name": "Viquipèdia (ca)", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Vikipedio (eo)", "urls": { "search": { - "base": "https://ca.wikipedia.org/wiki/Especial:Cerca", + "base": "https://eo.wikipedia.org/wiki/Specialaĵo:Serĉi", "params": [ { "name": "sourceid", @@ -3882,7 +4226,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://ca.wikipedia.org/w/api.php", + "base": "https://eo.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -3891,30 +4235,29 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901784840, + "id": "25b42f42-d6e4-4193-be32-b4ca61cb55c7", + "identifier": "wikipedia-eo", + "last_modified": 1702906502695, + "recordType": "engine", + "schema": 1702901749556, "variants": [ { "environment": { "locales": [ - "ca", - "ca-valencia" + "eo" ] } } - ], - "identifier": "wikipedia-ca", - "recordType": "engine", - "id": "7ed640c7-bc86-45dc-b07a-f7d8b5a8e079", - "last_modified": 1702906502499 + ] }, { "base": { + "aliases": [ + "wikipedia" + ], + "classification": "unknown", "name": "Wikipedia (es)", "urls": { "search": { @@ -3937,12 +4280,12 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, + "id": "82025e38-8eda-48c2-b844-2b5e7d489c34", + "identifier": "wikipedia-es", + "last_modified": 1702906502496, + "recordType": "engine", "schema": 1702901785455, "variants": [ { @@ -3957,18 +4300,18 @@ ] } } - ], - "identifier": "wikipedia-es", - "recordType": "engine", - "id": "82025e38-8eda-48c2-b844-2b5e7d489c34", - "last_modified": 1702906502496 + ] }, { "base": { - "name": "Wikipedie (cs)", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Vikipeedia (et)", "urls": { "search": { - "base": "https://cs.wikipedia.org/wiki/Speciální:Hledání", + "base": "https://et.wikipedia.org/wiki/Eri:Otsimine", "params": [ { "name": "sourceid", @@ -3978,7 +4321,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://cs.wikipedia.org/w/api.php", + "base": "https://et.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -3987,33 +4330,33 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901786063, + "id": "87388ad0-c470-4a90-b79d-231e28b86eda", + "identifier": "wikipedia-et", + "last_modified": 1702906502691, + "recordType": "engine", + "schema": 1702901750177, "variants": [ { "environment": { "locales": [ - "cs" + "et" ] } } - ], - "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 (eu)", "urls": { "search": { - "base": "https://fr.wikipedia.org/wiki/Spécial:Recherche", + "base": "https://eu.wikipedia.org/wiki/Berezi:Bilatu", "params": [ { "name": "sourceid", @@ -4023,7 +4366,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://fr.wikipedia.org/w/api.php", + "base": "https://eu.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -4032,35 +4375,33 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901786670, + "id": "0d6704d1-3aed-420c-8c16-6aeefede499f", + "identifier": "wikipedia-eu", + "last_modified": 1702906502688, + "recordType": "engine", + "schema": 1702901750807, "variants": [ { "environment": { "locales": [ - "ff", - "fr", - "son" + "eu" ] } } - ], - "identifier": "wikipedia-fr", - "recordType": "engine", - "id": "a0261c4c-7b60-42c5-b35b-00ab57c5fbc4", - "last_modified": 1702906502488 + ] }, { "base": { - "name": "વિકિપીડિયા (gu)", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "ویکی‌پدیا (fa)", "urls": { "search": { - "base": "https://gu.wikipedia.org/wiki/વિશેષ:શોધ", + "base": "https://fa.wikipedia.org/wiki/ویژه:جستجو", "params": [ { "name": "sourceid", @@ -4070,7 +4411,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://gu.wikipedia.org/w/api.php", + "base": "https://fa.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -4079,33 +4420,33 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901787288, + "id": "ce737d17-06f0-46f2-8c88-97f796ad88dc", + "identifier": "wikipedia-fa", + "last_modified": 1702906502685, + "recordType": "engine", + "schema": 1702901751455, "variants": [ { "environment": { "locales": [ - "gu-IN" + "fa" ] } } - ], - "identifier": "wikipedia-gu", - "recordType": "engine", - "id": "ede0b78c-500a-4d1b-8236-cd5e7ceee815", - "last_modified": 1702906502485 + ] }, { "base": { - "name": "विकिपीडिया (hi)", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (fi)", "urls": { "search": { - "base": "https://hi.wikipedia.org/wiki/विशेष:खोज", + "base": "https://fi.wikipedia.org/wiki/Toiminnot:Haku", "params": [ { "name": "sourceid", @@ -4115,7 +4456,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://hi.wikipedia.org/w/api.php", + "base": "https://fi.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -4124,33 +4465,33 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901787905, + "id": "0820d593-6616-476a-ab3d-763c4d14dcc6", + "identifier": "wikipedia-fi", + "last_modified": 1702906502682, + "recordType": "engine", + "schema": 1702901752065, "variants": [ { "environment": { "locales": [ - "hi-IN" + "fi" ] } } - ], - "identifier": "wikipedia-hi", - "recordType": "engine", - "id": "8fc18864-53e1-47b4-8730-2e67962c7b32", - "last_modified": 1702906502482 + ] }, { "base": { - "name": "Wikipedia (hy)", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipédia (fr)", "urls": { "search": { - "base": "https://hy.wikipedia.org/wiki/Սպասարկող:Որոնել", + "base": "https://fr.wikipedia.org/wiki/Spécial:Recherche", "params": [ { "name": "sourceid", @@ -4160,7 +4501,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://hy.wikipedia.org/w/api.php", + "base": "https://fr.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -4169,33 +4510,35 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901788513, + "id": "a0261c4c-7b60-42c5-b35b-00ab57c5fbc4", + "identifier": "wikipedia-fr", + "last_modified": 1702906502488, + "recordType": "engine", + "schema": 1702901786670, "variants": [ { "environment": { "locales": [ - "hy-AM" + "ff", + "fr", + "son" ] } } - ], - "identifier": "wikipedia-hy", - "recordType": "engine", - "id": "c6286785-b61b-4288-aec1-9a7820c32694", - "last_modified": 1702906502479 + ] }, { "base": { - "name": "Wikipedia (it)", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedy (fy)", "urls": { "search": { - "base": "https://it.wikipedia.org/wiki/Speciale:Ricerca", + "base": "https://fy.wikipedia.org/wiki/Wiki:Sykje", "params": [ { "name": "sourceid", @@ -4205,7 +4548,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://it.wikipedia.org/w/api.php", + "base": "https://fy.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -4214,35 +4557,33 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901789119, + "id": "4a6a7952-460d-4951-a011-9fc414f2569a", + "identifier": "wikipedia-fy-NL", + "last_modified": 1702906502679, + "recordType": "engine", + "schema": 1702901752745, "variants": [ { "environment": { "locales": [ - "fur", - "it", - "sc" + "fy-NL" ] } } - ], - "identifier": "wikipedia-it", - "recordType": "engine", - "id": "de65dd23-0d4b-4bf0-bd97-0f536e184ded", - "last_modified": 1702906502476 + ] }, { "base": { - "name": "Wikipedia (ja)", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Vicipéid (ga)", "urls": { "search": { - "base": "https://ja.wikipedia.org/wiki/特別:検索", + "base": "https://ga.wikipedia.org/wiki/Speisialta:Search", "params": [ { "name": "sourceid", @@ -4252,7 +4593,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://ja.wikipedia.org/w/api.php", + "base": "https://ga.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -4261,34 +4602,33 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901789723, + "id": "d8d0e94c-27e7-42b1-a5e2-b24198021234", + "identifier": "wikipedia-ga-IE", + "last_modified": 1702906502675, + "recordType": "engine", + "schema": 1702901753350, "variants": [ { "environment": { "locales": [ - "ja", - "ja-JP-macos" + "ga-IE" ] } } - ], - "identifier": "wikipedia-ja", - "recordType": "engine", - "id": "a6bbf9df-acd4-47ea-9d26-6382b587c9c3", - "last_modified": 1702906502473 + ] }, { "base": { - "name": "위키백과 (ko)", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Uicipeid (gd)", "urls": { "search": { - "base": "https://ko.wikipedia.org/wiki/특수기능:찾기", + "base": "https://gd.wikipedia.org/wiki/Sònraichte:Search", "params": [ { "name": "sourceid", @@ -4298,7 +4638,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://ko.wikipedia.org/w/api.php", + "base": "https://gd.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -4307,33 +4647,33 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901790335, + "id": "df26225d-6726-4630-94ce-7a398598139b", + "identifier": "wikipedia-gd", + "last_modified": 1702906502672, + "recordType": "engine", + "schema": 1702901753945, "variants": [ { "environment": { "locales": [ - "ko" + "gd" ] } } - ], - "identifier": "wikipedia-kr", - "recordType": "engine", - "id": "831d7fed-79d2-4aac-9481-826300a03d65", - "last_modified": 1702906502470 + ] }, { "base": { - "name": "Wikipedia (no)", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (gl)", "urls": { "search": { - "base": "https://no.wikipedia.org/wiki/Spesial:Søk", + "base": "https://gl.wikipedia.org/wiki/Especial:Procurar", "params": [ { "name": "sourceid", @@ -4343,7 +4683,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://no.wikipedia.org/w/api.php", + "base": "https://gl.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -4352,33 +4692,33 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901790944, + "id": "cd385c40-96bc-43c4-9f30-eff738828401", + "identifier": "wikipedia-gl", + "last_modified": 1702906502668, + "recordType": "engine", + "schema": 1702901754558, "variants": [ { "environment": { "locales": [ - "nb-NO" + "gl" ] } } - ], - "identifier": "wikipedia-NO", - "recordType": "engine", - "id": "607d401f-70cd-4810-b9b5-497d5a9489f6", - "last_modified": 1702906502467 + ] }, { "base": { - "name": "विकिपीडिया (ne)", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Vikipetã (gn)", "urls": { "search": { - "base": "https://ne.wikipedia.org/wiki/विशेष:Search", + "base": "https://gn.wikipedia.org/wiki/Mba'echĩchĩ:Buscar", "params": [ { "name": "sourceid", @@ -4388,7 +4728,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://ne.wikipedia.org/w/api.php", + "base": "https://gn.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -4397,33 +4737,33 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901791565, + "id": "b66515df-d7b1-403c-b0df-22a5ce9dd07f", + "identifier": "wikipedia-gn", + "last_modified": 1702906502665, + "recordType": "engine", + "schema": 1702901755160, "variants": [ { "environment": { "locales": [ - "ne-NP" + "gn" ] } } - ], - "identifier": "wikipedia-ne", - "recordType": "engine", - "id": "dd1c5a28-733d-46b4-ae5e-fff82f94aec9", - "last_modified": 1702906502465 + ] }, { "base": { - "name": "Wikipedia (nn)", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "વિકિપીડિયા (gu)", "urls": { "search": { - "base": "https://nn.wikipedia.org/wiki/Spesial:Søk", + "base": "https://gu.wikipedia.org/wiki/વિશેષ:શોધ", "params": [ { "name": "sourceid", @@ -4433,7 +4773,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://nn.wikipedia.org/w/api.php", + "base": "https://gu.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -4442,33 +4782,33 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901792200, + "id": "ede0b78c-500a-4d1b-8236-cd5e7ceee815", + "identifier": "wikipedia-gu", + "last_modified": 1702906502485, + "recordType": "engine", + "schema": 1702901787288, "variants": [ { "environment": { "locales": [ - "nn-NO" + "gu-IN" ] } } - ], - "identifier": "wikipedia-NN", - "recordType": "engine", - "id": "c3462c25-acc1-4003-a57b-3931bfacdce5", - "last_modified": 1702906502462 + ] }, { "base": { - "name": "Wikipedia (pa)", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "ויקיפדיה", "urls": { "search": { - "base": "https://pa.wikipedia.org/wiki/ਖ਼ਾਸ:ਖੋਜੋ", + "base": "https://he.wikipedia.org/wiki/מיוחד:חיפוש", "params": [ { "name": "sourceid", @@ -4478,7 +4818,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://pa.wikipedia.org/w/api.php", + "base": "https://he.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -4487,33 +4827,33 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901792817, + "id": "f96aab0d-3562-445c-a70f-5805ea1d25fe", + "identifier": "wikipedia-he", + "last_modified": 1702906502662, + "recordType": "engine", + "schema": 1702901755766, "variants": [ { "environment": { "locales": [ - "pa-IN" + "he" ] } } - ], - "identifier": "wikipedia-pa", - "recordType": "engine", - "id": "fa428a75-44d5-4f21-84bd-64935d483540", - "last_modified": 1702906502459 + ] }, { "base": { - "name": "Wikipedia (pt)", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "विकिपीडिया (hi)", "urls": { "search": { - "base": "https://pt.wikipedia.org/wiki/Especial:Pesquisar", + "base": "https://hi.wikipedia.org/wiki/विशेष:खोज", "params": [ { "name": "sourceid", @@ -4523,7 +4863,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://pt.wikipedia.org/w/api.php", + "base": "https://hi.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -4532,34 +4872,33 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901793438, + "id": "8fc18864-53e1-47b4-8730-2e67962c7b32", + "identifier": "wikipedia-hi", + "last_modified": 1702906502482, + "recordType": "engine", + "schema": 1702901787905, "variants": [ { "environment": { "locales": [ - "pt-BR", - "pt-PT" + "hi-IN" ] } } - ], - "identifier": "wikipedia-pt", - "recordType": "engine", - "id": "f2e04c1b-b19f-40d9-841d-9b48b7ba9da2", - "last_modified": 1702906502456 + ] }, { "base": { - "name": "Wikipedia (pl)", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedija (hr)", "urls": { "search": { - "base": "https://pl.wikipedia.org/wiki/Specjalna:Szukaj", + "base": "https://hr.wikipedia.org/wiki/Posebno:Traži", "params": [ { "name": "sourceid", @@ -4569,7 +4908,7 @@ "searchTermParamName": "search" }, "suggestions": { - "base": "https://pl.wikipedia.org/w/api.php", + "base": "https://hr.wikipedia.org/w/api.php", "params": [ { "name": "action", @@ -4578,2515 +4917,2325 @@ ], "searchTermParamName": "search" } - }, - "aliases": [ - "wikipedia" - ], - "classification": "unknown" + } }, - "schema": 1702901794065, + "id": "eb03a427-1f71-4df9-b609-a36064d2d0e2", + "identifier": "wikipedia-hr", + "last_modified": 1702906502658, + "recordType": "engine", + "schema": 1702901756375, "variants": [ { "environment": { "locales": [ - "pl", - "szl" + "hr" ] - } - } - ], - "identifier": "wikipedia-pl", - "recordType": "engine", - "id": "980cba80-0c46-4c05-8df0-aaea23d57732", - "last_modified": 1702906502453 + } + } + ] }, { "base": { - "name": "eBay", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedija (hsb)", "urls": { "search": { - "base": "https://www.ebay.com/sch/", + "base": "https://hsb.wikipedia.org/wiki/Specialnje:Pytać", "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://hsb.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": "5235d5f1-e04d-4ba3-b53b-35a8d09d2142", + "identifier": "wikipedia-hsb", + "last_modified": 1702906502655, + "recordType": "engine", + "schema": 1702901756979, "variants": [ { "environment": { "locales": [ - "en-US" - ], - "regions": [ - "us" + "hsb" ] } } - ], - "identifier": "ebay", - "recordType": "engine", - "id": "d8b7ed81-00f3-478a-a835-dc0677d7190a", - "last_modified": 1702906502450 + ] }, { "base": { - "name": "eBay", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipédia (hu)", "urls": { "search": { - "base": "https://www.ebay.es/sch/", + "base": "https://hu.wikipedia.org/wiki/Speciális:Keresés", "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://hu.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": "9a10f883-2da7-4070-8a73-543153bdd52c", + "identifier": "wikipedia-hu", + "last_modified": 1702906502651, + "recordType": "engine", + "schema": 1702901757634, "variants": [ { "environment": { "locales": [ - "an", - "ast", - "ca", - "ca-valencia", - "es-ES", - "eu", - "gl" + "hu" ] } } - ], - "identifier": "ebay-es", - "recordType": "engine", - "id": "0592aedc-f4e5-4873-a8d4-da9482071613", - "last_modified": 1702906502448 + ] }, { "base": { - "name": "eBay", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (hy)", "urls": { "search": { - "base": "https://www.ebay.fr/sch/", + "base": "https://hy.wikipedia.org/wiki/Սպասարկող:Որոնել", "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://hy.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": "c6286785-b61b-4288-aec1-9a7820c32694", + "identifier": "wikipedia-hy", + "last_modified": 1702906502479, + "recordType": "engine", + "schema": 1702901788513, "variants": [ { "environment": { "locales": [ - "br", - "fr", - "wo" - ], - "excludedRegions": [ - "be", - "ca", - "ch" + "hy-AM" ] } } - ], - "identifier": "ebay-fr", - "recordType": "engine", - "id": "d327156c-dfc4-47f6-a620-3846a21144d9", - "last_modified": 1702906502445 + ] }, { "base": { - "name": "eBay", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (ia)", "urls": { "search": { - "base": "https://www.befr.ebay.be/sch/", + "base": "https://ia.wikipedia.org/wiki/Special:Recerca", "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://ia.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": "6787b684-aa4f-48d2-9673-fce3b528c71c", + "identifier": "wikipedia-ia", + "last_modified": 1702906502647, + "recordType": "engine", + "schema": 1702901758249, "variants": [ { "environment": { "locales": [ - "br", - "en-US", - "fr", - "wo", - "fy-NL", - "nl" - ], - "regions": [ - "be" + "ia" ] } } - ], - "identifier": "ebay-be", - "recordType": "engine", - "id": "5f40614e-4fc6-4dee-a897-07b258e00820", - "last_modified": 1702906502442 + ] }, { "base": { - "name": "eBay", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (id)", "urls": { "search": { - "base": "https://www.ebay.ca/sch/", + "base": "https://id.wikipedia.org/wiki/Istimewa:Pencarian", "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://id.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": "163da4a0-e59f-423a-bebc-3ec3bd68b941", + "identifier": "wikipedia-id", + "last_modified": 1702906502644, + "recordType": "engine", + "schema": 1702901758856, "variants": [ { "environment": { "locales": [ - "br", - "en-US", - "fr", - "wo" - ], - "regions": [ - "ca" - ] - } - }, - { - "environment": { - "locales": [ - "en-CA" + "id" ] } } - ], - "identifier": "ebay-ca", - "recordType": "engine", - "id": "336d7fa9-7579-4981-bfb0-024c6c5f977d", - "last_modified": 1702906502438 + ] }, { "base": { - "name": "eBay", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (is)", "urls": { "search": { - "base": "https://www.ebay.ch/sch/", + "base": "https://is.wikipedia.org/wiki/Kerfissíða:Leit", "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://is.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": "26ca2f38-0472-45de-83fd-78d67aaecd22", + "identifier": "wikipedia-is", + "last_modified": 1702906502640, + "recordType": "engine", + "schema": 1702901759494, "variants": [ { "environment": { "locales": [ - "br", - "de", - "dsb", - "en-US", - "fr", - "hsb", - "wo" - ], - "regions": [ - "ch" - ] - } - }, - { - "environment": { - "locales": [ - "rm" + "is" ] } } - ], - "identifier": "ebay-ch", - "recordType": "engine", - "id": "8d8484a2-b856-4edd-93d7-c53a7aaca6e1", - "last_modified": 1702906502435 + ] }, { "base": { - "name": "eBay", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (it)", "urls": { "search": { - "base": "https://www.ebay.co.uk/sch/", + "base": "https://it.wikipedia.org/wiki/Speciale:Ricerca", "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://it.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": "de65dd23-0d4b-4bf0-bd97-0f536e184ded", + "identifier": "wikipedia-it", + "last_modified": 1702906502476, + "recordType": "engine", + "schema": 1702901789119, "variants": [ { "environment": { "locales": [ - "cy", - "en-GB", - "gd" - ], - "excludedRegions": [ - "au", - "ie" - ] - } - }, - { - "environment": { - "locales": [ - "sco" - ], - "regions": [ - "gb" - ] - } - }, - { - "environment": { - "locales": [ - "en-US" - ], - "regions": [ - "gb" + "fur", + "it", + "sc" ] } } - ], - "identifier": "ebay-uk", - "recordType": "engine", - "id": "37f83917-8d6e-46d6-9d15-8e7779339d18", - "last_modified": 1702906502432 + ] }, { "base": { - "name": "eBay", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (ja)", "urls": { "search": { - "base": "https://www.ebay.com.au/sch/", + "base": "https://ja.wikipedia.org/wiki/特別:検索", "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://ja.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": "a6bbf9df-acd4-47ea-9d26-6382b587c9c3", + "identifier": "wikipedia-ja", + "last_modified": 1702906502473, + "recordType": "engine", + "schema": 1702901789723, "variants": [ { "environment": { "locales": [ - "cy", - "en-GB", - "en-US", - "gd" - ], - "regions": [ - "au" + "ja", + "ja-JP-macos" ] } } - ], - "identifier": "ebay-au", - "recordType": "engine", - "id": "e5a64fe0-2cb9-4b22-83d3-4e529c3702a9", - "last_modified": 1702906502429 + ] }, { "base": { - "name": "eBay", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "ვიკიპედია (ka)", "urls": { "search": { - "base": "https://www.ebay.ie/sch/", + "base": "https://ka.wikipedia.org/wiki/სპეციალური:ძიება", "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://ka.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": "ca784382-7beb-4a93-b211-745d4d71ec6c", + "identifier": "wikipedia-ka", + "last_modified": 1702906502636, + "recordType": "engine", + "schema": 1702901760115, "variants": [ { "environment": { "locales": [ - "cy", - "en-GB", - "en-US", - "gd" - ], - "regions": [ - "ie" - ] - } - }, - { - "environment": { - "locales": [ - "ga-IE" + "ka" ] } } - ], - "identifier": "ebay-ie", - "recordType": "engine", - "id": "0a9fed24-cd33-4293-bac8-eb26a285c9f1", - "last_modified": 1702906502427 + ] }, { "base": { - "name": "eBay", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (kab)", "urls": { "search": { - "base": "https://www.ebay.de/sch/", + "base": "https://kab.wikipedia.org/wiki/Uslig:Search", "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://kab.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": "e6f20ba5-3013-4b18-ad7a-351a64e62ec4", + "identifier": "wikipedia-kab", + "last_modified": 1702906502632, + "recordType": "engine", + "schema": 1702901760752, "variants": [ { "environment": { "locales": [ - "de", - "dsb", - "hsb" - ], - "excludedRegions": [ - "at", - "ch" + "kab" ] } } - ], - "identifier": "ebay-de", - "recordType": "engine", - "id": "e991a5f7-616e-43b0-b349-7995b837a520", - "last_modified": 1702906502424 + ] }, { "base": { - "name": "eBay", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Уикипедия (kk)", "urls": { "search": { - "base": "https://www.ebay.at/sch/", + "base": "https://kk.wikipedia.org/wiki/Арнайы:Іздеу", "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://kk.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": "15f00a29-0d68-4ff1-89d1-5e58b95618b7", + "identifier": "wikipedia-kk", + "last_modified": 1702906502628, + "recordType": "engine", + "schema": 1702901761359, "variants": [ { "environment": { "locales": [ - "de", - "dsb", - "hsb" - ], - "regions": [ - "at" + "kk" ] } } - ], - "identifier": "ebay-at", - "recordType": "engine", - "id": "8dee7454-6c6c-4b22-a411-4e474c7afbb3", - "last_modified": 1702906502421 + ] }, { "base": { - "name": "eBay", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "វីគីភីឌា (km)", "urls": { "search": { - "base": "https://www.ebay.nl/sch/", - "params": [ - { - "name": "toolid", - "value": "20004" - }, - { - "name": "campid", - "value": "{partnerCode}" - }, - { - "name": "mkevt", - "value": "1" - }, - { - "name": "mkcid", - "value": "1" - }, + "base": "https://km.wikipedia.org/wiki/ពិសេស:ស្វែងរក", + "params": [ { - "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://km.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": "c8a7bec0-7f33-44e1-9521-363530993acc", + "identifier": "wikipedia-km", + "last_modified": 1702906502625, + "recordType": "engine", + "schema": 1702901761969, "variants": [ { "environment": { "locales": [ - "fy-NL", - "nl" - ], - "excludedRegions": [ - "be" - ] - } - }, - { - "environment": { - "locales": [ - "en-US" - ], - "regions": [ - "nl" + "km" ] } } - ], - "identifier": "ebay-nl", - "recordType": "engine", - "id": "670475c3-d56f-4f87-9834-ddb12d0e8cbd", - "last_modified": 1702906502418 + ] }, { "base": { - "name": "eBay", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (kn)", "urls": { "search": { - "base": "https://www.ebay.it/sch/", + "base": "https://kn.wikipedia.org/wiki/ವಿಶೇಷ:Search", "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://kn.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": "ce510c56-9d5e-416c-aef0-277bfbaac464", + "identifier": "wikipedia-kn", + "last_modified": 1702906502622, + "recordType": "engine", + "schema": 1702901762594, "variants": [ { "environment": { "locales": [ - "fur", - "it", - "lij", - "sc" + "kn" ] } } - ], - "identifier": "ebay-it", - "recordType": "engine", - "id": "f36dd44c-ba5f-44e5-8b19-672eb1ed62fd", - "last_modified": 1702906502415 + ] }, { "base": { - "name": "Amazon.com", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "위키백과 (ko)", "urls": { "search": { - "base": "https://www.amazon.com/s", - "searchTermParamName": "k" + "base": "https://ko.wikipedia.org/wiki/특수기능:찾기", + "params": [ + { + "name": "sourceid", + "value": "Mozilla-search" + } + ], + "searchTermParamName": "search" + }, + "suggestions": { + "base": "https://ko.wikipedia.org/w/api.php", + "params": [ + { + "name": "action", + "value": "opensearch" + } + ], + "searchTermParamName": "search" } - }, - "aliases": [ - "amazon" - ], - "classification": "unknown" + } }, - "notes": "Amazon.com (us only)", - "schema": 1702901802672, + "id": "831d7fed-79d2-4aac-9481-826300a03d65", + "identifier": "wikipedia-kr", + "last_modified": 1702906502470, + "recordType": "engine", + "schema": 1702901790335, "variants": [ { "environment": { - "regions": [ - "us" + "locales": [ + "ko" ] } } - ], - "identifier": "amazondotcom-us", - "recordType": "engine", - "id": "788a2ded-6872-4742-8115-c14dde7a18f9", - "last_modified": 1702906502412 + ] }, { "base": { - "name": "Amazon.co.jp", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (lij)", "urls": { "search": { - "base": "https://www.amazon.co.jp/exec/obidos/external-search/", + "base": "https://lij.wikipedia.org/wiki/Speçiale:Riçerca", "params": [ - { - "name": "mode", - "value": "blended" - }, - { - "name": "tag", - "value": "mozillajapan-fx-22" - }, { "name": "sourceid", "value": "Mozilla-search" } ], - "searchTermParamName": "field-keywords" + "searchTermParamName": "search" + }, + "suggestions": { + "base": "https://lij.wikipedia.org/w/api.php", + "params": [ + { + "name": "action", + "value": "opensearch" + } + ], + "searchTermParamName": "search" } - }, - "aliases": [ - "amazon" - ], - "classification": "unknown" + } }, - "schema": 1702901805111, + "id": "5ec04310-966d-40da-af5b-f24383d40c8a", + "identifier": "wikipedia-lij", + "last_modified": 1702906502619, + "recordType": "engine", + "schema": 1702901763202, "variants": [ { "environment": { - "regions": [ - "jp" + "locales": [ + "lij" ] } } - ], - "identifier": "amazon-jp", - "recordType": "engine", - "id": "9d089e46-dc94-4d4f-8f17-cc07b59aa9e4", - "last_modified": 1702906502401 + ] }, { "base": { - "name": "Wolne Lektury", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "ວິກິພີເດຍ (lo)", "urls": { "search": { - "base": "https://wolnelektury.pl/szukaj/", - "searchTermParamName": "q" + "base": "https://lo.wikipedia.org/wiki/ພິເສດ:ຊອກຫາ", + "params": [ + { + "name": "sourceid", + "value": "Mozilla-search" + } + ], + "searchTermParamName": "search" }, "suggestions": { - "base": "https://wolnelektury.pl/katalog/jtags/", + "base": "https://lo.wikipedia.org/w/api.php", "params": [ { - "name": "mozhint", - "value": "1" + "name": "action", + "value": "opensearch" } ], - "searchTermParamName": "q" + "searchTermParamName": "search" } - }, - "classification": "unknown" + } }, - "schema": 1702901811217, + "id": "515c4522-284d-468f-926a-eb7eb8a55e22", + "identifier": "wikipedia-lo", + "last_modified": 1702906502615, + "recordType": "engine", + "schema": 1702901763817, "variants": [ { "environment": { "locales": [ - "pl", - "szl" + "lo" ] } } - ], - "identifier": "wolnelektury-pl", - "recordType": "engine", - "id": "42348cb0-69a9-4451-8bd6-71bad5bc4e3f", - "last_modified": 1702906502368 + ] }, { "base": { - "name": "Allegro", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (lt)", "urls": { "search": { - "base": "https://allegro.pl/listing", + "base": "https://lt.wikipedia.org/wiki/Specialus:Paieška", "params": [ { "name": "sourceid", "value": "Mozilla-search" } ], - "searchTermParamName": "string" + "searchTermParamName": "search" + }, + "suggestions": { + "base": "https://lt.wikipedia.org/w/api.php", + "params": [ + { + "name": "action", + "value": "opensearch" + } + ], + "searchTermParamName": "search" } - }, - "classification": "unknown" + } }, - "schema": 1702901811834, + "id": "774990fb-aabc-4008-86d3-adf12f89ccd4", + "identifier": "wikipedia-lt", + "last_modified": 1702906502612, + "recordType": "engine", + "schema": 1702901764432, "variants": [ { "environment": { "locales": [ - "pl", - "szl" + "lt" ] } } - ], - "identifier": "allegro-pl", - "recordType": "engine", - "id": "3cc3f699-284a-4320-b131-395d9b218ade", - "last_modified": 1702906502364 + ] }, { "base": { - "name": "GMX Suche", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Vikipedeja (ltg)", "urls": { "search": { - "base": "https://go.gmx.net/br/moz_search_web/", + "base": "https://ltg.wikipedia.org/wiki/Seviškuo: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://ltg.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": "52871fd0-a24a-443b-a2d4-17eb09951691", + "identifier": "wikipedia-ltg", + "last_modified": 1702906502609, + "recordType": "engine", + "schema": 1702901765044, "variants": [ { "environment": { - "distributions": [ - "gmx" + "locales": [ + "ltg" ] } } - ], - "identifier": "gmx-de", - "recordType": "engine", - "id": "5240e0d8-8c2c-436b-b478-3fa0b506410f", - "last_modified": 1702906502361 + ] }, { "base": { - "name": "GMX Shopping", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Vikipēdija", "urls": { "search": { - "base": "https://shopping.gmx.net/", + "base": "https://lv.wikipedia.org/wiki/Special:Search", "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://lv.wikipedia.org/w/api.php", + "params": [ + { + "name": "action", + "value": "opensearch" + } + ], + "searchTermParamName": "search" } - }, - "classification": "unknown" + } }, - "schema": 1702901813066, + "id": "395b6c93-f7ff-47b8-b895-6f7bb99f9c56", + "identifier": "wikipedia-lv", + "last_modified": 1702906502606, + "recordType": "engine", + "schema": 1702901765673, "variants": [ { "environment": { - "distributions": [ - "gmx" + "locales": [ + "lv" ] } } - ], - "identifier": "gmx-shopping", - "recordType": "engine", - "id": "3a738904-cf8c-4d87-8972-ea98768d44f0", - "last_modified": 1702906502357 + ] }, { "base": { - "name": "GMX Search", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Википедија (mk)", "urls": { "search": { - "base": "https://go.gmx.co.uk/br/moz_search_web/", + "base": "https://mk.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://mk.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": "a3aa8882-cbb0-4002-b0fc-b6ff5cdb9d92", + "identifier": "wikipedia-mk", + "last_modified": 1702906502602, + "recordType": "engine", + "schema": 1702901766290, "variants": [ { "environment": { - "distributions": [ - "gmxcouk" + "locales": [ + "mk" ] } } - ], - "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": "विकिपीडिया (mr)", "urls": { "search": { - "base": "https://go.gmx.es/br/moz_search_web/", + "base": "https://mr.wikipedia.org/wiki/विशेष:शोधा", "params": [ { - "name": "enc", - "value": "UTF-8" + "name": "sourceid", + "value": "Mozilla-search" } ], - "searchTermParamName": "q" + "searchTermParamName": "search" }, "suggestions": { - "base": "https://suggestplugin.gmx.es/s", + "base": "https://mr.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": "09f48c9b-b420-4312-8c60-aeb4358e0b97", + "identifier": "wikipedia-mr", + "last_modified": 1702906502599, + "recordType": "engine", + "schema": 1702901766916, "variants": [ { "environment": { - "distributions": [ - "gmxes" + "locales": [ + "mr" ] } } - ], - "identifier": "gmx-es", - "recordType": "engine", - "id": "bdb578f4-6362-4789-911d-193c98ec5378", - "last_modified": 1702906502351 + ] }, { "base": { - "name": "GMX - Recherche web", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (ms)", "urls": { "search": { - "base": "https://go.gmx.fr/br/moz_search_web/", + "base": "https://ms.wikipedia.org/wiki/Khas:Gelintar", "params": [ { - "name": "enc", - "value": "UTF-8" + "name": "sourceid", + "value": "Mozilla-search" } ], - "searchTermParamName": "q" + "searchTermParamName": "search" }, "suggestions": { - "base": "https://suggestplugin.gmx.fr/s", + "base": "https://ms.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": "7039c888-4bd6-4b82-a164-ca3bfc93b24c", + "identifier": "wikipedia-ms", + "last_modified": 1702906502595, + "recordType": "engine", + "schema": 1702901767543, "variants": [ { "environment": { - "distributions": [ - "gmxfr" + "locales": [ + "ms" ] } } - ], - "identifier": "gmx-fr", - "recordType": "engine", - "id": "2b628809-284d-468a-831f-95dc479f30da", - "last_modified": 1702906502349 + ] }, { "base": { - "name": "Qwant Junior", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (my)", "urls": { "search": { - "base": "https://www.qwantjunior.com/", + "base": "https://my.wikipedia.org/wiki/Special:Search", "params": [ { - "name": "client", - "value": "{partnerCode}" + "name": "sourceid", + "value": "Mozilla-search" } ], - "searchTermParamName": "q" + "searchTermParamName": "search" }, "suggestions": { - "base": "https://api.qwant.com/egp/suggest/", + "base": "https://my.wikipedia.org/w/api.php", "params": [ { - "name": "client", + "name": "action", "value": "opensearch" } ], - "searchTermParamName": "q" + "searchTermParamName": "search" } - }, - "partnerCode": "firefoxqwant", - "classification": "unknown" + } }, - "schema": 1702901815498, + "id": "0616dd06-2bfd-46f0-9870-832a1db8a622", + "identifier": "wikipedia-my", + "last_modified": 1702906502592, + "recordType": "engine", + "schema": 1702901768156, "variants": [ { "environment": { - "locales": [ - "fr" - ], - "distributions": [ - "qwant-001", - "qwant-002" + "locales": [ + "my" ] } } - ], - "identifier": "qwantjr", - "recordType": "engine", - "id": "7996de41-caf5-4e52-8d96-4ee89ede5d5c", - "last_modified": 1702906502346 + ] }, { "base": { - "name": "Seznam", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "विकिपीडिया (ne)", "urls": { "search": { - "base": "https://search.seznam.cz/", + "base": "https://ne.wikipedia.org/wiki/विशेष:Search", "params": [ { "name": "sourceid", - "value": "{partnerCode}" + "value": "Mozilla-search" } ], - "searchTermParamName": "q" + "searchTermParamName": "search" }, "suggestions": { - "base": "https://suggest.seznam.cz/fulltext_ff", - "searchTermParamName": "phrase" + "base": "https://ne.wikipedia.org/w/api.php", + "params": [ + { + "name": "action", + "value": "opensearch" + } + ], + "searchTermParamName": "search" } - }, - "partnerCode": "firefox", - "classification": "unknown" + } }, - "schema": 1702901816717, + "id": "dd1c5a28-733d-46b4-ae5e-fff82f94aec9", + "identifier": "wikipedia-ne", + "last_modified": 1702906502465, + "recordType": "engine", + "schema": 1702901791565, "variants": [ { "environment": { "locales": [ - "cs" + "ne-NP" ] } } - ], - "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 (nl)", "urls": { "search": { - "base": "https://go.1und1.de/br/moz_search_web/", + "base": "https://nl.wikipedia.org/wiki/Speciaal:Zoeken", "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://nl.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": "9e423eca-df00-4385-ab15-4e61bc220b05", + "identifier": "wikipedia-nl", + "last_modified": 1702906502588, + "recordType": "engine", + "schema": 1702901768793, "variants": [ { "environment": { - "distributions": [ - "1und1" + "locales": [ + "nl" ] } } - ], - "identifier": "1und1", - "recordType": "engine", - "id": "e870e51d-efed-41d3-8d65-f833ee8e9d96", - "last_modified": 1702906502336 + ] }, { "base": { - "name": "WEB.DE Suche", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipèdia (oc)", "urls": { "search": { - "base": "https://go.web.de/br/moz_search_web/", + "base": "https://oc.wikipedia.org/wiki/Especial:Recèrca", "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://oc.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": "e3e2c4a1-4914-4a27-96f8-63fb6a90f490", + "identifier": "wikipedia-oc", + "last_modified": 1702906502585, + "recordType": "engine", + "schema": 1702901769405, "variants": [ { "environment": { - "distributions": [ - "webde" + "locales": [ + "oc" ] } } - ], - "identifier": "webde", - "recordType": "engine", - "id": "3d42fa9a-08ca-4057-b79d-917c576e2634", - "last_modified": 1702906502332 + ] }, { "base": { - "name": "mail.com search", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (pa)", "urls": { "search": { - "base": "https://go.mail.com/br/moz_search_web/", + "base": "https://pa.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://pa.wikipedia.org/w/api.php", "params": [ { - "name": "brand", - "value": "mailcom" - }, - { - "name": "origin", - "value": "br_splugin_ff_sg" + "name": "action", + "value": "opensearch" } ], - "searchTermParamName": "q" + "searchTermParamName": "search" } - }, - "classification": "unknown" + } }, - "schema": 1702901818560, + "id": "fa428a75-44d5-4f21-84bd-64935d483540", + "identifier": "wikipedia-pa", + "last_modified": 1702906502459, + "recordType": "engine", + "schema": 1702901792817, "variants": [ { "environment": { - "distributions": [ - "mail.com" + "locales": [ + "pa-IN" ] } } - ], - "identifier": "mailcom", - "recordType": "engine", - "id": "39375b5f-77bb-46cb-979d-345c002fe35f", - "last_modified": 1702906502329 + ] }, { "base": { - "name": "楽天市場", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (pl)", "urls": { "search": { - "base": "https://pt.afl.rakuten.co.jp/c/013ca98b.cd7c5f0c/", + "base": "https://pl.wikipedia.org/wiki/Specjalna:Szukaj", "params": [ { - "name": "sv", - "value": "2" - }, + "name": "sourceid", + "value": "Mozilla-search" + } + ], + "searchTermParamName": "search" + }, + "suggestions": { + "base": "https://pl.wikipedia.org/w/api.php", + "params": [ { - "name": "p", - "value": "0" + "name": "action", + "value": "opensearch" } ], - "searchTermParamName": "sitem" + "searchTermParamName": "search" } - }, - "charset": "EUC-JP", - "classification": "unknown" + } }, - "schema": 1702901819182, + "id": "980cba80-0c46-4c05-8df0-aaea23d57732", + "identifier": "wikipedia-pl", + "last_modified": 1702906502453, + "recordType": "engine", + "schema": 1702901794065, "variants": [ { "environment": { "locales": [ - "ja", - "ja-JP-macos" + "pl", + "szl" ] } } - ], - "identifier": "rakuten", - "recordType": "engine", - "id": "ab6f7178-b0be-452a-82f2-f5df8df2d836", - "last_modified": 1702906502326 + ] }, { "base": { - "name": "Azerdict", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (pt)", "urls": { "search": { - "base": "https://azerdict.com/english/", - "searchTermParamName": "word" + "base": "https://pt.wikipedia.org/wiki/Especial:Pesquisar", + "params": [ + { + "name": "sourceid", + "value": "Mozilla-search" + } + ], + "searchTermParamName": "search" + }, + "suggestions": { + "base": "https://pt.wikipedia.org/w/api.php", + "params": [ + { + "name": "action", + "value": "opensearch" + } + ], + "searchTermParamName": "search" } - }, - "classification": "unknown" + } }, - "schema": 1702901819798, + "id": "f2e04c1b-b19f-40d9-841d-9b48b7ba9da2", + "identifier": "wikipedia-pt", + "last_modified": 1702906502456, + "recordType": "engine", + "schema": 1702901793438, "variants": [ { "environment": { "locales": [ - "az" + "pt-BR", + "pt-PT" ] } } - ], - "identifier": "azerdict", - "recordType": "engine", - "id": "786aa916-a331-4b0c-8099-85927dd87be8", - "last_modified": 1702906502323 + ] }, { "base": { - "name": "Ordbok", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (rm)", "urls": { "search": { - "base": "https://ordbok.uib.no/perl/ordbok.cgi", + "base": "https://rm.wikipedia.org/wiki/Spezial:Search", "params": [ { "name": "sourceid", "value": "Mozilla-search" } ], - "searchTermParamName": "OPP" + "searchTermParamName": "search" + }, + "suggestions": { + "base": "https://rm.wikipedia.org/w/api.php", + "params": [ + { + "name": "action", + "value": "opensearch" + } + ], + "searchTermParamName": "search" } - }, - "classification": "unknown" + } }, - "schema": 1702901820444, + "id": "4042df85-6b55-4a40-9c3f-ef74b05ef5be", + "identifier": "wikipedia-rm", + "last_modified": 1702906502581, + "recordType": "engine", + "schema": 1702901770011, "variants": [ { "environment": { "locales": [ - "nb-NO", - "nn-NO" + "rm" ] } } - ], - "identifier": "bok-NO", - "recordType": "engine", - "id": "7ed2240b-b161-4b49-a7fe-35db89544f74", - "last_modified": 1702906502320 + ] }, { "base": { - "name": "Ceneje.si", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (ro)", "urls": { "search": { - "base": "https://www.ceneje.si/search_new.aspx", + "base": "https://ro.wikipedia.org/wiki/Special:Căutare", "params": [ { - "name": "FF-SearchBox", - "value": "1" + "name": "sourceid", + "value": "Mozilla-search" } ], - "searchTermParamName": "q" + "searchTermParamName": "search" + }, + "suggestions": { + "base": "https://ro.wikipedia.org/w/api.php", + "params": [ + { + "name": "action", + "value": "opensearch" + } + ], + "searchTermParamName": "search" } - }, - "classification": "unknown" + } }, - "schema": 1702901821058, + "id": "c2f3213e-f43f-4776-b1cb-b70d8457b6c7", + "identifier": "wikipedia-ro", + "last_modified": 1702906502577, + "recordType": "engine", + "schema": 1702901770632, "variants": [ { "environment": { "locales": [ - "sl" + "ro" ] } } - ], - "identifier": "ceneji", - "recordType": "engine", - "id": "5e515970-4129-48fc-b0d0-8a61c92903d2", - "last_modified": 1702906502317 + ] }, { "base": { - "name": "Cốc Cốc", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Википедия (ru)", "urls": { "search": { - "base": "https://coccoc.com/search", + "base": "https://ru.wikipedia.org/wiki/Служебная:Поиск", "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://ru.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": "8f2b997a-8bfe-436d-9393-b9abb52522ef", + "identifier": "wikipedia-ru", + "last_modified": 1702906502574, + "recordType": "engine", + "schema": 1702901771244, "variants": [ { "environment": { "locales": [ - "vi" + "ru" ] } } - ], - "identifier": "coccoc", - "recordType": "engine", - "id": "20104daa-cb8a-40b9-a8c5-2433f4476c3e", - "last_modified": 1702906502314 + ] }, { "base": { - "name": "다음", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (si)", "urls": { "search": { - "base": "https://search.daum.net/search", + "base": "https://si.wikipedia.org/wiki/විශේෂ:ගවේෂණය", "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://si.wikipedia.org/w/api.php", "params": [ { - "name": "DA", - "value": "JU2" + "name": "action", + "value": "opensearch" } ], - "searchTermParamName": "q" + "searchTermParamName": "search" } - }, - "classification": "unknown" + } }, - "schema": 1702901822275, + "id": "6a54dc6e-623a-4839-afd7-224e06d7ba73", + "identifier": "wikipedia-si", + "last_modified": 1702906502571, + "recordType": "engine", + "schema": 1702901771856, "variants": [ { "environment": { "locales": [ - "ko" + "si" ] } } - ], - "identifier": "daum-kr", - "recordType": "engine", - "id": "3330e927-6733-4239-9738-b41c5c460b11", - "last_modified": 1702906502311 + ] }, { "base": { - "name": "Ecosia", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipédia (sk)", "urls": { "search": { - "base": "https://www.ecosia.org/search", + "base": "https://sk.wikipedia.org/wiki/Špeciálne:Hľadanie", "params": [ { - "name": "tt", - "value": "{partnerCode}" + "name": "sourceid", + "value": "Mozilla-search" } ], - "searchTermParamName": "q" + "searchTermParamName": "search" }, "suggestions": { - "base": "https://ac.ecosia.org/autocomplete", + "base": "https://sk.wikipedia.org/w/api.php", "params": [ { - "name": "type", - "value": "list" + "name": "action", + "value": "opensearch" } ], - "searchTermParamName": "q" + "searchTermParamName": "search" } - }, - "partnerCode": "mzl", - "classification": "general" + } }, - "schema": 1702901822899, + "id": "f9d77028-e386-4093-aacd-a8c2a56acbc0", + "identifier": "wikipedia-sk", + "last_modified": 1702906502568, + "recordType": "engine", + "schema": 1702901772461, "variants": [ { "environment": { "locales": [ - "de" + "sk" ] } } - ], - "identifier": "ecosia", - "recordType": "engine", - "id": "e8e4a7e3-aead-43e3-887d-4064a186bd70", - "last_modified": 1702906502308 + ] }, { "base": { - "name": "EUdict Eng->Cro", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedija (sl)", "urls": { "search": { - "base": "https://eudict.com/", + "base": "https://sl.wikipedia.org/wiki/Posebno:Iskanje", "params": [ { - "name": "lang", - "value": "engcro" + "name": "sourceid", + "value": "Mozilla-search" } ], - "searchTermParamName": "word" + "searchTermParamName": "search" + }, + "suggestions": { + "base": "https://sl.wikipedia.org/w/api.php", + "params": [ + { + "name": "action", + "value": "opensearch" + } + ], + "searchTermParamName": "search" } - }, - "classification": "unknown" + } }, - "schema": 1702901823499, + "id": "887d2a1b-7275-4a4e-afa2-9157eb98a7d5", + "identifier": "wikipedia-sl", + "last_modified": 1702906502565, + "recordType": "engine", + "schema": 1702901773075, "variants": [ { "environment": { "locales": [ - "hr" + "sl" ] } } - ], - "identifier": "eudict", - "recordType": "engine", - "id": "8fe5af92-3b6d-4cbe-a736-4cad01a21efe", - "last_modified": 1702906502306 + ] }, { "base": { - "name": "Am Faclair Beag", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (sq)", "urls": { "search": { - "base": "https://www.faclair.com/", - "searchTermParamName": "txtSearch" + "base": "https://sq.wikipedia.org/wiki/Speciale:Kërkim", + "params": [ + { + "name": "sourceid", + "value": "Mozilla-search" + } + ], + "searchTermParamName": "search" + }, + "suggestions": { + "base": "https://sq.wikipedia.org/w/api.php", + "params": [ + { + "name": "action", + "value": "opensearch" + } + ], + "searchTermParamName": "search" } - }, - "classification": "unknown" + } }, - "schema": 1702901824109, + "id": "bc8c03e7-747a-408c-a0ee-6598ca9fad4a", + "identifier": "wikipedia-sq", + "last_modified": 1702906502561, + "recordType": "engine", + "schema": 1702901773681, "variants": [ { "environment": { "locales": [ - "gd" + "sq" ] } } - ], - "identifier": "faclair-beag", - "recordType": "engine", - "id": "d21e561b-64ae-4a33-b2f0-c4a490a5cf82", - "last_modified": 1702906502303 + ] }, { "base": { - "name": "Gule sider", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Википедија (sr)", "urls": { "search": { - "base": "https://www.gulesider.no/search", + "base": "https://sr.wikipedia.org/wiki/Посебно:Претражи", + "params": [ + { + "name": "sourceid", + "value": "Mozilla-search" + } + ], + "searchTermParamName": "search" + }, + "suggestions": { + "base": "https://sr.wikipedia.org/w/api.php", "params": [ { - "name": "what", - "value": "all" - }, - { - "name": "cmpid", - "value": "fre_partner_fire_gssbtop" + "name": "action", + "value": "opensearch" } ], - "searchTermParamName": "q" + "searchTermParamName": "search" } - }, - "classification": "unknown" + } }, - "schema": 1702901824715, + "id": "d381964d-d1e3-4378-962c-6ac5b89161f8", + "identifier": "wikipedia-sr", + "last_modified": 1702906502558, + "recordType": "engine", + "schema": 1702901774302, "variants": [ { "environment": { "locales": [ - "nb-NO", - "nn-NO" + "sr" ] } } - ], - "identifier": "gulesider-NO", - "recordType": "engine", - "id": "0f9d78f8-e8ad-40be-8f50-b71d5da0f4cc", - "last_modified": 1702906502300 + ] }, { "base": { - "name": "LEO Eng-Deu", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (sv)", "urls": { "search": { - "base": "https://dict.leo.org/englisch-deutsch/{searchTerms}" + "base": "https://sv.wikipedia.org/wiki/Special:Sök", + "params": [ + { + "name": "sourceid", + "value": "Mozilla-search" + } + ], + "searchTermParamName": "search" }, "suggestions": { - "base": "https://dict.leo.org/dictQuery/m-query/conf/ende/query.conf/strlist.json", + "base": "https://sv.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": "d0708bee-d246-4eb9-81ff-50d5947837ec", + "identifier": "wikipedia-sv-SE", + "last_modified": 1702906502555, + "recordType": "engine", + "schema": 1702901774920, "variants": [ { "environment": { "locales": [ - "de", - "dsb", - "hsb", - "rm" + "sv-SE" ] } } - ], - "identifier": "leo_ende_de", - "recordType": "engine", - "id": "2669ab65-3d93-4432-a960-90413be80ae0", - "last_modified": 1702906502297 + ] }, { "base": { - "name": "พจนานุกรม ลองดู", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "விக்கிப்பீடியா (ta)", "urls": { "search": { - "base": "https://dict.longdo.org/", + "base": "https://ta.wikipedia.org/wiki/சிறப்பு:Search", "params": [ { - "name": "src", - "value": "moz" + "name": "sourceid", + "value": "Mozilla-search" } ], "searchTermParamName": "search" }, "suggestions": { - "base": "https://search.longdo.com/Suggest/HeadSearch", + "base": "https://ta.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": "78ed73b5-4afd-467e-b7ee-c96658f345c6", + "identifier": "wikipedia-ta", + "last_modified": 1702906502552, + "recordType": "engine", + "schema": 1702901775549, "variants": [ { "environment": { "locales": [ - "th" + "ta" ] } } - ], - "identifier": "longdo", - "recordType": "engine", - "id": "fcc54178-e432-4d2b-820e-50f389bfb396", - "last_modified": 1702906502295 + ] }, { "base": { - "name": "Mapy.cz", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "వికీపీడియా (te)", "urls": { "search": { - "base": "https://www.mapy.cz/", + "base": "https://te.wikipedia.org/wiki/ప్రత్యేక:అన్వేషణ", "params": [ { "name": "sourceid", - "value": "Searchmodule_3" + "value": "Mozilla-search" } ], - "searchTermParamName": "q" + "searchTermParamName": "search" + }, + "suggestions": { + "base": "https://te.wikipedia.org/w/api.php", + "params": [ + { + "name": "action", + "value": "opensearch" + } + ], + "searchTermParamName": "search" } - }, - "classification": "unknown" + } }, - "schema": 1702901826526, + "id": "391eb3c6-de7a-4aaf-8027-3ad1b8c3c00a", + "identifier": "wikipedia-te", + "last_modified": 1702906502548, + "recordType": "engine", + "schema": 1702901776173, "variants": [ { "environment": { "locales": [ - "cs" + "te" ] } } - ], - "identifier": "mapy-cz", - "recordType": "engine", - "id": "1ad708f0-5736-4f65-aeb4-31e5eca1c598", - "last_modified": 1702906502292 + ] }, { "base": { - "name": "MercadoLibre Argentina", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "วิกิพีเดีย", "urls": { "search": { - "base": "https://www.mercadolibre.com.ar/jm/search", - "searchTermParamName": "as_word" + "base": "https://th.wikipedia.org/wiki/พิเศษ:ค้นหา", + "params": [ + { + "name": "sourceid", + "value": "Mozilla-search" + } + ], + "searchTermParamName": "search" + }, + "suggestions": { + "base": "https://th.wikipedia.org/w/api.php", + "params": [ + { + "name": "action", + "value": "opensearch" + } + ], + "searchTermParamName": "search" } - }, - "classification": "unknown" + } }, - "schema": 1702901827142, + "id": "5c7903a3-5a44-41a0-aac2-fc26fe8f8fe7", + "identifier": "wikipedia-th", + "last_modified": 1702906502545, + "recordType": "engine", + "schema": 1702901776774, "variants": [ { "environment": { "locales": [ - "es-AR" + "th" ] } } - ], - "identifier": "mercadolibre", - "recordType": "engine", - "id": "8111d157-e064-40fa-993d-e1d972534754", - "last_modified": 1702906502289 + ] }, { "base": { - "name": "MercadoLibre Chile", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (tl)", "urls": { "search": { - "base": "https://www.mercadolibre.cl/jm/search", - "searchTermParamName": "as_word" + "base": "https://tl.wikipedia.org/wiki/Natatangi:Maghanap", + "params": [ + { + "name": "sourceid", + "value": "Mozilla-search" + } + ], + "searchTermParamName": "search" + }, + "suggestions": { + "base": "https://tl.wikipedia.org/w/api.php", + "params": [ + { + "name": "action", + "value": "opensearch" + } + ], + "searchTermParamName": "search" } - }, - "classification": "unknown" + } }, - "schema": 1702901827757, + "id": "d0c8b2f5-accc-45f4-adf4-a7377692869b", + "identifier": "wikipedia-tl", + "last_modified": 1702906502542, + "recordType": "engine", + "schema": 1702901777391, "variants": [ { "environment": { "locales": [ - "es-CL" + "tl" ] } } - ], - "identifier": "mercadolibre-cl", - "recordType": "engine", - "id": "5659791c-6637-4ba9-b46b-83f16df084cd", - "last_modified": 1702906502286 + ] }, { "base": { - "name": "MercadoLibre Mexico", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (tr)", "urls": { "search": { - "base": "https://www.mercadolibre.com.mx/jm/search", - "searchTermParamName": "as_word" - } - }, - "classification": "unknown" - }, - "schema": 1702901828372, - "variants": [ - { - "environment": { - "locales": [ - "es-MX" - ] + "base": "https://tr.wikipedia.org/wiki/Özel:Ara", + "params": [ + { + "name": "sourceid", + "value": "Mozilla-search" + } + ], + "searchTermParamName": "search" + }, + "suggestions": { + "base": "https://tr.wikipedia.org/w/api.php", + "params": [ + { + "name": "action", + "value": "opensearch" + } + ], + "searchTermParamName": "search" } } - ], - "identifier": "mercadolibre-mx", - "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, + "id": "8885ffbb-f450-4642-8204-ed9128b29e51", + "identifier": "wikipedia-tr", + "last_modified": 1702906502539, + "recordType": "engine", + "schema": 1702901777988, "variants": [ { "environment": { "locales": [ - "pt-BR" + "tr" ] } } - ], - "identifier": "mercadolivre", - "recordType": "engine", - "id": "62453dfa-0d82-4961-b6e2-241647aa04b6", - "last_modified": 1702906502281 + ] }, { "base": { - "name": "네이버", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Вікіпедія (uk)", "urls": { "search": { - "base": "https://search.naver.com/search.naver", + "base": "https://uk.wikipedia.org/wiki/Спеціальна:Пошук", "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://uk.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": "3b65a693-177a-4bd2-9d66-8c038e005800", + "identifier": "wikipedia-uk", + "last_modified": 1702906502536, + "recordType": "engine", + "schema": 1702901778586, "variants": [ { "environment": { "locales": [ - "ko" + "uk" ] } } - ], - "identifier": "naver-kr", - "recordType": "engine", - "id": "88d22607-619b-4c7a-8708-bb0caef15e18", - "last_modified": 1702906502278 + ] }, { "base": { - "name": "Odpiralni Časi", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "ویکیپیڈیا (ur)", "urls": { "search": { - "base": "https://www.odpiralnicasi.com/spots", + "base": "https://ur.wikipedia.org/wiki/خاص:تلاش", "params": [ { - "name": "source", - "value": "1" + "name": "sourceid", + "value": "Mozilla-search" } ], - "searchTermParamName": "q" + "searchTermParamName": "search" + }, + "suggestions": { + "base": "https://ur.wikipedia.org/w/api.php", + "params": [ + { + "name": "action", + "value": "opensearch" + } + ], + "searchTermParamName": "search" } - }, - "classification": "unknown" + } }, - "schema": 1702901830238, + "id": "52a714ba-0471-47be-9557-fc5fe9c9ff50", + "identifier": "wikipedia-ur", + "last_modified": 1702906502533, + "recordType": "engine", + "schema": 1702901779213, "variants": [ { "environment": { "locales": [ - "sl" + "ur" ] } } - ], - "identifier": "odpiralni", - "recordType": "engine", - "id": "2039744c-adce-459b-a547-e3dba931c2a0", - "last_modified": 1702906502275 + ] }, { "base": { - "name": "Pazaruvaj", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Vikipediya (uz)", "urls": { "search": { - "base": "https://www.pazaruvaj.com/CategorySearch.php", - "searchTermParamName": "st" + "base": "https://uz.wikipedia.org/wiki/Maxsus:Search", + "params": [ + { + "name": "sourceid", + "value": "Mozilla-search" + } + ], + "searchTermParamName": "search" + }, + "suggestions": { + "base": "https://uz.wikipedia.org/w/api.php", + "params": [ + { + "name": "action", + "value": "opensearch" + } + ], + "searchTermParamName": "search" } - }, - "classification": "unknown" + } }, - "schema": 1702901830856, + "id": "1b07d255-6f2c-4e2d-a4b4-b0e99aae39e9", + "identifier": "wikipedia-uz", + "last_modified": 1702906502529, + "recordType": "engine", + "schema": 1702901779828, "variants": [ { "environment": { "locales": [ - "bg" + "uz" ] } } - ], - "identifier": "pazaruvaj", - "recordType": "engine", - "id": "ddf4875a-61d4-4677-8aad-74fb3ef2e1df", - "last_modified": 1702906502272 + ] }, { "base": { - "name": "Priberam", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (vi)", "urls": { "search": { - "base": "https://www.priberam.pt/dlpo/firefox.aspx", - "searchTermParamName": "pal" + "base": "https://vi.wikipedia.org/wiki/Đặc_biệt:Tìm_kiếm", + "params": [ + { + "name": "sourceid", + "value": "Mozilla-search" + } + ], + "searchTermParamName": "search" + }, + "suggestions": { + "base": "https://vi.wikipedia.org/w/api.php", + "params": [ + { + "name": "action", + "value": "opensearch" + } + ], + "searchTermParamName": "search" } - }, - "charset": "ISO-8859-15", - "classification": "unknown" + } }, - "schema": 1702901831479, + "id": "5b6f0a3f-1f94-473d-8bcc-c48984523b0c", + "identifier": "wikipedia-vi", + "last_modified": 1702906502525, + "recordType": "engine", + "schema": 1702901780448, "variants": [ { "environment": { "locales": [ - "pt-PT" + "vi" ] } } - ], - "identifier": "priberam", - "recordType": "engine", - "id": "4bc3282e-f318-443c-8b2f-c144205657d4", - "last_modified": 1702906502270 + ] }, { "base": { - "name": "Prisjakt", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (wo)", "urls": { "search": { - "base": "https://www.prisjakt.nu/search", + "base": "https://wo.wikipedia.org/wiki/Jagleel:Ceet", + "params": [ + { + "name": "sourceid", + "value": "Mozilla-search" + } + ], "searchTermParamName": "search" }, "suggestions": { - "base": "https://www.prisjakt.nu/plugins/opensearch/suggestions.php", + "base": "https://wo.wikipedia.org/w/api.php", + "params": [ + { + "name": "action", + "value": "opensearch" + } + ], "searchTermParamName": "search" } - }, - "classification": "unknown" + } }, - "schema": 1702901832077, + "id": "3f1ba3c7-23f1-4ca1-aa0c-623fcae80ddd", + "identifier": "wikipedia-wo", + "last_modified": 1702906502521, + "recordType": "engine", + "schema": 1702901781072, "variants": [ { "environment": { "locales": [ - "sv-SE" + "wo" ] } } - ], - "identifier": "prisjakt-sv-SE", - "recordType": "engine", - "id": "e4f4c143-7b0a-4ae5-b461-cd22da9da90a", - "last_modified": 1702906502267 + ] }, { "base": { - "name": "Readmoo 讀墨電子書", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "维基百科", "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" + } + ], + "searchTermParamName": "search" + }, + "suggestions": { + "base": "https://zh.wikipedia.org/w/api.php", + "params": [ { - "name": "st", - "value": "true" + "name": "action", + "value": "opensearch" } ], - "searchTermParamName": "q" + "searchTermParamName": "search" } - }, - "classification": "unknown" + } }, - "schema": 1702901832677, + "id": "c0f736ce-c219-4388-a242-48168237e3f5", + "identifier": "wikipedia-zh-CN", + "last_modified": 1702906502518, + "recordType": "engine", + "schema": 1702901781680, "variants": [ { "environment": { "locales": [ - "zh-TW" + "zh-CN" ] } } - ], - "identifier": "readmoo", - "recordType": "engine", - "id": "f1570611-5dfa-4028-851c-fafaa8324bbd", - "last_modified": 1702906502264 + ] }, { "base": { - "name": "Salidzini.lv", + "aliases": [ + "wikipedia" + ], + "classification": "unknown", + "name": "Wikipedia (zh)", "urls": { "search": { - "base": "https://www.salidzini.lv/search.php", + "base": "https://zh.wikipedia.org/wiki/Special:搜索", "params": [ { - "name": "utm_source", - "value": "firefox-plugin" + "name": "sourceid", + "value": "Mozilla-search" + }, + { + "name": "variant", + "value": "zh-tw" } ], - "searchTermParamName": "q" + "searchTermParamName": "search" }, "suggestions": { - "base": "https://www.salidzini.lv/search_suggest_opensearch.php", - "searchTermParamName": "q" - } - }, - "classification": "unknown" - }, - "schema": 1702901833283, - "variants": [ - { - "environment": { - "locales": [ - "ltg", - "lv" - ] + "base": "https://zh.wikipedia.org/w/api.php", + "params": [ + { + "name": "action", + "value": "opensearch" + } + ], + "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": { @@ -7107,9 +7256,12 @@ ], "searchTermParamName": "search" } - }, - "classification": "unknown" + } }, + "id": "45b4556e-8133-40c8-9a9b-63bc3ad91f53", + "identifier": "wiktionary-te", + "last_modified": 1702906502253, + "recordType": "engine", "schema": 1702901835109, "variants": [ { @@ -7119,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", @@ -7183,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": [ { @@ -7197,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": { @@ -7221,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": [ { @@ -7235,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": 1713282817053 + "timestamp": 1715090108535 } 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/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 282cb6c376..c5a6b8bb44 100644 --- a/services/settings/dumps/security-state/intermediates.json +++ b/services/settings/dumps/security-state/intermediates.json @@ -1,5 +1,275 @@ { "data": [ + { + "schema": 1714791237816, + "derHash": "GH49Z7oIe5+b7zzWIUXn+cJ0esNiZk6YzFWsQmpBkCg=", + "subject": "CN=TrustID Enterprise TLS CA 3,O=IdenTrust,C=US", + "subjectDN": "MEcxCzAJBgNVBAYTAlVTMRIwEAYDVQQKEwlJZGVuVHJ1c3QxJDAiBgNVBAMTG1RydXN0SUQgRW50ZXJwcmlzZSBUTFMgQ0EgMw==", + "whitelist": false, + "attachment": { + "hash": "53e98087ee13a616940a25bcb7b29f323e76727d6b09f8a57cbfb312edde1355", + "size": 2718, + "filename": "Yo1JYtjv0A0JKQdpcsZDiGbDJrXCSPCztPMl6CEDfpQ=.pem", + "location": "security-state-staging/intermediates/b5aa0ed9-762a-4350-9342-c28467d8d68d.pem", + "mimetype": "application/x-pem-file" + }, + "pubKeyHash": "Yo1JYtjv0A0JKQdpcsZDiGbDJrXCSPCztPMl6CEDfpQ=", + "crlite_enrolled": false, + "id": "c89e9df3-c41a-4718-878c-dc3107762b8f", + "last_modified": 1714791423311 + }, + { + "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=", @@ -26766,24 +27036,6 @@ "id": "15c61ec9-5b89-4812-8240-d6bf15fa38dd", "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=", @@ -30691,5 +30943,5 @@ "last_modified": 1559865884636 } ], - "timestamp": 1713887823023 + "timestamp": 1715137023171 } 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 -- cgit v1.2.3