(default settings) |
brave 1.48 |
chrome 111.5563 |
duckduckgo 7.72 |
edge 110.1587 |
firefox 110.2 |
focus 110.0 |
opera 3.5 |
safari 16.3 |
yandex 2303.0 |
---|---|---|---|---|---|---|---|---|---|
State Partitioning tests
Which browsers isolate websites to prevent them from sharing data to track you?
A common vulnerability of web browsers is that they allow tracking companies to 'tag' your browser with some data ('state') that identifies you. When third-party trackers are embedded in websites, they can see this identifying data as you browse to different websites. Fortunately, it is possible for this category of leaks to be fixed by partitioning all data stored in the browser such that no data can be shared between websites.
| |||||||||
Alt-SvcAlt-Svc allows the server to indicate to the web browser that a resource should be loaded on a different server. Because this is a persistent setting, it could be used to track users across websites if it is not correctly partitioned. | –
write: async () => {
// Clear Alt-Svc caching first.
let responseText = "";
await fetch("https://altsvc.privacytests2.org:4433/clear");
await sleepMs(100);
responseText = await fetchText("https://altsvc.privacytests2.org:4433/protocol");
console.log("after clear:", responseText);
// Store "h3" state in Alt-Svc cache
await fetch("https://altsvc.privacytests2.org:4433/set");
await sleepMs(100);
responseText = await fetchText("https://altsvc.privacytests2.org:4433/protocol");
console.log("after set:", responseText);
}
read: async () => {
const protocol = await fetchText("https://altsvc.privacytests2.org:4433/protocol");
if ((new URL(location)).searchParams.get("thirdparty") === "same") {
if (protocol !== "h3") {
throw new Error("Unsupported");
}
}
return protocol;
}
result, same first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
result, different first party: h2, h2, h2, h2, h2
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async () => {
// Clear Alt-Svc caching first.
let responseText = "";
await fetch("https://altsvc.privacytests2.org:4433/clear");
await sleepMs(100);
responseText = await fetchText("https://altsvc.privacytests2.org:4433/protocol");
console.log("after clear:", responseText);
// Store "h3" state in Alt-Svc cache
await fetch("https://altsvc.privacytests2.org:4433/set");
await sleepMs(100);
responseText = await fetchText("https://altsvc.privacytests2.org:4433/protocol");
console.log("after set:", responseText);
}
read: async () => {
const protocol = await fetchText("https://altsvc.privacytests2.org:4433/protocol");
if ((new URL(location)).searchParams.get("thirdparty") === "same") {
if (protocol !== "h3") {
throw new Error("Unsupported");
}
}
return protocol;
}
result, same first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
result, different first party: h2, h2, h2, h2, h2
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async () => {
// Clear Alt-Svc caching first.
let responseText = "";
await fetch("https://altsvc.privacytests2.org:4433/clear");
await sleepMs(100);
responseText = await fetchText("https://altsvc.privacytests2.org:4433/protocol");
console.log("after clear:", responseText);
// Store "h3" state in Alt-Svc cache
await fetch("https://altsvc.privacytests2.org:4433/set");
await sleepMs(100);
responseText = await fetchText("https://altsvc.privacytests2.org:4433/protocol");
console.log("after set:", responseText);
}
read: async () => {
const protocol = await fetchText("https://altsvc.privacytests2.org:4433/protocol");
if ((new URL(location)).searchParams.get("thirdparty") === "same") {
if (protocol !== "h3") {
throw new Error("Unsupported");
}
}
return protocol;
}
result, same first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
result, different first party: h2, h2, h2, h2, h2
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async () => {
// Clear Alt-Svc caching first.
let responseText = "";
await fetch("https://altsvc.privacytests2.org:4433/clear");
await sleepMs(100);
responseText = await fetchText("https://altsvc.privacytests2.org:4433/protocol");
console.log("after clear:", responseText);
// Store "h3" state in Alt-Svc cache
await fetch("https://altsvc.privacytests2.org:4433/set");
await sleepMs(100);
responseText = await fetchText("https://altsvc.privacytests2.org:4433/protocol");
console.log("after set:", responseText);
}
read: async () => {
const protocol = await fetchText("https://altsvc.privacytests2.org:4433/protocol");
if ((new URL(location)).searchParams.get("thirdparty") === "same") {
if (protocol !== "h3") {
throw new Error("Unsupported");
}
}
return protocol;
}
result, same first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
result, different first party: h2, h2, h2, h2, h2
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async () => {
// Clear Alt-Svc caching first.
let responseText = "";
await fetch("https://altsvc.privacytests2.org:4433/clear");
await sleepMs(100);
responseText = await fetchText("https://altsvc.privacytests2.org:4433/protocol");
console.log("after clear:", responseText);
// Store "h3" state in Alt-Svc cache
await fetch("https://altsvc.privacytests2.org:4433/set");
await sleepMs(100);
responseText = await fetchText("https://altsvc.privacytests2.org:4433/protocol");
console.log("after set:", responseText);
}
read: async () => {
const protocol = await fetchText("https://altsvc.privacytests2.org:4433/protocol");
if ((new URL(location)).searchParams.get("thirdparty") === "same") {
if (protocol !== "h3") {
throw new Error("Unsupported");
}
}
return protocol;
}
result, same first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
result, different first party: h2, h2, h2, h2, h2
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async () => {
// Clear Alt-Svc caching first.
let responseText = "";
await fetch("https://altsvc.privacytests2.org:4433/clear");
await sleepMs(100);
responseText = await fetchText("https://altsvc.privacytests2.org:4433/protocol");
console.log("after clear:", responseText);
// Store "h3" state in Alt-Svc cache
await fetch("https://altsvc.privacytests2.org:4433/set");
await sleepMs(100);
responseText = await fetchText("https://altsvc.privacytests2.org:4433/protocol");
console.log("after set:", responseText);
}
read: async () => {
const protocol = await fetchText("https://altsvc.privacytests2.org:4433/protocol");
if ((new URL(location)).searchParams.get("thirdparty") === "same") {
if (protocol !== "h3") {
throw new Error("Unsupported");
}
}
return protocol;
}
result, same first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
result, different first party: h2, h2, h2, h2, h2
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async () => {
// Clear Alt-Svc caching first.
let responseText = "";
await fetch("https://altsvc.privacytests2.org:4433/clear");
await sleepMs(100);
responseText = await fetchText("https://altsvc.privacytests2.org:4433/protocol");
console.log("after clear:", responseText);
// Store "h3" state in Alt-Svc cache
await fetch("https://altsvc.privacytests2.org:4433/set");
await sleepMs(100);
responseText = await fetchText("https://altsvc.privacytests2.org:4433/protocol");
console.log("after set:", responseText);
}
read: async () => {
const protocol = await fetchText("https://altsvc.privacytests2.org:4433/protocol");
if ((new URL(location)).searchParams.get("thirdparty") === "same") {
if (protocol !== "h3") {
throw new Error("Unsupported");
}
}
return protocol;
}
result, same first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
result, different first party: h2, h2, h2, h2, h2
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async () => {
// Clear Alt-Svc caching first.
let responseText = "";
await fetch("https://altsvc.privacytests2.org:4433/clear");
await sleepMs(100);
responseText = await fetchText("https://altsvc.privacytests2.org:4433/protocol");
console.log("after clear:", responseText);
// Store "h3" state in Alt-Svc cache
await fetch("https://altsvc.privacytests2.org:4433/set");
await sleepMs(100);
responseText = await fetchText("https://altsvc.privacytests2.org:4433/protocol");
console.log("after set:", responseText);
}
read: async () => {
const protocol = await fetchText("https://altsvc.privacytests2.org:4433/protocol");
if ((new URL(location)).searchParams.get("thirdparty") === "same") {
if (protocol !== "h3") {
throw new Error("Unsupported");
}
}
return protocol;
}
result, same first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
result, different first party: h2, h2, h2, h2, h2
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async () => {
// Clear Alt-Svc caching first.
let responseText = "";
await fetch("https://altsvc.privacytests2.org:4433/clear");
await sleepMs(100);
responseText = await fetchText("https://altsvc.privacytests2.org:4433/protocol");
console.log("after clear:", responseText);
// Store "h3" state in Alt-Svc cache
await fetch("https://altsvc.privacytests2.org:4433/set");
await sleepMs(100);
responseText = await fetchText("https://altsvc.privacytests2.org:4433/protocol");
console.log("after set:", responseText);
}
read: async () => {
const protocol = await fetchText("https://altsvc.privacytests2.org:4433/protocol");
if ((new URL(location)).searchParams.get("thirdparty") === "same") {
if (protocol !== "h3") {
throw new Error("Unsupported");
}
}
return protocol;
}
result, same first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
result, different first party: h2, h2, h2, h2, h2
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
|
blobA 'blob URL' is a local reference to some raw data. Trackers can use a blob URL to share data between websites. |
write: (secret) => {
try {
let blobURL = URL.createObjectURL(new Blob([secret]));
fetch(`${baseURI}blob?mode=write&key=${secret}&blobUrl=${encodeURIComponent(blobURL)}`);
} catch (e) {
throw new Error("Unsupported");
}
}
read: async (secret) => {
let response = await fetch(`${baseURI}blob?mode=read&key=${secret}`);
let result = await response.json();
let blobUrl = decodeURIComponent(result.blobUrl);
let blobResponse = await fetch(blobUrl);
return blobResponse.text();
}
result, same first party: d1fcc439-fd6b-436a-82b2-7b07a48be42c, 1f4220c6-7f46-46e8-8382-1e68e0aa93da, ef8196ed-3102-40f2-aaed-e1d2f9575201, 38204c3d-6a9e-46bc-af79-d9ee0b83f570, f629fded-a393-4d32-ae92-8bdf1f8a74ea
result, different first party: d1fcc439-fd6b-436a-82b2-7b07a48be42c, 1f4220c6-7f46-46e8-8382-1e68e0aa93da, ef8196ed-3102-40f2-aaed-e1d2f9575201, 38204c3d-6a9e-46bc-af79-d9ee0b83f570, f629fded-a393-4d32-ae92-8bdf1f8a74ea
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
|
write: (secret) => {
try {
let blobURL = URL.createObjectURL(new Blob([secret]));
fetch(`${baseURI}blob?mode=write&key=${secret}&blobUrl=${encodeURIComponent(blobURL)}`);
} catch (e) {
throw new Error("Unsupported");
}
}
read: async (secret) => {
let response = await fetch(`${baseURI}blob?mode=read&key=${secret}`);
let result = await response.json();
let blobUrl = decodeURIComponent(result.blobUrl);
let blobResponse = await fetch(blobUrl);
return blobResponse.text();
}
result, same first party: e616b402-f54e-4dc2-9e80-d9eec6232bfe, 652a7406-26a0-4a22-af9f-ce850b7fbbd3, 79219e1e-2539-47a6-abc4-1fd8f37165cc, 15bc25d1-56d0-4759-be41-017c903613e7, be2f218f-5ad3-4493-9213-39554685d498
result, different first party: e616b402-f54e-4dc2-9e80-d9eec6232bfe, 652a7406-26a0-4a22-af9f-ce850b7fbbd3, 79219e1e-2539-47a6-abc4-1fd8f37165cc, 15bc25d1-56d0-4759-be41-017c903613e7, be2f218f-5ad3-4493-9213-39554685d498
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
|
write: (secret) => {
try {
let blobURL = URL.createObjectURL(new Blob([secret]));
fetch(`${baseURI}blob?mode=write&key=${secret}&blobUrl=${encodeURIComponent(blobURL)}`);
} catch (e) {
throw new Error("Unsupported");
}
}
read: async (secret) => {
let response = await fetch(`${baseURI}blob?mode=read&key=${secret}`);
let result = await response.json();
let blobUrl = decodeURIComponent(result.blobUrl);
let blobResponse = await fetch(blobUrl);
return blobResponse.text();
}
result, same first party: 6ffc1af5-0fbf-4d7d-a31c-296bcdd0d082, f423d7a7-7618-4ace-b53b-dc34937c1f28, 2bc1291b-59ea-4d02-a622-2208cd77a86a, 962edccf-6436-4ce1-973a-61eb16239ca6, f423bd8d-1973-4936-83f0-d6555f81e6cc
result, different first party: 6ffc1af5-0fbf-4d7d-a31c-296bcdd0d082, f423d7a7-7618-4ace-b53b-dc34937c1f28, 2bc1291b-59ea-4d02-a622-2208cd77a86a, 962edccf-6436-4ce1-973a-61eb16239ca6, f423bd8d-1973-4936-83f0-d6555f81e6cc
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
|
write: (secret) => {
try {
let blobURL = URL.createObjectURL(new Blob([secret]));
fetch(`${baseURI}blob?mode=write&key=${secret}&blobUrl=${encodeURIComponent(blobURL)}`);
} catch (e) {
throw new Error("Unsupported");
}
}
read: async (secret) => {
let response = await fetch(`${baseURI}blob?mode=read&key=${secret}`);
let result = await response.json();
let blobUrl = decodeURIComponent(result.blobUrl);
let blobResponse = await fetch(blobUrl);
return blobResponse.text();
}
result, same first party: 323f9e44-496a-4e27-a9b4-225f7c18bf25, 23b7ec2e-8886-4a43-992a-1fd056cbbdb0, 8ca82aee-8734-4e8f-8dd3-0f0abf781d9a, 45894f2d-308e-4158-8c66-9ca24681fd96, a0c6800b-b78d-4a5f-a81e-6ca5c1c4680b
result, different first party: 323f9e44-496a-4e27-a9b4-225f7c18bf25, 23b7ec2e-8886-4a43-992a-1fd056cbbdb0, 8ca82aee-8734-4e8f-8dd3-0f0abf781d9a, 45894f2d-308e-4158-8c66-9ca24681fd96, a0c6800b-b78d-4a5f-a81e-6ca5c1c4680b
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
|
write: (secret) => {
try {
let blobURL = URL.createObjectURL(new Blob([secret]));
fetch(`${baseURI}blob?mode=write&key=${secret}&blobUrl=${encodeURIComponent(blobURL)}`);
} catch (e) {
throw new Error("Unsupported");
}
}
read: async (secret) => {
let response = await fetch(`${baseURI}blob?mode=read&key=${secret}`);
let result = await response.json();
let blobUrl = decodeURIComponent(result.blobUrl);
let blobResponse = await fetch(blobUrl);
return blobResponse.text();
}
result, same first party: 49451103-9325-4e88-ac98-7edeea660ba3, 43326fa1-9ee9-4c2f-9357-7eb5933ed74a, 9035382f-0641-4971-a562-e79bee21ecfa, d8bfb7bb-dac0-4596-a5b8-f5a3d0a52d0c, 7673fe6f-8ed3-42bf-9801-fd846fb30dde
result, different first party: 49451103-9325-4e88-ac98-7edeea660ba3, 43326fa1-9ee9-4c2f-9357-7eb5933ed74a, 9035382f-0641-4971-a562-e79bee21ecfa, d8bfb7bb-dac0-4596-a5b8-f5a3d0a52d0c, 7673fe6f-8ed3-42bf-9801-fd846fb30dde
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
|
write: (secret) => {
try {
let blobURL = URL.createObjectURL(new Blob([secret]));
fetch(`${baseURI}blob?mode=write&key=${secret}&blobUrl=${encodeURIComponent(blobURL)}`);
} catch (e) {
throw new Error("Unsupported");
}
}
read: async (secret) => {
let response = await fetch(`${baseURI}blob?mode=read&key=${secret}`);
let result = await response.json();
let blobUrl = decodeURIComponent(result.blobUrl);
let blobResponse = await fetch(blobUrl);
return blobResponse.text();
}
result, same first party: Error: Load failed, Error: Load failed, Error: Load failed, Error: Load failed, Error: Load failed
result, different first party: Error: Load failed, Error: Load failed, Error: Load failed, Error: Load failed, Error: Load failed
unsupported: false, false, false, false, false
passed: undefined
test failed: true, true, true, true, true
|
write: (secret) => {
try {
let blobURL = URL.createObjectURL(new Blob([secret]));
fetch(`${baseURI}blob?mode=write&key=${secret}&blobUrl=${encodeURIComponent(blobURL)}`);
} catch (e) {
throw new Error("Unsupported");
}
}
read: async (secret) => {
let response = await fetch(`${baseURI}blob?mode=read&key=${secret}`);
let result = await response.json();
let blobUrl = decodeURIComponent(result.blobUrl);
let blobResponse = await fetch(blobUrl);
return blobResponse.text();
}
result, same first party: 645c70fe-e1b2-4ef5-9d85-d196d925f299, 37bdf754-d9f6-4135-9610-013b82148cc6, 7d60b4be-b2b0-4418-ad71-d15a2bb7c132, 5a5d1072-e52f-4d18-8e84-7d66a520fa63, b03fc878-2397-4505-9728-d513ba111f04
result, different first party: 645c70fe-e1b2-4ef5-9d85-d196d925f299, 37bdf754-d9f6-4135-9610-013b82148cc6, 7d60b4be-b2b0-4418-ad71-d15a2bb7c132, 5a5d1072-e52f-4d18-8e84-7d66a520fa63, b03fc878-2397-4505-9728-d513ba111f04
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
|
write: (secret) => {
try {
let blobURL = URL.createObjectURL(new Blob([secret]));
fetch(`${baseURI}blob?mode=write&key=${secret}&blobUrl=${encodeURIComponent(blobURL)}`);
} catch (e) {
throw new Error("Unsupported");
}
}
read: async (secret) => {
let response = await fetch(`${baseURI}blob?mode=read&key=${secret}`);
let result = await response.json();
let blobUrl = decodeURIComponent(result.blobUrl);
let blobResponse = await fetch(blobUrl);
return blobResponse.text();
}
result, same first party: 837bd07b-866a-419a-a093-0f78957cfa61, 2f080cb0-010b-440e-8ca5-16ddad4725c3, fcea6251-ed06-4520-8dee-787cdbfb82eb, f536f207-3a6b-4855-863a-f10f2dc68c22, f1bf0ab2-6b0b-467d-8ca1-e79bbe9e7c50
result, different first party: 837bd07b-866a-419a-a093-0f78957cfa61, 2f080cb0-010b-440e-8ca5-16ddad4725c3, fcea6251-ed06-4520-8dee-787cdbfb82eb, f536f207-3a6b-4855-863a-f10f2dc68c22, f1bf0ab2-6b0b-467d-8ca1-e79bbe9e7c50
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
|
write: (secret) => {
try {
let blobURL = URL.createObjectURL(new Blob([secret]));
fetch(`${baseURI}blob?mode=write&key=${secret}&blobUrl=${encodeURIComponent(blobURL)}`);
} catch (e) {
throw new Error("Unsupported");
}
}
read: async (secret) => {
let response = await fetch(`${baseURI}blob?mode=read&key=${secret}`);
let result = await response.json();
let blobUrl = decodeURIComponent(result.blobUrl);
let blobResponse = await fetch(blobUrl);
return blobResponse.text();
}
result, same first party: d96f04df-0072-455a-9747-be4c8015ad17, 62619b98-b397-45a8-a1c6-cf0f397aee49, a635112e-a90d-46fe-9f59-85524ee37a1c, 215a628a-756f-4200-8032-7c6eefe5eac1, 32ab1917-a776-42cd-ad18-68a872a17588
result, different first party: d96f04df-0072-455a-9747-be4c8015ad17, 62619b98-b397-45a8-a1c6-cf0f397aee49, a635112e-a90d-46fe-9f59-85524ee37a1c, 215a628a-756f-4200-8032-7c6eefe5eac1, 32ab1917-a776-42cd-ad18-68a872a17588
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
|
BroadcastChannelA BroadcastChannel is designed to send messages between tabs. In some browsers it can be used for cross-site communication and tracking. |
write: (secret) => {
try {
let bc = new BroadcastChannel("secrets");
bc.onmessage = (event) => {
if (event.data === "request") {
bc.postMessage(secret);
}
};
} catch (e) {
throw new Error("Unsupported");
}
}
read: () =>
new Promise((resolve, reject) => {
let bc = new BroadcastChannel("secrets");
bc.onmessage = (event) => {
if (event.data !== "request") {
resolve(event.data);
}
};
bc.postMessage("request");
setTimeout(() => reject({message: "no BroadcastChannel message"}), 3000);
})
result, same first party: d1fcc439-fd6b-436a-82b2-7b07a48be42c, 1f4220c6-7f46-46e8-8382-1e68e0aa93da, ef8196ed-3102-40f2-aaed-e1d2f9575201, 38204c3d-6a9e-46bc-af79-d9ee0b83f570, f629fded-a393-4d32-ae92-8bdf1f8a74ea
result, different first party: Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => {
try {
let bc = new BroadcastChannel("secrets");
bc.onmessage = (event) => {
if (event.data === "request") {
bc.postMessage(secret);
}
};
} catch (e) {
throw new Error("Unsupported");
}
}
read: () =>
new Promise((resolve, reject) => {
let bc = new BroadcastChannel("secrets");
bc.onmessage = (event) => {
if (event.data !== "request") {
resolve(event.data);
}
};
bc.postMessage("request");
setTimeout(() => reject({message: "no BroadcastChannel message"}), 3000);
})
result, same first party: e616b402-f54e-4dc2-9e80-d9eec6232bfe, 652a7406-26a0-4a22-af9f-ce850b7fbbd3, 79219e1e-2539-47a6-abc4-1fd8f37165cc, 15bc25d1-56d0-4759-be41-017c903613e7, be2f218f-5ad3-4493-9213-39554685d498
result, different first party: Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => {
try {
let bc = new BroadcastChannel("secrets");
bc.onmessage = (event) => {
if (event.data === "request") {
bc.postMessage(secret);
}
};
} catch (e) {
throw new Error("Unsupported");
}
}
read: () =>
new Promise((resolve, reject) => {
let bc = new BroadcastChannel("secrets");
bc.onmessage = (event) => {
if (event.data !== "request") {
resolve(event.data);
}
};
bc.postMessage("request");
setTimeout(() => reject({message: "no BroadcastChannel message"}), 3000);
})
result, same first party: 6ffc1af5-0fbf-4d7d-a31c-296bcdd0d082, f423d7a7-7618-4ace-b53b-dc34937c1f28, 2bc1291b-59ea-4d02-a622-2208cd77a86a, 962edccf-6436-4ce1-973a-61eb16239ca6, f423bd8d-1973-4936-83f0-d6555f81e6cc
result, different first party: Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => {
try {
let bc = new BroadcastChannel("secrets");
bc.onmessage = (event) => {
if (event.data === "request") {
bc.postMessage(secret);
}
};
} catch (e) {
throw new Error("Unsupported");
}
}
read: () =>
new Promise((resolve, reject) => {
let bc = new BroadcastChannel("secrets");
bc.onmessage = (event) => {
if (event.data !== "request") {
resolve(event.data);
}
};
bc.postMessage("request");
setTimeout(() => reject({message: "no BroadcastChannel message"}), 3000);
})
result, same first party: 323f9e44-496a-4e27-a9b4-225f7c18bf25, 23b7ec2e-8886-4a43-992a-1fd056cbbdb0, 8ca82aee-8734-4e8f-8dd3-0f0abf781d9a, 45894f2d-308e-4158-8c66-9ca24681fd96, a0c6800b-b78d-4a5f-a81e-6ca5c1c4680b
result, different first party: Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => {
try {
let bc = new BroadcastChannel("secrets");
bc.onmessage = (event) => {
if (event.data === "request") {
bc.postMessage(secret);
}
};
} catch (e) {
throw new Error("Unsupported");
}
}
read: () =>
new Promise((resolve, reject) => {
let bc = new BroadcastChannel("secrets");
bc.onmessage = (event) => {
if (event.data !== "request") {
resolve(event.data);
}
};
bc.postMessage("request");
setTimeout(() => reject({message: "no BroadcastChannel message"}), 3000);
})
result, same first party: 49451103-9325-4e88-ac98-7edeea660ba3, 43326fa1-9ee9-4c2f-9357-7eb5933ed74a, 9035382f-0641-4971-a562-e79bee21ecfa, d8bfb7bb-dac0-4596-a5b8-f5a3d0a52d0c, 7673fe6f-8ed3-42bf-9801-fd846fb30dde
result, different first party: Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => {
try {
let bc = new BroadcastChannel("secrets");
bc.onmessage = (event) => {
if (event.data === "request") {
bc.postMessage(secret);
}
};
} catch (e) {
throw new Error("Unsupported");
}
}
read: () =>
new Promise((resolve, reject) => {
let bc = new BroadcastChannel("secrets");
bc.onmessage = (event) => {
if (event.data !== "request") {
resolve(event.data);
}
};
bc.postMessage("request");
setTimeout(() => reject({message: "no BroadcastChannel message"}), 3000);
})
result, same first party: Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message
result, different first party: Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message
unsupported: false, false, false, false, false
passed: undefined
test failed: true, true, true, true, true
|
write: (secret) => {
try {
let bc = new BroadcastChannel("secrets");
bc.onmessage = (event) => {
if (event.data === "request") {
bc.postMessage(secret);
}
};
} catch (e) {
throw new Error("Unsupported");
}
}
read: () =>
new Promise((resolve, reject) => {
let bc = new BroadcastChannel("secrets");
bc.onmessage = (event) => {
if (event.data !== "request") {
resolve(event.data);
}
};
bc.postMessage("request");
setTimeout(() => reject({message: "no BroadcastChannel message"}), 3000);
})
result, same first party: 645c70fe-e1b2-4ef5-9d85-d196d925f299, 37bdf754-d9f6-4135-9610-013b82148cc6, 7d60b4be-b2b0-4418-ad71-d15a2bb7c132, 5a5d1072-e52f-4d18-8e84-7d66a520fa63, b03fc878-2397-4505-9728-d513ba111f04
result, different first party: Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => {
try {
let bc = new BroadcastChannel("secrets");
bc.onmessage = (event) => {
if (event.data === "request") {
bc.postMessage(secret);
}
};
} catch (e) {
throw new Error("Unsupported");
}
}
read: () =>
new Promise((resolve, reject) => {
let bc = new BroadcastChannel("secrets");
bc.onmessage = (event) => {
if (event.data !== "request") {
resolve(event.data);
}
};
bc.postMessage("request");
setTimeout(() => reject({message: "no BroadcastChannel message"}), 3000);
})
result, same first party: 837bd07b-866a-419a-a093-0f78957cfa61, 2f080cb0-010b-440e-8ca5-16ddad4725c3, fcea6251-ed06-4520-8dee-787cdbfb82eb, f536f207-3a6b-4855-863a-f10f2dc68c22, f1bf0ab2-6b0b-467d-8ca1-e79bbe9e7c50
result, different first party: Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => {
try {
let bc = new BroadcastChannel("secrets");
bc.onmessage = (event) => {
if (event.data === "request") {
bc.postMessage(secret);
}
};
} catch (e) {
throw new Error("Unsupported");
}
}
read: () =>
new Promise((resolve, reject) => {
let bc = new BroadcastChannel("secrets");
bc.onmessage = (event) => {
if (event.data !== "request") {
resolve(event.data);
}
};
bc.postMessage("request");
setTimeout(() => reject({message: "no BroadcastChannel message"}), 3000);
})
result, same first party: d96f04df-0072-455a-9747-be4c8015ad17, 62619b98-b397-45a8-a1c6-cf0f397aee49, a635112e-a90d-46fe-9f59-85524ee37a1c, 215a628a-756f-4200-8032-7c6eefe5eac1, 32ab1917-a776-42cd-ad18-68a872a17588
result, different first party: Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
CacheStorageThe Cache API is a content storage mechanism originally introduced to support ServiceWorkers. If the same Cache object is accessible to multiple websites, it can be abused to track users. |
write: async (key) => {
try {
let cache = await caches.open("supercookies");
cache.addAll([`test.css?key=${key}`]);
} catch (e) {
throw new Error("Unsupported");
}
}
read: async () => {
let cache = await caches.open("supercookies");
let cacheKeys = await cache.keys();
let url = cacheKeys[0].url;
return (new URL(url)).searchParams.get("key");
}
result, same first party: 92038508-c686-42a4-861b-7f5193623665, 92038508-c686-42a4-861b-7f5193623665, 92038508-c686-42a4-861b-7f5193623665, 92038508-c686-42a4-861b-7f5193623665, 92038508-c686-42a4-861b-7f5193623665
result, different first party: Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
try {
let cache = await caches.open("supercookies");
cache.addAll([`test.css?key=${key}`]);
} catch (e) {
throw new Error("Unsupported");
}
}
read: async () => {
let cache = await caches.open("supercookies");
let cacheKeys = await cache.keys();
let url = cacheKeys[0].url;
return (new URL(url)).searchParams.get("key");
}
result, same first party: 7ecae44b-3cd2-417c-9b31-fc1e81c01af5, 7ecae44b-3cd2-417c-9b31-fc1e81c01af5, 7ecae44b-3cd2-417c-9b31-fc1e81c01af5, 7ecae44b-3cd2-417c-9b31-fc1e81c01af5, 7ecae44b-3cd2-417c-9b31-fc1e81c01af5
result, different first party: Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
try {
let cache = await caches.open("supercookies");
cache.addAll([`test.css?key=${key}`]);
} catch (e) {
throw new Error("Unsupported");
}
}
read: async () => {
let cache = await caches.open("supercookies");
let cacheKeys = await cache.keys();
let url = cacheKeys[0].url;
return (new URL(url)).searchParams.get("key");
}
result, same first party: d223e8e6-4d19-496f-ba83-c0247e18bd6e, d223e8e6-4d19-496f-ba83-c0247e18bd6e, d223e8e6-4d19-496f-ba83-c0247e18bd6e, d223e8e6-4d19-496f-ba83-c0247e18bd6e, d223e8e6-4d19-496f-ba83-c0247e18bd6e
result, different first party: Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
try {
let cache = await caches.open("supercookies");
cache.addAll([`test.css?key=${key}`]);
} catch (e) {
throw new Error("Unsupported");
}
}
read: async () => {
let cache = await caches.open("supercookies");
let cacheKeys = await cache.keys();
let url = cacheKeys[0].url;
return (new URL(url)).searchParams.get("key");
}
result, same first party: 32719bf8-7837-489b-8864-c9c8f1b6254f, 32719bf8-7837-489b-8864-c9c8f1b6254f, 32719bf8-7837-489b-8864-c9c8f1b6254f, 32719bf8-7837-489b-8864-c9c8f1b6254f, 32719bf8-7837-489b-8864-c9c8f1b6254f
result, different first party: Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
try {
let cache = await caches.open("supercookies");
cache.addAll([`test.css?key=${key}`]);
} catch (e) {
throw new Error("Unsupported");
}
}
read: async () => {
let cache = await caches.open("supercookies");
let cacheKeys = await cache.keys();
let url = cacheKeys[0].url;
return (new URL(url)).searchParams.get("key");
}
result, same first party: d6a84c44-647e-4c16-85e6-e4bb5cccc6b1, d6a84c44-647e-4c16-85e6-e4bb5cccc6b1, d6a84c44-647e-4c16-85e6-e4bb5cccc6b1, d6a84c44-647e-4c16-85e6-e4bb5cccc6b1, d6a84c44-647e-4c16-85e6-e4bb5cccc6b1
result, different first party: Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
try {
let cache = await caches.open("supercookies");
cache.addAll([`test.css?key=${key}`]);
} catch (e) {
throw new Error("Unsupported");
}
}
read: async () => {
let cache = await caches.open("supercookies");
let cacheKeys = await cache.keys();
let url = cacheKeys[0].url;
return (new URL(url)).searchParams.get("key");
}
result, same first party: 84194efc-c0b9-4bff-9616-237a8066da82, 7d49c69c-f747-4070-8da2-e599ee79372a, e6f701c8-c159-419b-a2c4-a45810bf36aa, 5a77f9d1-1aa2-4498-a5aa-2eacbb993367, 242d8412-50e3-455f-98c9-4e748b4d332a
result, different first party: Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
try {
let cache = await caches.open("supercookies");
cache.addAll([`test.css?key=${key}`]);
} catch (e) {
throw new Error("Unsupported");
}
}
read: async () => {
let cache = await caches.open("supercookies");
let cacheKeys = await cache.keys();
let url = cacheKeys[0].url;
return (new URL(url)).searchParams.get("key");
}
result, same first party: 71125b31-28c6-4ee7-87fc-99f9d48e6b8f, 71125b31-28c6-4ee7-87fc-99f9d48e6b8f, 71125b31-28c6-4ee7-87fc-99f9d48e6b8f, 71125b31-28c6-4ee7-87fc-99f9d48e6b8f, 71125b31-28c6-4ee7-87fc-99f9d48e6b8f
result, different first party: Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
try {
let cache = await caches.open("supercookies");
cache.addAll([`test.css?key=${key}`]);
} catch (e) {
throw new Error("Unsupported");
}
}
read: async () => {
let cache = await caches.open("supercookies");
let cacheKeys = await cache.keys();
let url = cacheKeys[0].url;
return (new URL(url)).searchParams.get("key");
}
result, same first party: 8ea57a1f-fd33-425a-bfc1-c6c8f896dd3f, 8ea57a1f-fd33-425a-bfc1-c6c8f896dd3f, 8ea57a1f-fd33-425a-bfc1-c6c8f896dd3f, 8ea57a1f-fd33-425a-bfc1-c6c8f896dd3f, 8ea57a1f-fd33-425a-bfc1-c6c8f896dd3f
result, different first party: Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
try {
let cache = await caches.open("supercookies");
cache.addAll([`test.css?key=${key}`]);
} catch (e) {
throw new Error("Unsupported");
}
}
read: async () => {
let cache = await caches.open("supercookies");
let cacheKeys = await cache.keys();
let url = cacheKeys[0].url;
return (new URL(url)).searchParams.get("key");
}
result, same first party: d96f04df-0072-455a-9747-be4c8015ad17, 62619b98-b397-45a8-a1c6-cf0f397aee49, a635112e-a90d-46fe-9f59-85524ee37a1c, 215a628a-756f-4200-8032-7c6eefe5eac1, 32ab1917-a776-42cd-ad18-68a872a17588
result, different first party: Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url'), Error: undefined is not an object (evaluating 'cacheKeys[0].url')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
cookie (HTTP)The cookie, first introduced by Netscape in 1994, is a small amount of data stored by your browser on a website's behalf. It has legitimate uses, but it is also the classic cross-site tracking mechanism, and today still the most popular method of tracking users across websites. Browsers can stop cookies from being used for cross-site tracking by either blocking or partitioning them. |
write: async (secret) => {
// Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
await fetch(`${baseURI}cookie?secret=${secret}_http`);
}
read: async () => {
// Test if we now send a requests with a 'cookie' header containing the secret.
let response = await fetch(`${baseURI}headers`);
let cookie = (await response.json())["cookie"];
return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
}
result, same first party: d1fcc439-fd6b-436a-82b2-7b07a48be42c_http, 1f4220c6-7f46-46e8-8382-1e68e0aa93da_http, ef8196ed-3102-40f2-aaed-e1d2f9575201_http, 38204c3d-6a9e-46bc-af79-d9ee0b83f570_http, f629fded-a393-4d32-ae92-8bdf1f8a74ea_http
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
// Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
await fetch(`${baseURI}cookie?secret=${secret}_http`);
}
read: async () => {
// Test if we now send a requests with a 'cookie' header containing the secret.
let response = await fetch(`${baseURI}headers`);
let cookie = (await response.json())["cookie"];
return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
}
result, same first party: e616b402-f54e-4dc2-9e80-d9eec6232bfe_http, 652a7406-26a0-4a22-af9f-ce850b7fbbd3_http, 79219e1e-2539-47a6-abc4-1fd8f37165cc_http, 15bc25d1-56d0-4759-be41-017c903613e7_http, be2f218f-5ad3-4493-9213-39554685d498_http
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
// Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
await fetch(`${baseURI}cookie?secret=${secret}_http`);
}
read: async () => {
// Test if we now send a requests with a 'cookie' header containing the secret.
let response = await fetch(`${baseURI}headers`);
let cookie = (await response.json())["cookie"];
return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
}
result, same first party: 6ffc1af5-0fbf-4d7d-a31c-296bcdd0d082_http, f423d7a7-7618-4ace-b53b-dc34937c1f28_http, 2bc1291b-59ea-4d02-a622-2208cd77a86a_http, 962edccf-6436-4ce1-973a-61eb16239ca6_http, f423bd8d-1973-4936-83f0-d6555f81e6cc_http
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
// Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
await fetch(`${baseURI}cookie?secret=${secret}_http`);
}
read: async () => {
// Test if we now send a requests with a 'cookie' header containing the secret.
let response = await fetch(`${baseURI}headers`);
let cookie = (await response.json())["cookie"];
return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
}
result, same first party: 323f9e44-496a-4e27-a9b4-225f7c18bf25_http, 23b7ec2e-8886-4a43-992a-1fd056cbbdb0_http, 8ca82aee-8734-4e8f-8dd3-0f0abf781d9a_http, 45894f2d-308e-4158-8c66-9ca24681fd96_http, a0c6800b-b78d-4a5f-a81e-6ca5c1c4680b_http
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
// Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
await fetch(`${baseURI}cookie?secret=${secret}_http`);
}
read: async () => {
// Test if we now send a requests with a 'cookie' header containing the secret.
let response = await fetch(`${baseURI}headers`);
let cookie = (await response.json())["cookie"];
return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
}
result, same first party: 49451103-9325-4e88-ac98-7edeea660ba3_http, 43326fa1-9ee9-4c2f-9357-7eb5933ed74a_http, 9035382f-0641-4971-a562-e79bee21ecfa_http, d8bfb7bb-dac0-4596-a5b8-f5a3d0a52d0c_http, 7673fe6f-8ed3-42bf-9801-fd846fb30dde_http
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
// Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
await fetch(`${baseURI}cookie?secret=${secret}_http`);
}
read: async () => {
// Test if we now send a requests with a 'cookie' header containing the secret.
let response = await fetch(`${baseURI}headers`);
let cookie = (await response.json())["cookie"];
return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
}
result, same first party: 84194efc-c0b9-4bff-9616-237a8066da82_http, 7d49c69c-f747-4070-8da2-e599ee79372a_http, e6f701c8-c159-419b-a2c4-a45810bf36aa_http, 5a77f9d1-1aa2-4498-a5aa-2eacbb993367_http, 242d8412-50e3-455f-98c9-4e748b4d332a_http
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
// Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
await fetch(`${baseURI}cookie?secret=${secret}_http`);
}
read: async () => {
// Test if we now send a requests with a 'cookie' header containing the secret.
let response = await fetch(`${baseURI}headers`);
let cookie = (await response.json())["cookie"];
return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
}
result, same first party: 645c70fe-e1b2-4ef5-9d85-d196d925f299_http, 37bdf754-d9f6-4135-9610-013b82148cc6_http, 7d60b4be-b2b0-4418-ad71-d15a2bb7c132_http, 5a5d1072-e52f-4d18-8e84-7d66a520fa63_http, b03fc878-2397-4505-9728-d513ba111f04_http
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
// Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
await fetch(`${baseURI}cookie?secret=${secret}_http`);
}
read: async () => {
// Test if we now send a requests with a 'cookie' header containing the secret.
let response = await fetch(`${baseURI}headers`);
let cookie = (await response.json())["cookie"];
return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
}
result, same first party: 837bd07b-866a-419a-a093-0f78957cfa61_http, 2f080cb0-010b-440e-8ca5-16ddad4725c3_http, fcea6251-ed06-4520-8dee-787cdbfb82eb_http, f536f207-3a6b-4855-863a-f10f2dc68c22_http, f1bf0ab2-6b0b-467d-8ca1-e79bbe9e7c50_http
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
// Request a page that will send an HTTPOnly 'set-cookie' response header with secret value.
await fetch(`${baseURI}cookie?secret=${secret}_http`);
}
read: async () => {
// Test if we now send a requests with a 'cookie' header containing the secret.
let response = await fetch(`${baseURI}headers`);
let cookie = (await response.json())["cookie"];
return cookie ? cookie.match(/secret=([\w-]+)/)[1]: null;
}
result, same first party: d96f04df-0072-455a-9747-be4c8015ad17_http, 62619b98-b397-45a8-a1c6-cf0f397aee49_http, a635112e-a90d-46fe-9f59-85524ee37a1c_http, 215a628a-756f-4200-8032-7c6eefe5eac1_http, 32ab1917-a776-42cd-ad18-68a872a17588_http
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
cookie (JS)The cookie, first introduced by Netscape in 1994, is a small amount of data stored by your browser on a website's behalf. It has legitimate uses, but it is also the classic cross-site tracking mechanism, and today still the most popular method of tracking users across websites. Browsers can stop cookies from being used for cross-site tracking by either blocking or partitioning them. |
write: (secret) => {
document.cookie = `secret=${secret}_js; SameSite=None; Secure`;
}
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same first party: d1fcc439-fd6b-436a-82b2-7b07a48be42c_js, 1f4220c6-7f46-46e8-8382-1e68e0aa93da_js, ef8196ed-3102-40f2-aaed-e1d2f9575201_js, 38204c3d-6a9e-46bc-af79-d9ee0b83f570_js, f629fded-a393-4d32-ae92-8bdf1f8a74ea_js
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => {
document.cookie = `secret=${secret}_js; SameSite=None; Secure`;
}
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same first party: e616b402-f54e-4dc2-9e80-d9eec6232bfe_js, 652a7406-26a0-4a22-af9f-ce850b7fbbd3_js, 79219e1e-2539-47a6-abc4-1fd8f37165cc_js, 15bc25d1-56d0-4759-be41-017c903613e7_js, be2f218f-5ad3-4493-9213-39554685d498_js
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => {
document.cookie = `secret=${secret}_js; SameSite=None; Secure`;
}
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same first party: 6ffc1af5-0fbf-4d7d-a31c-296bcdd0d082_js, f423d7a7-7618-4ace-b53b-dc34937c1f28_js, 2bc1291b-59ea-4d02-a622-2208cd77a86a_js, 962edccf-6436-4ce1-973a-61eb16239ca6_js, f423bd8d-1973-4936-83f0-d6555f81e6cc_js
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => {
document.cookie = `secret=${secret}_js; SameSite=None; Secure`;
}
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same first party: 323f9e44-496a-4e27-a9b4-225f7c18bf25_js, 23b7ec2e-8886-4a43-992a-1fd056cbbdb0_js, 8ca82aee-8734-4e8f-8dd3-0f0abf781d9a_js, 45894f2d-308e-4158-8c66-9ca24681fd96_js, a0c6800b-b78d-4a5f-a81e-6ca5c1c4680b_js
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => {
document.cookie = `secret=${secret}_js; SameSite=None; Secure`;
}
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same first party: 49451103-9325-4e88-ac98-7edeea660ba3_js, 43326fa1-9ee9-4c2f-9357-7eb5933ed74a_js, 9035382f-0641-4971-a562-e79bee21ecfa_js, d8bfb7bb-dac0-4596-a5b8-f5a3d0a52d0c_js, 7673fe6f-8ed3-42bf-9801-fd846fb30dde_js
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => {
document.cookie = `secret=${secret}_js; SameSite=None; Secure`;
}
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same first party: 84194efc-c0b9-4bff-9616-237a8066da82_js, 7d49c69c-f747-4070-8da2-e599ee79372a_js, e6f701c8-c159-419b-a2c4-a45810bf36aa_js, 5a77f9d1-1aa2-4498-a5aa-2eacbb993367_js, 242d8412-50e3-455f-98c9-4e748b4d332a_js
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => {
document.cookie = `secret=${secret}_js; SameSite=None; Secure`;
}
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same first party: 645c70fe-e1b2-4ef5-9d85-d196d925f299_js, 37bdf754-d9f6-4135-9610-013b82148cc6_js, 7d60b4be-b2b0-4418-ad71-d15a2bb7c132_js, 5a5d1072-e52f-4d18-8e84-7d66a520fa63_js, b03fc878-2397-4505-9728-d513ba111f04_js
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => {
document.cookie = `secret=${secret}_js; SameSite=None; Secure`;
}
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same first party: 837bd07b-866a-419a-a093-0f78957cfa61_js, 2f080cb0-010b-440e-8ca5-16ddad4725c3_js, fcea6251-ed06-4520-8dee-787cdbfb82eb_js, f536f207-3a6b-4855-863a-f10f2dc68c22_js, f1bf0ab2-6b0b-467d-8ca1-e79bbe9e7c50_js
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => {
document.cookie = `secret=${secret}_js; SameSite=None; Secure`;
}
read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null
result, same first party: d96f04df-0072-455a-9747-be4c8015ad17_js, 62619b98-b397-45a8-a1c6-cf0f397aee49_js, a635112e-a90d-46fe-9f59-85524ee37a1c_js, 215a628a-756f-4200-8032-7c6eefe5eac1_js, 32ab1917-a776-42cd-ad18-68a872a17588_js
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
CookieStoreThe Cookie Store API is an alternative asynchronous API for managing cookies, supported by some browsers. | –
write: (data) => {
const msPerHour = 60 * 60 * 1000;
if (!window.cookieStore) {
throw new Error("Unsupported");
}
window.cookieStore.set({
name: "partition_test",
value: data,
expires: Date.now() + msPerHour,
sameSite: "none"
});
}
read: async () => {
if (!window.cookieStore) {
throw new Error("Unsupported");
}
const cookie = await window.cookieStore.get("partition_test");
if (!cookie) {
return null;
}
return cookie.value;
}
result, same first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: (data) => {
const msPerHour = 60 * 60 * 1000;
if (!window.cookieStore) {
throw new Error("Unsupported");
}
window.cookieStore.set({
name: "partition_test",
value: data,
expires: Date.now() + msPerHour,
sameSite: "none"
});
}
read: async () => {
if (!window.cookieStore) {
throw new Error("Unsupported");
}
const cookie = await window.cookieStore.get("partition_test");
if (!cookie) {
return null;
}
return cookie.value;
}
result, same first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: (data) => {
const msPerHour = 60 * 60 * 1000;
if (!window.cookieStore) {
throw new Error("Unsupported");
}
window.cookieStore.set({
name: "partition_test",
value: data,
expires: Date.now() + msPerHour,
sameSite: "none"
});
}
read: async () => {
if (!window.cookieStore) {
throw new Error("Unsupported");
}
const cookie = await window.cookieStore.get("partition_test");
if (!cookie) {
return null;
}
return cookie.value;
}
result, same first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: (data) => {
const msPerHour = 60 * 60 * 1000;
if (!window.cookieStore) {
throw new Error("Unsupported");
}
window.cookieStore.set({
name: "partition_test",
value: data,
expires: Date.now() + msPerHour,
sameSite: "none"
});
}
read: async () => {
if (!window.cookieStore) {
throw new Error("Unsupported");
}
const cookie = await window.cookieStore.get("partition_test");
if (!cookie) {
return null;
}
return cookie.value;
}
result, same first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: (data) => {
const msPerHour = 60 * 60 * 1000;
if (!window.cookieStore) {
throw new Error("Unsupported");
}
window.cookieStore.set({
name: "partition_test",
value: data,
expires: Date.now() + msPerHour,
sameSite: "none"
});
}
read: async () => {
if (!window.cookieStore) {
throw new Error("Unsupported");
}
const cookie = await window.cookieStore.get("partition_test");
if (!cookie) {
return null;
}
return cookie.value;
}
result, same first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: (data) => {
const msPerHour = 60 * 60 * 1000;
if (!window.cookieStore) {
throw new Error("Unsupported");
}
window.cookieStore.set({
name: "partition_test",
value: data,
expires: Date.now() + msPerHour,
sameSite: "none"
});
}
read: async () => {
if (!window.cookieStore) {
throw new Error("Unsupported");
}
const cookie = await window.cookieStore.get("partition_test");
if (!cookie) {
return null;
}
return cookie.value;
}
result, same first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: (data) => {
const msPerHour = 60 * 60 * 1000;
if (!window.cookieStore) {
throw new Error("Unsupported");
}
window.cookieStore.set({
name: "partition_test",
value: data,
expires: Date.now() + msPerHour,
sameSite: "none"
});
}
read: async () => {
if (!window.cookieStore) {
throw new Error("Unsupported");
}
const cookie = await window.cookieStore.get("partition_test");
if (!cookie) {
return null;
}
return cookie.value;
}
result, same first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: (data) => {
const msPerHour = 60 * 60 * 1000;
if (!window.cookieStore) {
throw new Error("Unsupported");
}
window.cookieStore.set({
name: "partition_test",
value: data,
expires: Date.now() + msPerHour,
sameSite: "none"
});
}
read: async () => {
if (!window.cookieStore) {
throw new Error("Unsupported");
}
const cookie = await window.cookieStore.get("partition_test");
if (!cookie) {
return null;
}
return cookie.value;
}
result, same first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: (data) => {
const msPerHour = 60 * 60 * 1000;
if (!window.cookieStore) {
throw new Error("Unsupported");
}
window.cookieStore.set({
name: "partition_test",
value: data,
expires: Date.now() + msPerHour,
sameSite: "none"
});
}
read: async () => {
if (!window.cookieStore) {
throw new Error("Unsupported");
}
const cookie = await window.cookieStore.get("partition_test");
if (!cookie) {
return null;
}
return cookie.value;
}
result, same first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
|
CSS cacheCSS stylesheets are cached, and if that cache is shared between websites, it can be used to track users across sites. |
write: async (key) => {
const href = testURI("resource", "css", key);
const head = document.getElementsByTagName("head")[0];
head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
const testElement = document.querySelector("#css");
let fontFamily;
while (true) {
await sleepMs(100);
fontFamily = getComputedStyle(testElement).fontFamily;
if (fontFamily.startsWith("fake")) {
break;
}
}
console.log(fontFamily);
return key;
}
read: async (key) => {
const href = testURI("resource", "css", key);
const head = document.getElementsByTagName("head")[0];
head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
const testElement = document.querySelector("#css");
let fontFamily;
while (true) {
await sleepMs(100);
fontFamily = getComputedStyle(testElement).fontFamily;
if (fontFamily.startsWith("fake")) {
break;
}
}
console.log(fontFamily);
return fontFamily;
}
result, same first party: fake_3340028107727575, fake_5541109437339016, fake_22694336224279232, fake_26111285968136366, fake_6472792402903118
result, different first party: fake_9985882701448008, fake_21633251266084197, fake_10470617303030649, fake_5823454002166744, fake_41192789878070046
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
const href = testURI("resource", "css", key);
const head = document.getElementsByTagName("head")[0];
head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
const testElement = document.querySelector("#css");
let fontFamily;
while (true) {
await sleepMs(100);
fontFamily = getComputedStyle(testElement).fontFamily;
if (fontFamily.startsWith("fake")) {
break;
}
}
console.log(fontFamily);
return key;
}
read: async (key) => {
const href = testURI("resource", "css", key);
const head = document.getElementsByTagName("head")[0];
head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
const testElement = document.querySelector("#css");
let fontFamily;
while (true) {
await sleepMs(100);
fontFamily = getComputedStyle(testElement).fontFamily;
if (fontFamily.startsWith("fake")) {
break;
}
}
console.log(fontFamily);
return fontFamily;
}
result, same first party: fake_4943999768047469, fake_33711951877916957, fake_3246173525663403, fake_04937122835353813, fake_7005708579096681
result, different first party: fake_5054908936512574, fake_5008636123851973, fake_11703542499165298, fake_7258676152125045, fake_2096498550143706
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
const href = testURI("resource", "css", key);
const head = document.getElementsByTagName("head")[0];
head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
const testElement = document.querySelector("#css");
let fontFamily;
while (true) {
await sleepMs(100);
fontFamily = getComputedStyle(testElement).fontFamily;
if (fontFamily.startsWith("fake")) {
break;
}
}
console.log(fontFamily);
return key;
}
read: async (key) => {
const href = testURI("resource", "css", key);
const head = document.getElementsByTagName("head")[0];
head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
const testElement = document.querySelector("#css");
let fontFamily;
while (true) {
await sleepMs(100);
fontFamily = getComputedStyle(testElement).fontFamily;
if (fontFamily.startsWith("fake")) {
break;
}
}
console.log(fontFamily);
return fontFamily;
}
result, same first party: fake_6702392852179151, fake_2022878966378483, fake_49245895614729074, fake_1639555732616802, fake_2650584607925768
result, different first party: fake_017401141390280817, fake_17779037581553547, fake_2245514393165431, fake_30547223412639624, fake_9365791086588919
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
const href = testURI("resource", "css", key);
const head = document.getElementsByTagName("head")[0];
head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
const testElement = document.querySelector("#css");
let fontFamily;
while (true) {
await sleepMs(100);
fontFamily = getComputedStyle(testElement).fontFamily;
if (fontFamily.startsWith("fake")) {
break;
}
}
console.log(fontFamily);
return key;
}
read: async (key) => {
const href = testURI("resource", "css", key);
const head = document.getElementsByTagName("head")[0];
head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
const testElement = document.querySelector("#css");
let fontFamily;
while (true) {
await sleepMs(100);
fontFamily = getComputedStyle(testElement).fontFamily;
if (fontFamily.startsWith("fake")) {
break;
}
}
console.log(fontFamily);
return fontFamily;
}
result, same first party: fake_9488875642720815, fake_7025832490474386, fake_7535807726381487, fake_8651394866309561, fake_24130743519556996
result, different first party: fake_8285835410523856, fake_9248237732279461, fake_9680707867174903, fake_6916829403618792, fake_0763473944265547
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
const href = testURI("resource", "css", key);
const head = document.getElementsByTagName("head")[0];
head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
const testElement = document.querySelector("#css");
let fontFamily;
while (true) {
await sleepMs(100);
fontFamily = getComputedStyle(testElement).fontFamily;
if (fontFamily.startsWith("fake")) {
break;
}
}
console.log(fontFamily);
return key;
}
read: async (key) => {
const href = testURI("resource", "css", key);
const head = document.getElementsByTagName("head")[0];
head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
const testElement = document.querySelector("#css");
let fontFamily;
while (true) {
await sleepMs(100);
fontFamily = getComputedStyle(testElement).fontFamily;
if (fontFamily.startsWith("fake")) {
break;
}
}
console.log(fontFamily);
return fontFamily;
}
result, same first party: fake_17119295677586877, fake_4743321775300793, fake_5887188814567064, fake_4530561501495418, fake_989250853517996
result, different first party: fake_12055739230686857, fake_7977623318896436, fake_6869761914075492, fake_6845118870593756, fake_852364068713678
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
const href = testURI("resource", "css", key);
const head = document.getElementsByTagName("head")[0];
head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
const testElement = document.querySelector("#css");
let fontFamily;
while (true) {
await sleepMs(100);
fontFamily = getComputedStyle(testElement).fontFamily;
if (fontFamily.startsWith("fake")) {
break;
}
}
console.log(fontFamily);
return key;
}
read: async (key) => {
const href = testURI("resource", "css", key);
const head = document.getElementsByTagName("head")[0];
head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
const testElement = document.querySelector("#css");
let fontFamily;
while (true) {
await sleepMs(100);
fontFamily = getComputedStyle(testElement).fontFamily;
if (fontFamily.startsWith("fake")) {
break;
}
}
console.log(fontFamily);
return fontFamily;
}
result, same first party: fake_6316991573668209, fake_06361208374370242, fake_16488382975006521, fake_8068918786388128, fake_7676893439653583
result, different first party: fake_23682076392102114, fake_19869966961722496, fake_0034780582761939627, fake_4557238005894524, fake_31937295418539224
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
const href = testURI("resource", "css", key);
const head = document.getElementsByTagName("head")[0];
head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
const testElement = document.querySelector("#css");
let fontFamily;
while (true) {
await sleepMs(100);
fontFamily = getComputedStyle(testElement).fontFamily;
if (fontFamily.startsWith("fake")) {
break;
}
}
console.log(fontFamily);
return key;
}
read: async (key) => {
const href = testURI("resource", "css", key);
const head = document.getElementsByTagName("head")[0];
head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
const testElement = document.querySelector("#css");
let fontFamily;
while (true) {
await sleepMs(100);
fontFamily = getComputedStyle(testElement).fontFamily;
if (fontFamily.startsWith("fake")) {
break;
}
}
console.log(fontFamily);
return fontFamily;
}
result, same first party: fake_8236429594850221, fake_07541662136964344, fake_8902607995795118, fake_7633388559938414, fake_9828349034071133
result, different first party: fake_9255547798708883, fake_4872856397685976, fake_9096689473644477, fake_7266864336619296, fake_044822082613459546
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
const href = testURI("resource", "css", key);
const head = document.getElementsByTagName("head")[0];
head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
const testElement = document.querySelector("#css");
let fontFamily;
while (true) {
await sleepMs(100);
fontFamily = getComputedStyle(testElement).fontFamily;
if (fontFamily.startsWith("fake")) {
break;
}
}
console.log(fontFamily);
return key;
}
read: async (key) => {
const href = testURI("resource", "css", key);
const head = document.getElementsByTagName("head")[0];
head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
const testElement = document.querySelector("#css");
let fontFamily;
while (true) {
await sleepMs(100);
fontFamily = getComputedStyle(testElement).fontFamily;
if (fontFamily.startsWith("fake")) {
break;
}
}
console.log(fontFamily);
return fontFamily;
}
result, same first party: fake_4958986056802086, fake_14990718067559894, fake_753919765574067, fake_01820180958002604, fake_9523258965243349
result, different first party: fake_7030198201070439, fake_3901044770752966, fake_45390423927146784, fake_747904191204779, fake_2236465519201869
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
const href = testURI("resource", "css", key);
const head = document.getElementsByTagName("head")[0];
head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
const testElement = document.querySelector("#css");
let fontFamily;
while (true) {
await sleepMs(100);
fontFamily = getComputedStyle(testElement).fontFamily;
if (fontFamily.startsWith("fake")) {
break;
}
}
console.log(fontFamily);
return key;
}
read: async (key) => {
const href = testURI("resource", "css", key);
const head = document.getElementsByTagName("head")[0];
head.innerHTML += `<link type="text/css" rel="stylesheet" href="${href}">`;
const testElement = document.querySelector("#css");
let fontFamily;
while (true) {
await sleepMs(100);
fontFamily = getComputedStyle(testElement).fontFamily;
if (fontFamily.startsWith("fake")) {
break;
}
}
console.log(fontFamily);
return fontFamily;
}
result, same first party: fake_8720753847174034, fake_05638443592612852, fake_8370698791446538, fake_17619168486351078, fake_18383531882946724
result, different first party: fake_15723372587004913, fake_26623163086557056, fake_7561161071387204, fake_5565784923481756, fake_7117227178240195
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
favicon cacheA favicon is an icon that represents a website, typically shown in browser tab and bookmarks menu. If the favicon cache is not partitioned, it can be used to track users across websites. |
write: (key) => key
read: async (key) => {
// Wait for the favicon to load (defined in supercookies.html)
await sleepMs(500);
let response = await fetch(
testURI("ctr", "favicon", key), {"cache": "reload"});
let count = (await response.text()).trim();
if (count === "0") {
throw new Error("No requests received");
}
return count;
}
result, same first party: 1, 1, 1, 1, 1
result, different first party: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
|
write: (key) => key
read: async (key) => {
// Wait for the favicon to load (defined in supercookies.html)
await sleepMs(500);
let response = await fetch(
testURI("ctr", "favicon", key), {"cache": "reload"});
let count = (await response.text()).trim();
if (count === "0") {
throw new Error("No requests received");
}
return count;
}
result, same first party: 1, 1, 1, 1, 1
result, different first party: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
| –
write: (key) => key
read: async (key) => {
// Wait for the favicon to load (defined in supercookies.html)
await sleepMs(500);
let response = await fetch(
testURI("ctr", "favicon", key), {"cache": "reload"});
let count = (await response.text()).trim();
if (count === "0") {
throw new Error("No requests received");
}
return count;
}
result, same first party: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received
result, different first party: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
|
write: (key) => key
read: async (key) => {
// Wait for the favicon to load (defined in supercookies.html)
await sleepMs(500);
let response = await fetch(
testURI("ctr", "favicon", key), {"cache": "reload"});
let count = (await response.text()).trim();
if (count === "0") {
throw new Error("No requests received");
}
return count;
}
result, same first party: 1, 1, 1, 1, 1
result, different first party: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
| –
write: (key) => key
read: async (key) => {
// Wait for the favicon to load (defined in supercookies.html)
await sleepMs(500);
let response = await fetch(
testURI("ctr", "favicon", key), {"cache": "reload"});
let count = (await response.text()).trim();
if (count === "0") {
throw new Error("No requests received");
}
return count;
}
result, same first party: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received
result, different first party: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: (key) => key
read: async (key) => {
// Wait for the favicon to load (defined in supercookies.html)
await sleepMs(500);
let response = await fetch(
testURI("ctr", "favicon", key), {"cache": "reload"});
let count = (await response.text()).trim();
if (count === "0") {
throw new Error("No requests received");
}
return count;
}
result, same first party: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received
result, different first party: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
|
write: (key) => key
read: async (key) => {
// Wait for the favicon to load (defined in supercookies.html)
await sleepMs(500);
let response = await fetch(
testURI("ctr", "favicon", key), {"cache": "reload"});
let count = (await response.text()).trim();
if (count === "0") {
throw new Error("No requests received");
}
return count;
}
result, same first party: 1, 1, 1, 1, 1
result, different first party: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
|
write: (key) => key
read: async (key) => {
// Wait for the favicon to load (defined in supercookies.html)
await sleepMs(500);
let response = await fetch(
testURI("ctr", "favicon", key), {"cache": "reload"});
let count = (await response.text()).trim();
if (count === "0") {
throw new Error("No requests received");
}
return count;
}
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (key) => key
read: async (key) => {
// Wait for the favicon to load (defined in supercookies.html)
await sleepMs(500);
let response = await fetch(
testURI("ctr", "favicon", key), {"cache": "reload"});
let count = (await response.text()).trim();
if (count === "0") {
throw new Error("No requests received");
}
return count;
}
result, same first party: 1, 1, 1, 1, 1
result, different first party: 1, 1, 1, 1, 1
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
|
fetch cacheWhen a resource is received via the Fetch API, it is frequently cached. That cache can potentially be abused for cross-site tracking. |
write: async (key) => {
let response = await fetch(testURI("resource", "fetch", key),
{cache: "force-cache"});
return key;
}
read: async (key) => {
let response = await fetch(testURI("resource", "fetch", key),
{cache: "force-cache"});
let countResponse = await fetch(testURI("ctr", "fetch", key),
{cache: "reload"});
return (await countResponse.text()).trim();
}
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
let response = await fetch(testURI("resource", "fetch", key),
{cache: "force-cache"});
return key;
}
read: async (key) => {
let response = await fetch(testURI("resource", "fetch", key),
{cache: "force-cache"});
let countResponse = await fetch(testURI("ctr", "fetch", key),
{cache: "reload"});
return (await countResponse.text()).trim();
}
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
let response = await fetch(testURI("resource", "fetch", key),
{cache: "force-cache"});
return key;
}
read: async (key) => {
let response = await fetch(testURI("resource", "fetch", key),
{cache: "force-cache"});
let countResponse = await fetch(testURI("ctr", "fetch", key),
{cache: "reload"});
return (await countResponse.text()).trim();
}
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
let response = await fetch(testURI("resource", "fetch", key),
{cache: "force-cache"});
return key;
}
read: async (key) => {
let response = await fetch(testURI("resource", "fetch", key),
{cache: "force-cache"});
let countResponse = await fetch(testURI("ctr", "fetch", key),
{cache: "reload"});
return (await countResponse.text()).trim();
}
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
let response = await fetch(testURI("resource", "fetch", key),
{cache: "force-cache"});
return key;
}
read: async (key) => {
let response = await fetch(testURI("resource", "fetch", key),
{cache: "force-cache"});
let countResponse = await fetch(testURI("ctr", "fetch", key),
{cache: "reload"});
return (await countResponse.text()).trim();
}
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
let response = await fetch(testURI("resource", "fetch", key),
{cache: "force-cache"});
return key;
}
read: async (key) => {
let response = await fetch(testURI("resource", "fetch", key),
{cache: "force-cache"});
let countResponse = await fetch(testURI("ctr", "fetch", key),
{cache: "reload"});
return (await countResponse.text()).trim();
}
result, same first party: 2, 2, 2, 2, 2
result, different first party: 3, 3, 3, 3, 3
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
let response = await fetch(testURI("resource", "fetch", key),
{cache: "force-cache"});
return key;
}
read: async (key) => {
let response = await fetch(testURI("resource", "fetch", key),
{cache: "force-cache"});
let countResponse = await fetch(testURI("ctr", "fetch", key),
{cache: "reload"});
return (await countResponse.text()).trim();
}
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
let response = await fetch(testURI("resource", "fetch", key),
{cache: "force-cache"});
return key;
}
read: async (key) => {
let response = await fetch(testURI("resource", "fetch", key),
{cache: "force-cache"});
let countResponse = await fetch(testURI("ctr", "fetch", key),
{cache: "reload"});
return (await countResponse.text()).trim();
}
result, same first party: 1, 1, 2, 1, 2
result, different first party: 2, 2, 3, 2, 3
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
let response = await fetch(testURI("resource", "fetch", key),
{cache: "force-cache"});
return key;
}
read: async (key) => {
let response = await fetch(testURI("resource", "fetch", key),
{cache: "force-cache"});
let countResponse = await fetch(testURI("ctr", "fetch", key),
{cache: "reload"});
return (await countResponse.text()).trim();
}
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
font cacheWeb fonts are sometimes stored in their own cache, which is vulnerable to being abused for cross-site tracking. |
write: async (key) => {
let style = document.createElement("style");
style.type='text/css';
let fontURI = testURI("resource", "font", key);
style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
document.getElementsByTagName("head")[0].appendChild(style);
return key;
}
read: async (key) => {
let style = document.createElement("style");
style.type='text/css';
let fontURI = testURI("resource", "font", key);
style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
document.getElementsByTagName("head")[0].appendChild(style);
await sleepMs(500);
let response = await fetch(
testURI("ctr", "font", key), {"cache": "reload"});
return (await response.text()).trim();
}
result, same first party: 2, 2, 2, 2, 2
result, different first party: 3, 3, 3, 3, 3
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
let style = document.createElement("style");
style.type='text/css';
let fontURI = testURI("resource", "font", key);
style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
document.getElementsByTagName("head")[0].appendChild(style);
return key;
}
read: async (key) => {
let style = document.createElement("style");
style.type='text/css';
let fontURI = testURI("resource", "font", key);
style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
document.getElementsByTagName("head")[0].appendChild(style);
await sleepMs(500);
let response = await fetch(
testURI("ctr", "font", key), {"cache": "reload"});
return (await response.text()).trim();
}
result, same first party: 2, 2, 2, 2, 2
result, different first party: 3, 3, 3, 3, 3
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
let style = document.createElement("style");
style.type='text/css';
let fontURI = testURI("resource", "font", key);
style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
document.getElementsByTagName("head")[0].appendChild(style);
return key;
}
read: async (key) => {
let style = document.createElement("style");
style.type='text/css';
let fontURI = testURI("resource", "font", key);
style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
document.getElementsByTagName("head")[0].appendChild(style);
await sleepMs(500);
let response = await fetch(
testURI("ctr", "font", key), {"cache": "reload"});
return (await response.text()).trim();
}
result, same first party: 2, 2, 2, 2, 2
result, different first party: 3, 3, 3, 3, 3
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
let style = document.createElement("style");
style.type='text/css';
let fontURI = testURI("resource", "font", key);
style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
document.getElementsByTagName("head")[0].appendChild(style);
return key;
}
read: async (key) => {
let style = document.createElement("style");
style.type='text/css';
let fontURI = testURI("resource", "font", key);
style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
document.getElementsByTagName("head")[0].appendChild(style);
await sleepMs(500);
let response = await fetch(
testURI("ctr", "font", key), {"cache": "reload"});
return (await response.text()).trim();
}
result, same first party: 2, 2, 2, 2, 2
result, different first party: 3, 3, 3, 3, 3
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
let style = document.createElement("style");
style.type='text/css';
let fontURI = testURI("resource", "font", key);
style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
document.getElementsByTagName("head")[0].appendChild(style);
return key;
}
read: async (key) => {
let style = document.createElement("style");
style.type='text/css';
let fontURI = testURI("resource", "font", key);
style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
document.getElementsByTagName("head")[0].appendChild(style);
await sleepMs(500);
let response = await fetch(
testURI("ctr", "font", key), {"cache": "reload"});
return (await response.text()).trim();
}
result, same first party: 2, 2, 2, 2, 2
result, different first party: 3, 3, 3, 3, 3
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
let style = document.createElement("style");
style.type='text/css';
let fontURI = testURI("resource", "font", key);
style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
document.getElementsByTagName("head")[0].appendChild(style);
return key;
}
read: async (key) => {
let style = document.createElement("style");
style.type='text/css';
let fontURI = testURI("resource", "font", key);
style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
document.getElementsByTagName("head")[0].appendChild(style);
await sleepMs(500);
let response = await fetch(
testURI("ctr", "font", key), {"cache": "reload"});
return (await response.text()).trim();
}
result, same first party: 2, 2, 2, 2, 2
result, different first party: 3, 3, 3, 3, 3
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
let style = document.createElement("style");
style.type='text/css';
let fontURI = testURI("resource", "font", key);
style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
document.getElementsByTagName("head")[0].appendChild(style);
return key;
}
read: async (key) => {
let style = document.createElement("style");
style.type='text/css';
let fontURI = testURI("resource", "font", key);
style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
document.getElementsByTagName("head")[0].appendChild(style);
await sleepMs(500);
let response = await fetch(
testURI("ctr", "font", key), {"cache": "reload"});
return (await response.text()).trim();
}
result, same first party: 2, 2, 2, 2, 2
result, different first party: 3, 3, 3, 3, 3
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
let style = document.createElement("style");
style.type='text/css';
let fontURI = testURI("resource", "font", key);
style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
document.getElementsByTagName("head")[0].appendChild(style);
return key;
}
read: async (key) => {
let style = document.createElement("style");
style.type='text/css';
let fontURI = testURI("resource", "font", key);
style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
document.getElementsByTagName("head")[0].appendChild(style);
await sleepMs(500);
let response = await fetch(
testURI("ctr", "font", key), {"cache": "reload"});
return (await response.text()).trim();
}
result, same first party: 2, 1, 2, 1, 2
result, different first party: 3, 2, 3, 2, 3
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
let style = document.createElement("style");
style.type='text/css';
let fontURI = testURI("resource", "font", key);
style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
document.getElementsByTagName("head")[0].appendChild(style);
return key;
}
read: async (key) => {
let style = document.createElement("style");
style.type='text/css';
let fontURI = testURI("resource", "font", key);
style.innerHTML = `@font-face {font-family: "myFont"; src: url("${fontURI}"); } body { font-family: "myFont" }`;
document.getElementsByTagName("head")[0].appendChild(style);
await sleepMs(500);
let response = await fetch(
testURI("ctr", "font", key), {"cache": "reload"});
return (await response.text()).trim();
}
result, same first party: 2, 2, 2, 2, 2
result, different first party: 3, 3, 3, 3, 3
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
getDirectorynavigator.storage.getDirectory exposes a location for storing files to web content. In some cases, these files may be shared across tabs. | –
write: async (secret) => {
try {
const root = await navigator.storage.getDirectory();
const fileHandle = await root.getFileHandle("secret.txt", { create: true });
const stream = await fileHandle.createWritable();
await stream.write(secret);
await stream.close();
} catch (e) {
throw new Error("Unsupported");
}
}
read: async () => {
try {
const root = await navigator.storage.getDirectory();
const fileHandle = await root.getFileHandle("secret.txt");
const file = await fileHandle.getFile();
return file.text();
} catch (e) {
throw new Error("Unsupported");
}
}
result, same first party: , , , ,
result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async (secret) => {
try {
const root = await navigator.storage.getDirectory();
const fileHandle = await root.getFileHandle("secret.txt", { create: true });
const stream = await fileHandle.createWritable();
await stream.write(secret);
await stream.close();
} catch (e) {
throw new Error("Unsupported");
}
}
read: async () => {
try {
const root = await navigator.storage.getDirectory();
const fileHandle = await root.getFileHandle("secret.txt");
const file = await fileHandle.getFile();
return file.text();
} catch (e) {
throw new Error("Unsupported");
}
}
result, same first party: , , , ,
result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async (secret) => {
try {
const root = await navigator.storage.getDirectory();
const fileHandle = await root.getFileHandle("secret.txt", { create: true });
const stream = await fileHandle.createWritable();
await stream.write(secret);
await stream.close();
} catch (e) {
throw new Error("Unsupported");
}
}
read: async () => {
try {
const root = await navigator.storage.getDirectory();
const fileHandle = await root.getFileHandle("secret.txt");
const file = await fileHandle.getFile();
return file.text();
} catch (e) {
throw new Error("Unsupported");
}
}
result, same first party: , , , ,
result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async (secret) => {
try {
const root = await navigator.storage.getDirectory();
const fileHandle = await root.getFileHandle("secret.txt", { create: true });
const stream = await fileHandle.createWritable();
await stream.write(secret);
await stream.close();
} catch (e) {
throw new Error("Unsupported");
}
}
read: async () => {
try {
const root = await navigator.storage.getDirectory();
const fileHandle = await root.getFileHandle("secret.txt");
const file = await fileHandle.getFile();
return file.text();
} catch (e) {
throw new Error("Unsupported");
}
}
result, same first party: , , , ,
result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async (secret) => {
try {
const root = await navigator.storage.getDirectory();
const fileHandle = await root.getFileHandle("secret.txt", { create: true });
const stream = await fileHandle.createWritable();
await stream.write(secret);
await stream.close();
} catch (e) {
throw new Error("Unsupported");
}
}
read: async () => {
try {
const root = await navigator.storage.getDirectory();
const fileHandle = await root.getFileHandle("secret.txt");
const file = await fileHandle.getFile();
return file.text();
} catch (e) {
throw new Error("Unsupported");
}
}
result, same first party: , , , ,
result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async (secret) => {
try {
const root = await navigator.storage.getDirectory();
const fileHandle = await root.getFileHandle("secret.txt", { create: true });
const stream = await fileHandle.createWritable();
await stream.write(secret);
await stream.close();
} catch (e) {
throw new Error("Unsupported");
}
}
read: async () => {
try {
const root = await navigator.storage.getDirectory();
const fileHandle = await root.getFileHandle("secret.txt");
const file = await fileHandle.getFile();
return file.text();
} catch (e) {
throw new Error("Unsupported");
}
}
result, same first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async (secret) => {
try {
const root = await navigator.storage.getDirectory();
const fileHandle = await root.getFileHandle("secret.txt", { create: true });
const stream = await fileHandle.createWritable();
await stream.write(secret);
await stream.close();
} catch (e) {
throw new Error("Unsupported");
}
}
read: async () => {
try {
const root = await navigator.storage.getDirectory();
const fileHandle = await root.getFileHandle("secret.txt");
const file = await fileHandle.getFile();
return file.text();
} catch (e) {
throw new Error("Unsupported");
}
}
result, same first party: , , , ,
result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async (secret) => {
try {
const root = await navigator.storage.getDirectory();
const fileHandle = await root.getFileHandle("secret.txt", { create: true });
const stream = await fileHandle.createWritable();
await stream.write(secret);
await stream.close();
} catch (e) {
throw new Error("Unsupported");
}
}
read: async () => {
try {
const root = await navigator.storage.getDirectory();
const fileHandle = await root.getFileHandle("secret.txt");
const file = await fileHandle.getFile();
return file.text();
} catch (e) {
throw new Error("Unsupported");
}
}
result, same first party: , , , ,
result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async (secret) => {
try {
const root = await navigator.storage.getDirectory();
const fileHandle = await root.getFileHandle("secret.txt", { create: true });
const stream = await fileHandle.createWritable();
await stream.write(secret);
await stream.close();
} catch (e) {
throw new Error("Unsupported");
}
}
read: async () => {
try {
const root = await navigator.storage.getDirectory();
const fileHandle = await root.getFileHandle("secret.txt");
const file = await fileHandle.getFile();
return file.text();
} catch (e) {
throw new Error("Unsupported");
}
}
result, same first party: , , , ,
result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
|
H1 connectionHTTP/1.x are the classic web connection protocols. If these connections are re-used across websites, they can be used to track users. |
write: async (secret) => {
await fetch(`https://h1.privacytests2.org:8901/?mode=write&secret=${secret}`, {cache: "no-store"});
}
read: async () => {
let response = await fetch(`https://h1.privacytests2.org:8901/?mode=read`, {cache: "no-store"});
return await response.text();
}
result, same first party: d1fcc439-fd6b-436a-82b2-7b07a48be42c, 1f4220c6-7f46-46e8-8382-1e68e0aa93da, ef8196ed-3102-40f2-aaed-e1d2f9575201, 38204c3d-6a9e-46bc-af79-d9ee0b83f570, f629fded-a393-4d32-ae92-8bdf1f8a74ea
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
await fetch(`https://h1.privacytests2.org:8901/?mode=write&secret=${secret}`, {cache: "no-store"});
}
read: async () => {
let response = await fetch(`https://h1.privacytests2.org:8901/?mode=read`, {cache: "no-store"});
return await response.text();
}
result, same first party: e616b402-f54e-4dc2-9e80-d9eec6232bfe, 652a7406-26a0-4a22-af9f-ce850b7fbbd3, 79219e1e-2539-47a6-abc4-1fd8f37165cc, 15bc25d1-56d0-4759-be41-017c903613e7, be2f218f-5ad3-4493-9213-39554685d498
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
await fetch(`https://h1.privacytests2.org:8901/?mode=write&secret=${secret}`, {cache: "no-store"});
}
read: async () => {
let response = await fetch(`https://h1.privacytests2.org:8901/?mode=read`, {cache: "no-store"});
return await response.text();
}
result, same first party: 6ffc1af5-0fbf-4d7d-a31c-296bcdd0d082, f423d7a7-7618-4ace-b53b-dc34937c1f28, 2bc1291b-59ea-4d02-a622-2208cd77a86a, 962edccf-6436-4ce1-973a-61eb16239ca6, f423bd8d-1973-4936-83f0-d6555f81e6cc
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
await fetch(`https://h1.privacytests2.org:8901/?mode=write&secret=${secret}`, {cache: "no-store"});
}
read: async () => {
let response = await fetch(`https://h1.privacytests2.org:8901/?mode=read`, {cache: "no-store"});
return await response.text();
}
result, same first party: 323f9e44-496a-4e27-a9b4-225f7c18bf25, 23b7ec2e-8886-4a43-992a-1fd056cbbdb0, 8ca82aee-8734-4e8f-8dd3-0f0abf781d9a, 45894f2d-308e-4158-8c66-9ca24681fd96, a0c6800b-b78d-4a5f-a81e-6ca5c1c4680b
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
await fetch(`https://h1.privacytests2.org:8901/?mode=write&secret=${secret}`, {cache: "no-store"});
}
read: async () => {
let response = await fetch(`https://h1.privacytests2.org:8901/?mode=read`, {cache: "no-store"});
return await response.text();
}
result, same first party: 49451103-9325-4e88-ac98-7edeea660ba3, 43326fa1-9ee9-4c2f-9357-7eb5933ed74a, 9035382f-0641-4971-a562-e79bee21ecfa, d8bfb7bb-dac0-4596-a5b8-f5a3d0a52d0c, 7673fe6f-8ed3-42bf-9801-fd846fb30dde
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
await fetch(`https://h1.privacytests2.org:8901/?mode=write&secret=${secret}`, {cache: "no-store"});
}
read: async () => {
let response = await fetch(`https://h1.privacytests2.org:8901/?mode=read`, {cache: "no-store"});
return await response.text();
}
result, same first party: 84194efc-c0b9-4bff-9616-237a8066da82, 7d49c69c-f747-4070-8da2-e599ee79372a, e6f701c8-c159-419b-a2c4-a45810bf36aa, 5a77f9d1-1aa2-4498-a5aa-2eacbb993367, 242d8412-50e3-455f-98c9-4e748b4d332a
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
await fetch(`https://h1.privacytests2.org:8901/?mode=write&secret=${secret}`, {cache: "no-store"});
}
read: async () => {
let response = await fetch(`https://h1.privacytests2.org:8901/?mode=read`, {cache: "no-store"});
return await response.text();
}
result, same first party: 645c70fe-e1b2-4ef5-9d85-d196d925f299, 37bdf754-d9f6-4135-9610-013b82148cc6, 7d60b4be-b2b0-4418-ad71-d15a2bb7c132, 5a5d1072-e52f-4d18-8e84-7d66a520fa63, b03fc878-2397-4505-9728-d513ba111f04
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
await fetch(`https://h1.privacytests2.org:8901/?mode=write&secret=${secret}`, {cache: "no-store"});
}
read: async () => {
let response = await fetch(`https://h1.privacytests2.org:8901/?mode=read`, {cache: "no-store"});
return await response.text();
}
result, same first party: 837bd07b-866a-419a-a093-0f78957cfa61, 2f080cb0-010b-440e-8ca5-16ddad4725c3, fcea6251-ed06-4520-8dee-787cdbfb82eb, f536f207-3a6b-4855-863a-f10f2dc68c22, f1bf0ab2-6b0b-467d-8ca1-e79bbe9e7c50
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
await fetch(`https://h1.privacytests2.org:8901/?mode=write&secret=${secret}`, {cache: "no-store"});
}
read: async () => {
let response = await fetch(`https://h1.privacytests2.org:8901/?mode=read`, {cache: "no-store"});
return await response.text();
}
result, same first party: d96f04df-0072-455a-9747-be4c8015ad17, 62619b98-b397-45a8-a1c6-cf0f397aee49, a635112e-a90d-46fe-9f59-85524ee37a1c, 215a628a-756f-4200-8032-7c6eefe5eac1, 32ab1917-a776-42cd-ad18-68a872a17588
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
H2 connectionHTTP/2 is a web connection protocol introduced in 2015. Some browsers re-use HTTP/2 connections across websites and can thus be used to track users. |
write: async (secret) => {
await fetch(`https://h2.privacytests2.org:8902/?mode=write&secret=${secret}`, {cache: "no-store"});
}
read: async () => {
let response = await fetch(`https://h2.privacytests2.org:8902/?mode=read`, {cache: "no-store"});
return await response.text();
}
result, same first party: d1fcc439-fd6b-436a-82b2-7b07a48be42c, 1f4220c6-7f46-46e8-8382-1e68e0aa93da, ef8196ed-3102-40f2-aaed-e1d2f9575201, 38204c3d-6a9e-46bc-af79-d9ee0b83f570, f629fded-a393-4d32-ae92-8bdf1f8a74ea
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
await fetch(`https://h2.privacytests2.org:8902/?mode=write&secret=${secret}`, {cache: "no-store"});
}
read: async () => {
let response = await fetch(`https://h2.privacytests2.org:8902/?mode=read`, {cache: "no-store"});
return await response.text();
}
result, same first party: e616b402-f54e-4dc2-9e80-d9eec6232bfe, 652a7406-26a0-4a22-af9f-ce850b7fbbd3, 79219e1e-2539-47a6-abc4-1fd8f37165cc, 15bc25d1-56d0-4759-be41-017c903613e7, be2f218f-5ad3-4493-9213-39554685d498
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
await fetch(`https://h2.privacytests2.org:8902/?mode=write&secret=${secret}`, {cache: "no-store"});
}
read: async () => {
let response = await fetch(`https://h2.privacytests2.org:8902/?mode=read`, {cache: "no-store"});
return await response.text();
}
result, same first party: 6ffc1af5-0fbf-4d7d-a31c-296bcdd0d082, f423d7a7-7618-4ace-b53b-dc34937c1f28, 2bc1291b-59ea-4d02-a622-2208cd77a86a, 962edccf-6436-4ce1-973a-61eb16239ca6, f423bd8d-1973-4936-83f0-d6555f81e6cc
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
await fetch(`https://h2.privacytests2.org:8902/?mode=write&secret=${secret}`, {cache: "no-store"});
}
read: async () => {
let response = await fetch(`https://h2.privacytests2.org:8902/?mode=read`, {cache: "no-store"});
return await response.text();
}
result, same first party: 323f9e44-496a-4e27-a9b4-225f7c18bf25, 23b7ec2e-8886-4a43-992a-1fd056cbbdb0, 8ca82aee-8734-4e8f-8dd3-0f0abf781d9a, 45894f2d-308e-4158-8c66-9ca24681fd96, a0c6800b-b78d-4a5f-a81e-6ca5c1c4680b
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
await fetch(`https://h2.privacytests2.org:8902/?mode=write&secret=${secret}`, {cache: "no-store"});
}
read: async () => {
let response = await fetch(`https://h2.privacytests2.org:8902/?mode=read`, {cache: "no-store"});
return await response.text();
}
result, same first party: 49451103-9325-4e88-ac98-7edeea660ba3, 43326fa1-9ee9-4c2f-9357-7eb5933ed74a, 9035382f-0641-4971-a562-e79bee21ecfa, d8bfb7bb-dac0-4596-a5b8-f5a3d0a52d0c, 7673fe6f-8ed3-42bf-9801-fd846fb30dde
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
await fetch(`https://h2.privacytests2.org:8902/?mode=write&secret=${secret}`, {cache: "no-store"});
}
read: async () => {
let response = await fetch(`https://h2.privacytests2.org:8902/?mode=read`, {cache: "no-store"});
return await response.text();
}
result, same first party: 84194efc-c0b9-4bff-9616-237a8066da82, 7d49c69c-f747-4070-8da2-e599ee79372a, e6f701c8-c159-419b-a2c4-a45810bf36aa, 5a77f9d1-1aa2-4498-a5aa-2eacbb993367, 242d8412-50e3-455f-98c9-4e748b4d332a
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
await fetch(`https://h2.privacytests2.org:8902/?mode=write&secret=${secret}`, {cache: "no-store"});
}
read: async () => {
let response = await fetch(`https://h2.privacytests2.org:8902/?mode=read`, {cache: "no-store"});
return await response.text();
}
result, same first party: 645c70fe-e1b2-4ef5-9d85-d196d925f299, 37bdf754-d9f6-4135-9610-013b82148cc6, 7d60b4be-b2b0-4418-ad71-d15a2bb7c132, 5a5d1072-e52f-4d18-8e84-7d66a520fa63, b03fc878-2397-4505-9728-d513ba111f04
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
await fetch(`https://h2.privacytests2.org:8902/?mode=write&secret=${secret}`, {cache: "no-store"});
}
read: async () => {
let response = await fetch(`https://h2.privacytests2.org:8902/?mode=read`, {cache: "no-store"});
return await response.text();
}
result, same first party: 837bd07b-866a-419a-a093-0f78957cfa61, 2f080cb0-010b-440e-8ca5-16ddad4725c3, fcea6251-ed06-4520-8dee-787cdbfb82eb, f536f207-3a6b-4855-863a-f10f2dc68c22, f1bf0ab2-6b0b-467d-8ca1-e79bbe9e7c50
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
await fetch(`https://h2.privacytests2.org:8902/?mode=write&secret=${secret}`, {cache: "no-store"});
}
read: async () => {
let response = await fetch(`https://h2.privacytests2.org:8902/?mode=read`, {cache: "no-store"});
return await response.text();
}
result, same first party: d96f04df-0072-455a-9747-be4c8015ad17, 62619b98-b397-45a8-a1c6-cf0f397aee49, a635112e-a90d-46fe-9f59-85524ee37a1c, 215a628a-756f-4200-8032-7c6eefe5eac1, 32ab1917-a776-42cd-ad18-68a872a17588
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
H3 connectionHTTP/3 is a new standard HTTP connection protocol, still in draft but widely supported by browsers. If it is not partitioned, it can be used to track users across websites. | –
write: async (secret) => {
// Ensure that we can switch over to h3 via alt-svc:
for (let i = 0; i<3; ++i) {
await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
await sleepMs(500);
}
// Are we now connecting over h3?
let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
let text = await response.text();
// Empty response text indicates we are not connecting over h3:
if (text.trim() === "") {
throw new Error("Unsupported");
}
}
read: async () => {
let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`);
return await response.text();
}
result, same first party: , , , ,
result, different first party: , , , ,
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async (secret) => {
// Ensure that we can switch over to h3 via alt-svc:
for (let i = 0; i<3; ++i) {
await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
await sleepMs(500);
}
// Are we now connecting over h3?
let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
let text = await response.text();
// Empty response text indicates we are not connecting over h3:
if (text.trim() === "") {
throw new Error("Unsupported");
}
}
read: async () => {
let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`);
return await response.text();
}
result, same first party: , , , ,
result, different first party: , , , ,
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async (secret) => {
// Ensure that we can switch over to h3 via alt-svc:
for (let i = 0; i<3; ++i) {
await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
await sleepMs(500);
}
// Are we now connecting over h3?
let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
let text = await response.text();
// Empty response text indicates we are not connecting over h3:
if (text.trim() === "") {
throw new Error("Unsupported");
}
}
read: async () => {
let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`);
return await response.text();
}
result, same first party: , , , ,
result, different first party: , , , ,
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async (secret) => {
// Ensure that we can switch over to h3 via alt-svc:
for (let i = 0; i<3; ++i) {
await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
await sleepMs(500);
}
// Are we now connecting over h3?
let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
let text = await response.text();
// Empty response text indicates we are not connecting over h3:
if (text.trim() === "") {
throw new Error("Unsupported");
}
}
read: async () => {
let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`);
return await response.text();
}
result, same first party: , , , ,
result, different first party: , , , ,
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async (secret) => {
// Ensure that we can switch over to h3 via alt-svc:
for (let i = 0; i<3; ++i) {
await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
await sleepMs(500);
}
// Are we now connecting over h3?
let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
let text = await response.text();
// Empty response text indicates we are not connecting over h3:
if (text.trim() === "") {
throw new Error("Unsupported");
}
}
read: async () => {
let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`);
return await response.text();
}
result, same first party: , , , ,
result, different first party: , , , ,
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async (secret) => {
// Ensure that we can switch over to h3 via alt-svc:
for (let i = 0; i<3; ++i) {
await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
await sleepMs(500);
}
// Are we now connecting over h3?
let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
let text = await response.text();
// Empty response text indicates we are not connecting over h3:
if (text.trim() === "") {
throw new Error("Unsupported");
}
}
read: async () => {
let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`);
return await response.text();
}
result, same first party: , , , ,
result, different first party: , , , ,
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async (secret) => {
// Ensure that we can switch over to h3 via alt-svc:
for (let i = 0; i<3; ++i) {
await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
await sleepMs(500);
}
// Are we now connecting over h3?
let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
let text = await response.text();
// Empty response text indicates we are not connecting over h3:
if (text.trim() === "") {
throw new Error("Unsupported");
}
}
read: async () => {
let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`);
return await response.text();
}
result, same first party: , , , ,
result, different first party: , , , ,
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async (secret) => {
// Ensure that we can switch over to h3 via alt-svc:
for (let i = 0; i<3; ++i) {
await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
await sleepMs(500);
}
// Are we now connecting over h3?
let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
let text = await response.text();
// Empty response text indicates we are not connecting over h3:
if (text.trim() === "") {
throw new Error("Unsupported");
}
}
read: async () => {
let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`);
return await response.text();
}
result, same first party: , , , ,
result, different first party: , , , ,
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async (secret) => {
// Ensure that we can switch over to h3 via alt-svc:
for (let i = 0; i<3; ++i) {
await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
await sleepMs(500);
}
// Are we now connecting over h3?
let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`, {cache: "no-store"});
let text = await response.text();
// Empty response text indicates we are not connecting over h3:
if (text.trim() === "") {
throw new Error("Unsupported");
}
}
read: async () => {
let response = await fetch(`https://h3.privacytests2.org:4434/connection_id`);
return await response.text();
}
result, same first party: , , , ,
result, different first party: , , , ,
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
|
HSTS cacheThe HTTP Strict-Transport-Security response header allows a website to signal that it should only be accessed via HTTPS. The browser remembers this directive in a database, but if this database is not partitioned, then it can be used to track users across websites." |
write: set HSTS flag
read: read HSTS flag
result, same first party: not tested, not tested, not tested, not tested, not tested
result, different first party: Used http, Used http, Used http, Used http, Used http
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: set HSTS flag
read: read HSTS flag
result, same first party: not tested, not tested, not tested, not tested, not tested
result, different first party: Used http, Used http, Used http, Used http, Used http
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: set HSTS flag
read: read HSTS flag
result, same first party: not tested, not tested, not tested, not tested, not tested
result, different first party: Used http, Used http, Used http, Used http, Used http
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: set HSTS flag
read: read HSTS flag
result, same first party: not tested, not tested, not tested, not tested, not tested
result, different first party: Used http, Used http, Used http, Used http, Used http
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: set HSTS flag
read: read HSTS flag
result, same first party: not tested, not tested, not tested, not tested, not tested
result, different first party: Used http, Used http, Used http, Used http, Used http
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: set HSTS flag
read: read HSTS flag
result, same first party: not tested, not tested, not tested, not tested, not tested
result, different first party: Used http, Used http, Used http, Used http, Used http
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: set HSTS flag
read: read HSTS flag
result, same first party: not tested, not tested, not tested, not tested, not tested
result, different first party: Used http, Used http, Used http, Used http, Used http
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: undefined
read: undefined
result, same first party: undefined
result, different first party: undefined
unsupported: undefined
passed: undefined
test failed: undefined
|
write: set HSTS flag
read: read HSTS flag
result, same first party: not tested, not tested, not tested, not tested, not tested
result, different first party: Used http, Used http, Used http, Used http, Used http
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
iframe cacheAn iframe is an element in a web page than allows websites to embed a second web page. Caching of this web page could be abused for cross-site tracking. |
write: (key) => new Promise((resolve, reject) => {
let iframe = document.createElement("iframe");
document.body.appendChild(iframe);
iframe.addEventListener("load", () => resolve(key), {once: true});
iframe.src = testURI("resource", "page", key);
})
read: async (key) => {
let iframe = document.createElement("iframe");
document.body.appendChild(iframe);
let iframeLoadPromise = new Promise((resolve, reject) => {
iframe.addEventListener("load", resolve, {once: true});
});
let address = testURI("resource", "page", key);
iframe.src = address;
await iframeLoadPromise;
let response = await fetch(
testURI("ctr", "page", key), {"cache": "reload"});
return (await response.text()).trim();
}
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (key) => new Promise((resolve, reject) => {
let iframe = document.createElement("iframe");
document.body.appendChild(iframe);
iframe.addEventListener("load", () => resolve(key), {once: true});
iframe.src = testURI("resource", "page", key);
})
read: async (key) => {
let iframe = document.createElement("iframe");
document.body.appendChild(iframe);
let iframeLoadPromise = new Promise((resolve, reject) => {
iframe.addEventListener("load", resolve, {once: true});
});
let address = testURI("resource", "page", key);
iframe.src = address;
await iframeLoadPromise;
let response = await fetch(
testURI("ctr", "page", key), {"cache": "reload"});
return (await response.text()).trim();
}
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (key) => new Promise((resolve, reject) => {
let iframe = document.createElement("iframe");
document.body.appendChild(iframe);
iframe.addEventListener("load", () => resolve(key), {once: true});
iframe.src = testURI("resource", "page", key);
})
read: async (key) => {
let iframe = document.createElement("iframe");
document.body.appendChild(iframe);
let iframeLoadPromise = new Promise((resolve, reject) => {
iframe.addEventListener("load", resolve, {once: true});
});
let address = testURI("resource", "page", key);
iframe.src = address;
await iframeLoadPromise;
let response = await fetch(
testURI("ctr", "page", key), {"cache": "reload"});
return (await response.text()).trim();
}
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (key) => new Promise((resolve, reject) => {
let iframe = document.createElement("iframe");
document.body.appendChild(iframe);
iframe.addEventListener("load", () => resolve(key), {once: true});
iframe.src = testURI("resource", "page", key);
})
read: async (key) => {
let iframe = document.createElement("iframe");
document.body.appendChild(iframe);
let iframeLoadPromise = new Promise((resolve, reject) => {
iframe.addEventListener("load", resolve, {once: true});
});
let address = testURI("resource", "page", key);
iframe.src = address;
await iframeLoadPromise;
let response = await fetch(
testURI("ctr", "page", key), {"cache": "reload"});
return (await response.text()).trim();
}
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (key) => new Promise((resolve, reject) => {
let iframe = document.createElement("iframe");
document.body.appendChild(iframe);
iframe.addEventListener("load", () => resolve(key), {once: true});
iframe.src = testURI("resource", "page", key);
})
read: async (key) => {
let iframe = document.createElement("iframe");
document.body.appendChild(iframe);
let iframeLoadPromise = new Promise((resolve, reject) => {
iframe.addEventListener("load", resolve, {once: true});
});
let address = testURI("resource", "page", key);
iframe.src = address;
await iframeLoadPromise;
let response = await fetch(
testURI("ctr", "page", key), {"cache": "reload"});
return (await response.text()).trim();
}
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (key) => new Promise((resolve, reject) => {
let iframe = document.createElement("iframe");
document.body.appendChild(iframe);
iframe.addEventListener("load", () => resolve(key), {once: true});
iframe.src = testURI("resource", "page", key);
})
read: async (key) => {
let iframe = document.createElement("iframe");
document.body.appendChild(iframe);
let iframeLoadPromise = new Promise((resolve, reject) => {
iframe.addEventListener("load", resolve, {once: true});
});
let address = testURI("resource", "page", key);
iframe.src = address;
await iframeLoadPromise;
let response = await fetch(
testURI("ctr", "page", key), {"cache": "reload"});
return (await response.text()).trim();
}
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (key) => new Promise((resolve, reject) => {
let iframe = document.createElement("iframe");
document.body.appendChild(iframe);
iframe.addEventListener("load", () => resolve(key), {once: true});
iframe.src = testURI("resource", "page", key);
})
read: async (key) => {
let iframe = document.createElement("iframe");
document.body.appendChild(iframe);
let iframeLoadPromise = new Promise((resolve, reject) => {
iframe.addEventListener("load", resolve, {once: true});
});
let address = testURI("resource", "page", key);
iframe.src = address;
await iframeLoadPromise;
let response = await fetch(
testURI("ctr", "page", key), {"cache": "reload"});
return (await response.text()).trim();
}
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (key) => new Promise((resolve, reject) => {
let iframe = document.createElement("iframe");
document.body.appendChild(iframe);
iframe.addEventListener("load", () => resolve(key), {once: true});
iframe.src = testURI("resource", "page", key);
})
read: async (key) => {
let iframe = document.createElement("iframe");
document.body.appendChild(iframe);
let iframeLoadPromise = new Promise((resolve, reject) => {
iframe.addEventListener("load", resolve, {once: true});
});
let address = testURI("resource", "page", key);
iframe.src = address;
await iframeLoadPromise;
let response = await fetch(
testURI("ctr", "page", key), {"cache": "reload"});
return (await response.text()).trim();
}
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (key) => new Promise((resolve, reject) => {
let iframe = document.createElement("iframe");
document.body.appendChild(iframe);
iframe.addEventListener("load", () => resolve(key), {once: true});
iframe.src = testURI("resource", "page", key);
})
read: async (key) => {
let iframe = document.createElement("iframe");
document.body.appendChild(iframe);
let iframeLoadPromise = new Promise((resolve, reject) => {
iframe.addEventListener("load", resolve, {once: true});
});
let address = testURI("resource", "page", key);
iframe.src = address;
await iframeLoadPromise;
let response = await fetch(
testURI("ctr", "page", key), {"cache": "reload"});
return (await response.text()).trim();
}
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
image cacheCaching of images in web browsers is a standard behavior. But if that cache leaks between websites, it can be abused for cross-site tracking. |
write: (key) => new Promise((resolve, reject) => {
let img = document.createElement("img");
document.body.appendChild(img);
img.addEventListener("load", () => resolve(key), {once: true});
img.src = testURI("resource", "image", key);
})
read: async (key) => {
let img = document.createElement("img");
document.body.appendChild(img);
let imgLoadPromise = new Promise((resolve, reject) => {
img.addEventListener("load", resolve, {once: true});
});
img.src = testURI("resource", "image", key);
await imgLoadPromise;
let response = await fetch(
testURI("ctr", "image", key), {"cache": "reload"});
return (await response.text()).trim();
}
result, same first party: 2, 2, 2, 2, 2
result, different first party: 3, 3, 3, 3, 3
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (key) => new Promise((resolve, reject) => {
let img = document.createElement("img");
document.body.appendChild(img);
img.addEventListener("load", () => resolve(key), {once: true});
img.src = testURI("resource", "image", key);
})
read: async (key) => {
let img = document.createElement("img");
document.body.appendChild(img);
let imgLoadPromise = new Promise((resolve, reject) => {
img.addEventListener("load", resolve, {once: true});
});
img.src = testURI("resource", "image", key);
await imgLoadPromise;
let response = await fetch(
testURI("ctr", "image", key), {"cache": "reload"});
return (await response.text()).trim();
}
result, same first party: 2, 2, 2, 2, 2
result, different first party: 3, 3, 3, 3, 3
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (key) => new Promise((resolve, reject) => {
let img = document.createElement("img");
document.body.appendChild(img);
img.addEventListener("load", () => resolve(key), {once: true});
img.src = testURI("resource", "image", key);
})
read: async (key) => {
let img = document.createElement("img");
document.body.appendChild(img);
let imgLoadPromise = new Promise((resolve, reject) => {
img.addEventListener("load", resolve, {once: true});
});
img.src = testURI("resource", "image", key);
await imgLoadPromise;
let response = await fetch(
testURI("ctr", "image", key), {"cache": "reload"});
return (await response.text()).trim();
}
result, same first party: 2, 2, 2, 2, 2
result, different first party: 3, 3, 3, 3, 3
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (key) => new Promise((resolve, reject) => {
let img = document.createElement("img");
document.body.appendChild(img);
img.addEventListener("load", () => resolve(key), {once: true});
img.src = testURI("resource", "image", key);
})
read: async (key) => {
let img = document.createElement("img");
document.body.appendChild(img);
let imgLoadPromise = new Promise((resolve, reject) => {
img.addEventListener("load", resolve, {once: true});
});
img.src = testURI("resource", "image", key);
await imgLoadPromise;
let response = await fetch(
testURI("ctr", "image", key), {"cache": "reload"});
return (await response.text()).trim();
}
result, same first party: 2, 2, 2, 2, 2
result, different first party: 3, 3, 3, 3, 3
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (key) => new Promise((resolve, reject) => {
let img = document.createElement("img");
document.body.appendChild(img);
img.addEventListener("load", () => resolve(key), {once: true});
img.src = testURI("resource", "image", key);
})
read: async (key) => {
let img = document.createElement("img");
document.body.appendChild(img);
let imgLoadPromise = new Promise((resolve, reject) => {
img.addEventListener("load", resolve, {once: true});
});
img.src = testURI("resource", "image", key);
await imgLoadPromise;
let response = await fetch(
testURI("ctr", "image", key), {"cache": "reload"});
return (await response.text()).trim();
}
result, same first party: 2, 2, 2, 2, 2
result, different first party: 3, 3, 3, 3, 3
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (key) => new Promise((resolve, reject) => {
let img = document.createElement("img");
document.body.appendChild(img);
img.addEventListener("load", () => resolve(key), {once: true});
img.src = testURI("resource", "image", key);
})
read: async (key) => {
let img = document.createElement("img");
document.body.appendChild(img);
let imgLoadPromise = new Promise((resolve, reject) => {
img.addEventListener("load", resolve, {once: true});
});
img.src = testURI("resource", "image", key);
await imgLoadPromise;
let response = await fetch(
testURI("ctr", "image", key), {"cache": "reload"});
return (await response.text()).trim();
}
result, same first party: 2, 2, 2, 2, 2
result, different first party: 3, 3, 3, 3, 3
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (key) => new Promise((resolve, reject) => {
let img = document.createElement("img");
document.body.appendChild(img);
img.addEventListener("load", () => resolve(key), {once: true});
img.src = testURI("resource", "image", key);
})
read: async (key) => {
let img = document.createElement("img");
document.body.appendChild(img);
let imgLoadPromise = new Promise((resolve, reject) => {
img.addEventListener("load", resolve, {once: true});
});
img.src = testURI("resource", "image", key);
await imgLoadPromise;
let response = await fetch(
testURI("ctr", "image", key), {"cache": "reload"});
return (await response.text()).trim();
}
result, same first party: 2, 2, 2, 2, 2
result, different first party: 3, 3, 3, 3, 3
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (key) => new Promise((resolve, reject) => {
let img = document.createElement("img");
document.body.appendChild(img);
img.addEventListener("load", () => resolve(key), {once: true});
img.src = testURI("resource", "image", key);
})
read: async (key) => {
let img = document.createElement("img");
document.body.appendChild(img);
let imgLoadPromise = new Promise((resolve, reject) => {
img.addEventListener("load", resolve, {once: true});
});
img.src = testURI("resource", "image", key);
await imgLoadPromise;
let response = await fetch(
testURI("ctr", "image", key), {"cache": "reload"});
return (await response.text()).trim();
}
result, same first party: 2, 1, 2, 1, 2
result, different first party: 3, 2, 3, 2, 3
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (key) => new Promise((resolve, reject) => {
let img = document.createElement("img");
document.body.appendChild(img);
img.addEventListener("load", () => resolve(key), {once: true});
img.src = testURI("resource", "image", key);
})
read: async (key) => {
let img = document.createElement("img");
document.body.appendChild(img);
let imgLoadPromise = new Promise((resolve, reject) => {
img.addEventListener("load", resolve, {once: true});
});
img.src = testURI("resource", "image", key);
await imgLoadPromise;
let response = await fetch(
testURI("ctr", "image", key), {"cache": "reload"});
return (await response.text()).trim();
}
result, same first party: 2, 2, 2, 2, 2
result, different first party: 3, 3, 3, 3, 3
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
indexedDBThe IndexedDB API exposes a transactional database to web pages. That database can be used to track users across websites, unless it is partitioned. |
write: async (secret) => {
try {
return await IdbKeyVal.set("secret", secret);
} catch (e) {
throw new Error("Unsupported");
}
}
read: () => IdbKeyVal.get("secret")
result, same first party: d1fcc439-fd6b-436a-82b2-7b07a48be42c, 1f4220c6-7f46-46e8-8382-1e68e0aa93da, ef8196ed-3102-40f2-aaed-e1d2f9575201, 38204c3d-6a9e-46bc-af79-d9ee0b83f570, f629fded-a393-4d32-ae92-8bdf1f8a74ea
result, different first party: undefined
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
try {
return await IdbKeyVal.set("secret", secret);
} catch (e) {
throw new Error("Unsupported");
}
}
read: () => IdbKeyVal.get("secret")
result, same first party: e616b402-f54e-4dc2-9e80-d9eec6232bfe, 652a7406-26a0-4a22-af9f-ce850b7fbbd3, 79219e1e-2539-47a6-abc4-1fd8f37165cc, 15bc25d1-56d0-4759-be41-017c903613e7, be2f218f-5ad3-4493-9213-39554685d498
result, different first party: undefined
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
try {
return await IdbKeyVal.set("secret", secret);
} catch (e) {
throw new Error("Unsupported");
}
}
read: () => IdbKeyVal.get("secret")
result, same first party: 6ffc1af5-0fbf-4d7d-a31c-296bcdd0d082, f423d7a7-7618-4ace-b53b-dc34937c1f28, 2bc1291b-59ea-4d02-a622-2208cd77a86a, 962edccf-6436-4ce1-973a-61eb16239ca6, f423bd8d-1973-4936-83f0-d6555f81e6cc
result, different first party: undefined
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
try {
return await IdbKeyVal.set("secret", secret);
} catch (e) {
throw new Error("Unsupported");
}
}
read: () => IdbKeyVal.get("secret")
result, same first party: 323f9e44-496a-4e27-a9b4-225f7c18bf25, 23b7ec2e-8886-4a43-992a-1fd056cbbdb0, 8ca82aee-8734-4e8f-8dd3-0f0abf781d9a, 45894f2d-308e-4158-8c66-9ca24681fd96, a0c6800b-b78d-4a5f-a81e-6ca5c1c4680b
result, different first party: undefined
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
try {
return await IdbKeyVal.set("secret", secret);
} catch (e) {
throw new Error("Unsupported");
}
}
read: () => IdbKeyVal.get("secret")
result, same first party: 49451103-9325-4e88-ac98-7edeea660ba3, 43326fa1-9ee9-4c2f-9357-7eb5933ed74a, 9035382f-0641-4971-a562-e79bee21ecfa, d8bfb7bb-dac0-4596-a5b8-f5a3d0a52d0c, 7673fe6f-8ed3-42bf-9801-fd846fb30dde
result, different first party: undefined
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
try {
return await IdbKeyVal.set("secret", secret);
} catch (e) {
throw new Error("Unsupported");
}
}
read: () => IdbKeyVal.get("secret")
result, same first party: 84194efc-c0b9-4bff-9616-237a8066da82, 7d49c69c-f747-4070-8da2-e599ee79372a, e6f701c8-c159-419b-a2c4-a45810bf36aa, 5a77f9d1-1aa2-4498-a5aa-2eacbb993367, 242d8412-50e3-455f-98c9-4e748b4d332a
result, different first party: undefined
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
try {
return await IdbKeyVal.set("secret", secret);
} catch (e) {
throw new Error("Unsupported");
}
}
read: () => IdbKeyVal.get("secret")
result, same first party: 645c70fe-e1b2-4ef5-9d85-d196d925f299, 37bdf754-d9f6-4135-9610-013b82148cc6, 7d60b4be-b2b0-4418-ad71-d15a2bb7c132, 5a5d1072-e52f-4d18-8e84-7d66a520fa63, b03fc878-2397-4505-9728-d513ba111f04
result, different first party: undefined
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
try {
return await IdbKeyVal.set("secret", secret);
} catch (e) {
throw new Error("Unsupported");
}
}
read: () => IdbKeyVal.get("secret")
result, same first party: 837bd07b-866a-419a-a093-0f78957cfa61, 2f080cb0-010b-440e-8ca5-16ddad4725c3, fcea6251-ed06-4520-8dee-787cdbfb82eb, f536f207-3a6b-4855-863a-f10f2dc68c22, f1bf0ab2-6b0b-467d-8ca1-e79bbe9e7c50
result, different first party: undefined
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
try {
return await IdbKeyVal.set("secret", secret);
} catch (e) {
throw new Error("Unsupported");
}
}
read: () => IdbKeyVal.get("secret")
result, same first party: d96f04df-0072-455a-9747-be4c8015ad17, 62619b98-b397-45a8-a1c6-cf0f397aee49, a635112e-a90d-46fe-9f59-85524ee37a1c, 215a628a-756f-4200-8032-7c6eefe5eac1, 32ab1917-a776-42cd-ad18-68a872a17588
result, different first party: undefined
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
localStorageThe localStorage API gives websites access to a key-value database that will remain available across visits. If the localStorage API is not partitioned or blocked, it can also be used to track users across websites. |
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same first party: d1fcc439-fd6b-436a-82b2-7b07a48be42c, 1f4220c6-7f46-46e8-8382-1e68e0aa93da, ef8196ed-3102-40f2-aaed-e1d2f9575201, 38204c3d-6a9e-46bc-af79-d9ee0b83f570, f629fded-a393-4d32-ae92-8bdf1f8a74ea
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same first party: e616b402-f54e-4dc2-9e80-d9eec6232bfe, 652a7406-26a0-4a22-af9f-ce850b7fbbd3, 79219e1e-2539-47a6-abc4-1fd8f37165cc, 15bc25d1-56d0-4759-be41-017c903613e7, be2f218f-5ad3-4493-9213-39554685d498
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same first party: 6ffc1af5-0fbf-4d7d-a31c-296bcdd0d082, f423d7a7-7618-4ace-b53b-dc34937c1f28, 2bc1291b-59ea-4d02-a622-2208cd77a86a, 962edccf-6436-4ce1-973a-61eb16239ca6, f423bd8d-1973-4936-83f0-d6555f81e6cc
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same first party: 323f9e44-496a-4e27-a9b4-225f7c18bf25, 23b7ec2e-8886-4a43-992a-1fd056cbbdb0, 8ca82aee-8734-4e8f-8dd3-0f0abf781d9a, 45894f2d-308e-4158-8c66-9ca24681fd96, a0c6800b-b78d-4a5f-a81e-6ca5c1c4680b
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same first party: 49451103-9325-4e88-ac98-7edeea660ba3, 43326fa1-9ee9-4c2f-9357-7eb5933ed74a, 9035382f-0641-4971-a562-e79bee21ecfa, d8bfb7bb-dac0-4596-a5b8-f5a3d0a52d0c, 7673fe6f-8ed3-42bf-9801-fd846fb30dde
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same first party: 84194efc-c0b9-4bff-9616-237a8066da82, 7d49c69c-f747-4070-8da2-e599ee79372a, e6f701c8-c159-419b-a2c4-a45810bf36aa, 5a77f9d1-1aa2-4498-a5aa-2eacbb993367, 242d8412-50e3-455f-98c9-4e748b4d332a
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same first party: 645c70fe-e1b2-4ef5-9d85-d196d925f299, 37bdf754-d9f6-4135-9610-013b82148cc6, 7d60b4be-b2b0-4418-ad71-d15a2bb7c132, 5a5d1072-e52f-4d18-8e84-7d66a520fa63, b03fc878-2397-4505-9728-d513ba111f04
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same first party: 837bd07b-866a-419a-a093-0f78957cfa61, 2f080cb0-010b-440e-8ca5-16ddad4725c3, fcea6251-ed06-4520-8dee-787cdbfb82eb, f536f207-3a6b-4855-863a-f10f2dc68c22, f1bf0ab2-6b0b-467d-8ca1-e79bbe9e7c50
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => localStorage.setItem("secret", secret)
read: () => localStorage.getItem("secret")
result, same first party: d96f04df-0072-455a-9747-be4c8015ad17, 62619b98-b397-45a8-a1c6-cf0f397aee49, a635112e-a90d-46fe-9f59-85524ee37a1c, 215a628a-756f-4200-8032-7c6eefe5eac1, 32ab1917-a776-42cd-ad18-68a872a17588
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
locksnavigator.locks (only supported in some browsers) allows scripts on multiple tabs to coordinate. If this API is not partitioned, it can be used for cross-site tracking. |
write: async (key) => {
if (navigator.locks) {
navigator.locks.request(key, lock => new Promise((f,r) => {}));
let queryResult = await navigator.locks.query();
return queryResult.held[0].clientId;
} else {
throw new Error("Unsupported");
}
}
read: async () => {
if (navigator.locks) {
let queryResult = await navigator.locks.query();
return queryResult.held[0].name;
}
}
result, same first party: d1fcc439-fd6b-436a-82b2-7b07a48be42c, 1f4220c6-7f46-46e8-8382-1e68e0aa93da, ef8196ed-3102-40f2-aaed-e1d2f9575201, 38204c3d-6a9e-46bc-af79-d9ee0b83f570, f629fded-a393-4d32-ae92-8bdf1f8a74ea
result, different first party: Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
if (navigator.locks) {
navigator.locks.request(key, lock => new Promise((f,r) => {}));
let queryResult = await navigator.locks.query();
return queryResult.held[0].clientId;
} else {
throw new Error("Unsupported");
}
}
read: async () => {
if (navigator.locks) {
let queryResult = await navigator.locks.query();
return queryResult.held[0].name;
}
}
result, same first party: e616b402-f54e-4dc2-9e80-d9eec6232bfe, 652a7406-26a0-4a22-af9f-ce850b7fbbd3, 79219e1e-2539-47a6-abc4-1fd8f37165cc, 15bc25d1-56d0-4759-be41-017c903613e7, be2f218f-5ad3-4493-9213-39554685d498
result, different first party: Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
if (navigator.locks) {
navigator.locks.request(key, lock => new Promise((f,r) => {}));
let queryResult = await navigator.locks.query();
return queryResult.held[0].clientId;
} else {
throw new Error("Unsupported");
}
}
read: async () => {
if (navigator.locks) {
let queryResult = await navigator.locks.query();
return queryResult.held[0].name;
}
}
result, same first party: 6ffc1af5-0fbf-4d7d-a31c-296bcdd0d082, f423d7a7-7618-4ace-b53b-dc34937c1f28, 2bc1291b-59ea-4d02-a622-2208cd77a86a, 962edccf-6436-4ce1-973a-61eb16239ca6, f423bd8d-1973-4936-83f0-d6555f81e6cc
result, different first party: Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
if (navigator.locks) {
navigator.locks.request(key, lock => new Promise((f,r) => {}));
let queryResult = await navigator.locks.query();
return queryResult.held[0].clientId;
} else {
throw new Error("Unsupported");
}
}
read: async () => {
if (navigator.locks) {
let queryResult = await navigator.locks.query();
return queryResult.held[0].name;
}
}
result, same first party: 323f9e44-496a-4e27-a9b4-225f7c18bf25, 23b7ec2e-8886-4a43-992a-1fd056cbbdb0, 8ca82aee-8734-4e8f-8dd3-0f0abf781d9a, 45894f2d-308e-4158-8c66-9ca24681fd96, a0c6800b-b78d-4a5f-a81e-6ca5c1c4680b
result, different first party: Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
if (navigator.locks) {
navigator.locks.request(key, lock => new Promise((f,r) => {}));
let queryResult = await navigator.locks.query();
return queryResult.held[0].clientId;
} else {
throw new Error("Unsupported");
}
}
read: async () => {
if (navigator.locks) {
let queryResult = await navigator.locks.query();
return queryResult.held[0].name;
}
}
result, same first party: 49451103-9325-4e88-ac98-7edeea660ba3, 43326fa1-9ee9-4c2f-9357-7eb5933ed74a, 9035382f-0641-4971-a562-e79bee21ecfa, d8bfb7bb-dac0-4596-a5b8-f5a3d0a52d0c, 7673fe6f-8ed3-42bf-9801-fd846fb30dde
result, different first party: Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
if (navigator.locks) {
navigator.locks.request(key, lock => new Promise((f,r) => {}));
let queryResult = await navigator.locks.query();
return queryResult.held[0].clientId;
} else {
throw new Error("Unsupported");
}
}
read: async () => {
if (navigator.locks) {
let queryResult = await navigator.locks.query();
return queryResult.held[0].name;
}
}
result, same first party: Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name')
result, different first party: Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name')
unsupported: false, false, false, false, false
passed: undefined
test failed: true, true, true, true, true
|
write: async (key) => {
if (navigator.locks) {
navigator.locks.request(key, lock => new Promise((f,r) => {}));
let queryResult = await navigator.locks.query();
return queryResult.held[0].clientId;
} else {
throw new Error("Unsupported");
}
}
read: async () => {
if (navigator.locks) {
let queryResult = await navigator.locks.query();
return queryResult.held[0].name;
}
}
result, same first party: 645c70fe-e1b2-4ef5-9d85-d196d925f299, 37bdf754-d9f6-4135-9610-013b82148cc6, 7d60b4be-b2b0-4418-ad71-d15a2bb7c132, 5a5d1072-e52f-4d18-8e84-7d66a520fa63, b03fc878-2397-4505-9728-d513ba111f04
result, different first party: Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
if (navigator.locks) {
navigator.locks.request(key, lock => new Promise((f,r) => {}));
let queryResult = await navigator.locks.query();
return queryResult.held[0].clientId;
} else {
throw new Error("Unsupported");
}
}
read: async () => {
if (navigator.locks) {
let queryResult = await navigator.locks.query();
return queryResult.held[0].name;
}
}
result, same first party: 837bd07b-866a-419a-a093-0f78957cfa61, 2f080cb0-010b-440e-8ca5-16ddad4725c3, fcea6251-ed06-4520-8dee-787cdbfb82eb, f536f207-3a6b-4855-863a-f10f2dc68c22, f1bf0ab2-6b0b-467d-8ca1-e79bbe9e7c50
result, different first party: Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
if (navigator.locks) {
navigator.locks.request(key, lock => new Promise((f,r) => {}));
let queryResult = await navigator.locks.query();
return queryResult.held[0].clientId;
} else {
throw new Error("Unsupported");
}
}
read: async () => {
if (navigator.locks) {
let queryResult = await navigator.locks.query();
return queryResult.held[0].name;
}
}
result, same first party: d96f04df-0072-455a-9747-be4c8015ad17, 62619b98-b397-45a8-a1c6-cf0f397aee49, a635112e-a90d-46fe-9f59-85524ee37a1c, 215a628a-756f-4200-8032-7c6eefe5eac1, 32ab1917-a776-42cd-ad18-68a872a17588
result, different first party: Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name'), Error: undefined is not an object (evaluating 'queryResult.held[0].name')
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
prefetch cacheA suggests to browsers they should fetch a resource ahead of time and cache it. But if browsers don't partition this cache, it can be used to track users across websites. | –
write: async (key) => {
let link = document.createElement("link");
link.rel = "prefetch";
link.href = testURI("resource", "prefetch", key);
document.getElementsByTagName("head")[0].appendChild(link);
return key;
}
read: async (key) => {
let link = document.createElement("link");
link.rel = "prefetch";
link.href = testURI("resource", "prefetch", key);
document.getElementsByTagName("head")[0].appendChild(link);
await sleepMs(500);
let response = await fetch(
testURI("ctr", "prefetch", key), {"cache": "reload"});
let countString = (await response.text()).trim();
if (parseInt(countString) === 0) {
throw new Error("No requests received");
}
return countString;
}
result, same first party: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received
result, different first party: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async (key) => {
let link = document.createElement("link");
link.rel = "prefetch";
link.href = testURI("resource", "prefetch", key);
document.getElementsByTagName("head")[0].appendChild(link);
return key;
}
read: async (key) => {
let link = document.createElement("link");
link.rel = "prefetch";
link.href = testURI("resource", "prefetch", key);
document.getElementsByTagName("head")[0].appendChild(link);
await sleepMs(500);
let response = await fetch(
testURI("ctr", "prefetch", key), {"cache": "reload"});
let countString = (await response.text()).trim();
if (parseInt(countString) === 0) {
throw new Error("No requests received");
}
return countString;
}
result, same first party: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received
result, different first party: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async (key) => {
let link = document.createElement("link");
link.rel = "prefetch";
link.href = testURI("resource", "prefetch", key);
document.getElementsByTagName("head")[0].appendChild(link);
return key;
}
read: async (key) => {
let link = document.createElement("link");
link.rel = "prefetch";
link.href = testURI("resource", "prefetch", key);
document.getElementsByTagName("head")[0].appendChild(link);
await sleepMs(500);
let response = await fetch(
testURI("ctr", "prefetch", key), {"cache": "reload"});
let countString = (await response.text()).trim();
if (parseInt(countString) === 0) {
throw new Error("No requests received");
}
return countString;
}
result, same first party: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received
result, different first party: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async (key) => {
let link = document.createElement("link");
link.rel = "prefetch";
link.href = testURI("resource", "prefetch", key);
document.getElementsByTagName("head")[0].appendChild(link);
return key;
}
read: async (key) => {
let link = document.createElement("link");
link.rel = "prefetch";
link.href = testURI("resource", "prefetch", key);
document.getElementsByTagName("head")[0].appendChild(link);
await sleepMs(500);
let response = await fetch(
testURI("ctr", "prefetch", key), {"cache": "reload"});
let countString = (await response.text()).trim();
if (parseInt(countString) === 0) {
throw new Error("No requests received");
}
return countString;
}
result, same first party: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received
result, different first party: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async (key) => {
let link = document.createElement("link");
link.rel = "prefetch";
link.href = testURI("resource", "prefetch", key);
document.getElementsByTagName("head")[0].appendChild(link);
return key;
}
read: async (key) => {
let link = document.createElement("link");
link.rel = "prefetch";
link.href = testURI("resource", "prefetch", key);
document.getElementsByTagName("head")[0].appendChild(link);
await sleepMs(500);
let response = await fetch(
testURI("ctr", "prefetch", key), {"cache": "reload"});
let countString = (await response.text()).trim();
if (parseInt(countString) === 0) {
throw new Error("No requests received");
}
return countString;
}
result, same first party: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received
result, different first party: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async (key) => {
let link = document.createElement("link");
link.rel = "prefetch";
link.href = testURI("resource", "prefetch", key);
document.getElementsByTagName("head")[0].appendChild(link);
return key;
}
read: async (key) => {
let link = document.createElement("link");
link.rel = "prefetch";
link.href = testURI("resource", "prefetch", key);
document.getElementsByTagName("head")[0].appendChild(link);
await sleepMs(500);
let response = await fetch(
testURI("ctr", "prefetch", key), {"cache": "reload"});
let countString = (await response.text()).trim();
if (parseInt(countString) === 0) {
throw new Error("No requests received");
}
return countString;
}
result, same first party: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received
result, different first party: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async (key) => {
let link = document.createElement("link");
link.rel = "prefetch";
link.href = testURI("resource", "prefetch", key);
document.getElementsByTagName("head")[0].appendChild(link);
return key;
}
read: async (key) => {
let link = document.createElement("link");
link.rel = "prefetch";
link.href = testURI("resource", "prefetch", key);
document.getElementsByTagName("head")[0].appendChild(link);
await sleepMs(500);
let response = await fetch(
testURI("ctr", "prefetch", key), {"cache": "reload"});
let countString = (await response.text()).trim();
if (parseInt(countString) === 0) {
throw new Error("No requests received");
}
return countString;
}
result, same first party: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received
result, different first party: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async (key) => {
let link = document.createElement("link");
link.rel = "prefetch";
link.href = testURI("resource", "prefetch", key);
document.getElementsByTagName("head")[0].appendChild(link);
return key;
}
read: async (key) => {
let link = document.createElement("link");
link.rel = "prefetch";
link.href = testURI("resource", "prefetch", key);
document.getElementsByTagName("head")[0].appendChild(link);
await sleepMs(500);
let response = await fetch(
testURI("ctr", "prefetch", key), {"cache": "reload"});
let countString = (await response.text()).trim();
if (parseInt(countString) === 0) {
throw new Error("No requests received");
}
return countString;
}
result, same first party: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received
result, different first party: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
| –
write: async (key) => {
let link = document.createElement("link");
link.rel = "prefetch";
link.href = testURI("resource", "prefetch", key);
document.getElementsByTagName("head")[0].appendChild(link);
return key;
}
read: async (key) => {
let link = document.createElement("link");
link.rel = "prefetch";
link.href = testURI("resource", "prefetch", key);
document.getElementsByTagName("head")[0].appendChild(link);
await sleepMs(500);
let response = await fetch(
testURI("ctr", "prefetch", key), {"cache": "reload"});
let countString = (await response.text()).trim();
if (parseInt(countString) === 0) {
throw new Error("No requests received");
}
return countString;
}
result, same first party: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received
result, different first party: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received
unsupported: true, true, true, true, true
passed: undefined
test failed: false, false, false, false, false
|
ServiceWorkerThe ServiceWorker API allows websites to run code in the background and store content in the browser for offline use. If a ServiceWorker can be accessed from multiple websites, it can be abused to track users across sites. |
write: async (key) => {
if (!navigator.serviceWorker) {
throw new Error("Unsupported");
}
let registration = await navigator.serviceWorker.register(
'serviceWorker.js');
console.log(registration);
await navigator.serviceWorker.ready;
console.log("service worker ready");
await sleepMs(100);
await fetch(`serviceworker-write?secret=${key}`);
}
read: async () => {
console.log("trying to register the serviceworker now...");
const registration = await Promise.race([
navigator.serviceWorker.register('serviceWorker.js'),
sleepMs(500)
]);
if (registration === undefined) {
// We timed out or otherwise failed.
throw new Error("ServiceWorker registration failed");
}
console.log(registration);
await navigator.serviceWorker.ready;
console.log("service worker ready");
await sleepMs(100);
let response = await fetch("serviceworker-read");
return await response.text();
}
result, same first party: , , , ,
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: undefined
test failed: true, true, true, true, true
|
write: async (key) => {
if (!navigator.serviceWorker) {
throw new Error("Unsupported");
}
let registration = await navigator.serviceWorker.register(
'serviceWorker.js');
console.log(registration);
await navigator.serviceWorker.ready;
console.log("service worker ready");
await sleepMs(100);
await fetch(`serviceworker-write?secret=${key}`);
}
read: async () => {
console.log("trying to register the serviceworker now...");
const registration = await Promise.race([
navigator.serviceWorker.register('serviceWorker.js'),
sleepMs(500)
]);
if (registration === undefined) {
// We timed out or otherwise failed.
throw new Error("ServiceWorker registration failed");
}
console.log(registration);
await navigator.serviceWorker.ready;
console.log("service worker ready");
await sleepMs(100);
let response = await fetch("serviceworker-read");
return await response.text();
}
result, same first party: , , , ,
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: undefined
test failed: true, true, true, true, true
|
write: async (key) => {
if (!navigator.serviceWorker) {
throw new Error("Unsupported");
}
let registration = await navigator.serviceWorker.register(
'serviceWorker.js');
console.log(registration);
await navigator.serviceWorker.ready;
console.log("service worker ready");
await sleepMs(100);
await fetch(`serviceworker-write?secret=${key}`);
}
read: async () => {
console.log("trying to register the serviceworker now...");
const registration = await Promise.race([
navigator.serviceWorker.register('serviceWorker.js'),
sleepMs(500)
]);
if (registration === undefined) {
// We timed out or otherwise failed.
throw new Error("ServiceWorker registration failed");
}
console.log(registration);
await navigator.serviceWorker.ready;
console.log("service worker ready");
await sleepMs(100);
let response = await fetch("serviceworker-read");
return await response.text();
}
result, same first party: , , , ,
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: undefined
test failed: true, true, true, true, true
|
write: async (key) => {
if (!navigator.serviceWorker) {
throw new Error("Unsupported");
}
let registration = await navigator.serviceWorker.register(
'serviceWorker.js');
console.log(registration);
await navigator.serviceWorker.ready;
console.log("service worker ready");
await sleepMs(100);
await fetch(`serviceworker-write?secret=${key}`);
}
read: async () => {
console.log("trying to register the serviceworker now...");
const registration = await Promise.race([
navigator.serviceWorker.register('serviceWorker.js'),
sleepMs(500)
]);
if (registration === undefined) {
// We timed out or otherwise failed.
throw new Error("ServiceWorker registration failed");
}
console.log(registration);
await navigator.serviceWorker.ready;
console.log("service worker ready");
await sleepMs(100);
let response = await fetch("serviceworker-read");
return await response.text();
}
result, same first party: , , , ,
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: undefined
test failed: true, true, true, true, true
|
write: async (key) => {
if (!navigator.serviceWorker) {
throw new Error("Unsupported");
}
let registration = await navigator.serviceWorker.register(
'serviceWorker.js');
console.log(registration);
await navigator.serviceWorker.ready;
console.log("service worker ready");
await sleepMs(100);
await fetch(`serviceworker-write?secret=${key}`);
}
read: async () => {
console.log("trying to register the serviceworker now...");
const registration = await Promise.race([
navigator.serviceWorker.register('serviceWorker.js'),
sleepMs(500)
]);
if (registration === undefined) {
// We timed out or otherwise failed.
throw new Error("ServiceWorker registration failed");
}
console.log(registration);
await navigator.serviceWorker.ready;
console.log("service worker ready");
await sleepMs(100);
let response = await fetch("serviceworker-read");
return await response.text();
}
result, same first party: , , , ,
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: undefined
test failed: true, true, true, true, true
|
write: async (key) => {
if (!navigator.serviceWorker) {
throw new Error("Unsupported");
}
let registration = await navigator.serviceWorker.register(
'serviceWorker.js');
console.log(registration);
await navigator.serviceWorker.ready;
console.log("service worker ready");
await sleepMs(100);
await fetch(`serviceworker-write?secret=${key}`);
}
read: async () => {
console.log("trying to register the serviceworker now...");
const registration = await Promise.race([
navigator.serviceWorker.register('serviceWorker.js'),
sleepMs(500)
]);
if (registration === undefined) {
// We timed out or otherwise failed.
throw new Error("ServiceWorker registration failed");
}
console.log(registration);
await navigator.serviceWorker.ready;
console.log("service worker ready");
await sleepMs(100);
let response = await fetch("serviceworker-read");
return await response.text();
}
result, same first party: , , , ,
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: undefined
test failed: true, true, true, true, true
|
write: async (key) => {
if (!navigator.serviceWorker) {
throw new Error("Unsupported");
}
let registration = await navigator.serviceWorker.register(
'serviceWorker.js');
console.log(registration);
await navigator.serviceWorker.ready;
console.log("service worker ready");
await sleepMs(100);
await fetch(`serviceworker-write?secret=${key}`);
}
read: async () => {
console.log("trying to register the serviceworker now...");
const registration = await Promise.race([
navigator.serviceWorker.register('serviceWorker.js'),
sleepMs(500)
]);
if (registration === undefined) {
// We timed out or otherwise failed.
throw new Error("ServiceWorker registration failed");
}
console.log(registration);
await navigator.serviceWorker.ready;
console.log("service worker ready");
await sleepMs(100);
let response = await fetch("serviceworker-read");
return await response.text();
}
result, same first party: , , , ,
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: undefined
test failed: true, true, true, true, true
|
write: async (key) => {
if (!navigator.serviceWorker) {
throw new Error("Unsupported");
}
let registration = await navigator.serviceWorker.register(
'serviceWorker.js');
console.log(registration);
await navigator.serviceWorker.ready;
console.log("service worker ready");
await sleepMs(100);
await fetch(`serviceworker-write?secret=${key}`);
}
read: async () => {
console.log("trying to register the serviceworker now...");
const registration = await Promise.race([
navigator.serviceWorker.register('serviceWorker.js'),
sleepMs(500)
]);
if (registration === undefined) {
// We timed out or otherwise failed.
throw new Error("ServiceWorker registration failed");
}
console.log(registration);
await navigator.serviceWorker.ready;
console.log("service worker ready");
await sleepMs(100);
let response = await fetch("serviceworker-read");
return await response.text();
}
result, same first party: , 2f080cb0-010b-440e-8ca5-16ddad4725c3, , f536f207-3a6b-4855-863a-f10f2dc68c22,
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: , true, true
test failed: true, false, true, false, true
|
write: async (key) => {
if (!navigator.serviceWorker) {
throw new Error("Unsupported");
}
let registration = await navigator.serviceWorker.register(
'serviceWorker.js');
console.log(registration);
await navigator.serviceWorker.ready;
console.log("service worker ready");
await sleepMs(100);
await fetch(`serviceworker-write?secret=${key}`);
}
read: async () => {
console.log("trying to register the serviceworker now...");
const registration = await Promise.race([
navigator.serviceWorker.register('serviceWorker.js'),
sleepMs(500)
]);
if (registration === undefined) {
// We timed out or otherwise failed.
throw new Error("ServiceWorker registration failed");
}
console.log(registration);
await navigator.serviceWorker.ready;
console.log("service worker ready");
await sleepMs(100);
let response = await fetch("serviceworker-read");
return await response.text();
}
result, same first party: , , , ,
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: undefined
test failed: true, true, true, true, true
|
SharedWorkerThe SharedWorker API allows scripts from multiple tabs to share a background thread of computation. If SharedWorker is not partitioned, then it can be abused to shared data between websites in your browser. |
write: async (secret) => {
try {
let worker = new SharedWorker("supercookies_sharedworker.js");
worker.port.start();
// console.log("worker", worker);
const messagePromise = new Promise((resolve) => {
worker.port.onmessage = (e) => resolve(e.data);
});
worker.port.postMessage(secret);
await messagePromise;
} catch (e) {
throw new Error("Unsupported");
}
}
read: async () => {
let worker = new SharedWorker("supercookies_sharedworker.js");
worker.port.start();
const messagePromise = new Promise((resolve, reject) => {
worker.port.onmessage = (e) => resolve(e.data);
setTimeout(() => reject(new Error("no SharedWorker message received")), 200);
});
worker.port.postMessage("request");
return messagePromise;
}
result, same first party: d1fcc439-fd6b-436a-82b2-7b07a48be42c, 1f4220c6-7f46-46e8-8382-1e68e0aa93da, ef8196ed-3102-40f2-aaed-e1d2f9575201, 38204c3d-6a9e-46bc-af79-d9ee0b83f570, f629fded-a393-4d32-ae92-8bdf1f8a74ea
result, different first party: none, none, none, none, none
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
try {
let worker = new SharedWorker("supercookies_sharedworker.js");
worker.port.start();
// console.log("worker", worker);
const messagePromise = new Promise((resolve) => {
worker.port.onmessage = (e) => resolve(e.data);
});
worker.port.postMessage(secret);
await messagePromise;
} catch (e) {
throw new Error("Unsupported");
}
}
read: async () => {
let worker = new SharedWorker("supercookies_sharedworker.js");
worker.port.start();
const messagePromise = new Promise((resolve, reject) => {
worker.port.onmessage = (e) => resolve(e.data);
setTimeout(() => reject(new Error("no SharedWorker message received")), 200);
});
worker.port.postMessage("request");
return messagePromise;
}
result, same first party: e616b402-f54e-4dc2-9e80-d9eec6232bfe, 652a7406-26a0-4a22-af9f-ce850b7fbbd3, 79219e1e-2539-47a6-abc4-1fd8f37165cc, 15bc25d1-56d0-4759-be41-017c903613e7, be2f218f-5ad3-4493-9213-39554685d498
result, different first party: none, none, none, none, none
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
try {
let worker = new SharedWorker("supercookies_sharedworker.js");
worker.port.start();
// console.log("worker", worker);
const messagePromise = new Promise((resolve) => {
worker.port.onmessage = (e) => resolve(e.data);
});
worker.port.postMessage(secret);
await messagePromise;
} catch (e) {
throw new Error("Unsupported");
}
}
read: async () => {
let worker = new SharedWorker("supercookies_sharedworker.js");
worker.port.start();
const messagePromise = new Promise((resolve, reject) => {
worker.port.onmessage = (e) => resolve(e.data);
setTimeout(() => reject(new Error("no SharedWorker message received")), 200);
});
worker.port.postMessage("request");
return messagePromise;
}
result, same first party: 6ffc1af5-0fbf-4d7d-a31c-296bcdd0d082, f423d7a7-7618-4ace-b53b-dc34937c1f28, 2bc1291b-59ea-4d02-a622-2208cd77a86a, 962edccf-6436-4ce1-973a-61eb16239ca6, f423bd8d-1973-4936-83f0-d6555f81e6cc
result, different first party: none, none, none, none, none
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
try {
let worker = new SharedWorker("supercookies_sharedworker.js");
worker.port.start();
// console.log("worker", worker);
const messagePromise = new Promise((resolve) => {
worker.port.onmessage = (e) => resolve(e.data);
});
worker.port.postMessage(secret);
await messagePromise;
} catch (e) {
throw new Error("Unsupported");
}
}
read: async () => {
let worker = new SharedWorker("supercookies_sharedworker.js");
worker.port.start();
const messagePromise = new Promise((resolve, reject) => {
worker.port.onmessage = (e) => resolve(e.data);
setTimeout(() => reject(new Error("no SharedWorker message received")), 200);
});
worker.port.postMessage("request");
return messagePromise;
}
result, same first party: 323f9e44-496a-4e27-a9b4-225f7c18bf25, 23b7ec2e-8886-4a43-992a-1fd056cbbdb0, 8ca82aee-8734-4e8f-8dd3-0f0abf781d9a, 45894f2d-308e-4158-8c66-9ca24681fd96, a0c6800b-b78d-4a5f-a81e-6ca5c1c4680b
result, different first party: none, none, none, none, none
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
try {
let worker = new SharedWorker("supercookies_sharedworker.js");
worker.port.start();
// console.log("worker", worker);
const messagePromise = new Promise((resolve) => {
worker.port.onmessage = (e) => resolve(e.data);
});
worker.port.postMessage(secret);
await messagePromise;
} catch (e) {
throw new Error("Unsupported");
}
}
read: async () => {
let worker = new SharedWorker("supercookies_sharedworker.js");
worker.port.start();
const messagePromise = new Promise((resolve, reject) => {
worker.port.onmessage = (e) => resolve(e.data);
setTimeout(() => reject(new Error("no SharedWorker message received")), 200);
});
worker.port.postMessage("request");
return messagePromise;
}
result, same first party: 49451103-9325-4e88-ac98-7edeea660ba3, 43326fa1-9ee9-4c2f-9357-7eb5933ed74a, 9035382f-0641-4971-a562-e79bee21ecfa, d8bfb7bb-dac0-4596-a5b8-f5a3d0a52d0c, 7673fe6f-8ed3-42bf-9801-fd846fb30dde
result, different first party: none, none, none, none, none
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
try {
let worker = new SharedWorker("supercookies_sharedworker.js");
worker.port.start();
// console.log("worker", worker);
const messagePromise = new Promise((resolve) => {
worker.port.onmessage = (e) => resolve(e.data);
});
worker.port.postMessage(secret);
await messagePromise;
} catch (e) {
throw new Error("Unsupported");
}
}
read: async () => {
let worker = new SharedWorker("supercookies_sharedworker.js");
worker.port.start();
const messagePromise = new Promise((resolve, reject) => {
worker.port.onmessage = (e) => resolve(e.data);
setTimeout(() => reject(new Error("no SharedWorker message received")), 200);
});
worker.port.postMessage("request");
return messagePromise;
}
result, same first party: none, none, none, none, none
result, different first party: none, none, none, none, none
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
|
write: async (secret) => {
try {
let worker = new SharedWorker("supercookies_sharedworker.js");
worker.port.start();
// console.log("worker", worker);
const messagePromise = new Promise((resolve) => {
worker.port.onmessage = (e) => resolve(e.data);
});
worker.port.postMessage(secret);
await messagePromise;
} catch (e) {
throw new Error("Unsupported");
}
}
read: async () => {
let worker = new SharedWorker("supercookies_sharedworker.js");
worker.port.start();
const messagePromise = new Promise((resolve, reject) => {
worker.port.onmessage = (e) => resolve(e.data);
setTimeout(() => reject(new Error("no SharedWorker message received")), 200);
});
worker.port.postMessage("request");
return messagePromise;
}
result, same first party: 645c70fe-e1b2-4ef5-9d85-d196d925f299, 37bdf754-d9f6-4135-9610-013b82148cc6, 7d60b4be-b2b0-4418-ad71-d15a2bb7c132, 5a5d1072-e52f-4d18-8e84-7d66a520fa63, b03fc878-2397-4505-9728-d513ba111f04
result, different first party: none, none, none, none, none
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
try {
let worker = new SharedWorker("supercookies_sharedworker.js");
worker.port.start();
// console.log("worker", worker);
const messagePromise = new Promise((resolve) => {
worker.port.onmessage = (e) => resolve(e.data);
});
worker.port.postMessage(secret);
await messagePromise;
} catch (e) {
throw new Error("Unsupported");
}
}
read: async () => {
let worker = new SharedWorker("supercookies_sharedworker.js");
worker.port.start();
const messagePromise = new Promise((resolve, reject) => {
worker.port.onmessage = (e) => resolve(e.data);
setTimeout(() => reject(new Error("no SharedWorker message received")), 200);
});
worker.port.postMessage("request");
return messagePromise;
}
result, same first party: 837bd07b-866a-419a-a093-0f78957cfa61, 2f080cb0-010b-440e-8ca5-16ddad4725c3, fcea6251-ed06-4520-8dee-787cdbfb82eb, f536f207-3a6b-4855-863a-f10f2dc68c22, f1bf0ab2-6b0b-467d-8ca1-e79bbe9e7c50
result, different first party: none, none, none, none, none
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (secret) => {
try {
let worker = new SharedWorker("supercookies_sharedworker.js");
worker.port.start();
// console.log("worker", worker);
const messagePromise = new Promise((resolve) => {
worker.port.onmessage = (e) => resolve(e.data);
});
worker.port.postMessage(secret);
await messagePromise;
} catch (e) {
throw new Error("Unsupported");
}
}
read: async () => {
let worker = new SharedWorker("supercookies_sharedworker.js");
worker.port.start();
const messagePromise = new Promise((resolve, reject) => {
worker.port.onmessage = (e) => resolve(e.data);
setTimeout(() => reject(new Error("no SharedWorker message received")), 200);
});
worker.port.postMessage("request");
return messagePromise;
}
result, same first party: d96f04df-0072-455a-9747-be4c8015ad17, 62619b98-b397-45a8-a1c6-cf0f397aee49, a635112e-a90d-46fe-9f59-85524ee37a1c, 215a628a-756f-4200-8032-7c6eefe5eac1, 32ab1917-a776-42cd-ad18-68a872a17588
result, different first party: none, none, none, none, none
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
TLS Session IDThe TLS protocol is used by HTTPS to make connections secure. If the browser were to re-use a TLS session, then the session ID could be used to track users across websites. |
write: async () => {
let results = await fetch("https://tls.privacytests2.org:8900/");
return (await results.json()).sessionId;
}
read: async () => {
let results = await fetch("https://tls.privacytests2.org:8900/");
return (await results.json()).sessionId;
}
result, same first party: 3bcb79d24656fd4e598a1fd25c89eaa904a00dfe2aeb955a922e9953e0a625eb, 898ef5bc51542ecbcb244a6a0f1f6f329611b71dc980efb2f621abf34103aea9, d376be55dc881ad94235aaa0a19fa729ab7344f4b8bf3e9fb2f30fcdd8c67104, cafe55bc00ddb1056a83a07c5a684cd24f91389a739306e92301fa86c099cf5d, 1c208b98024c8d2d88c588dbbca1713a8006656184f0e22b24cd237a34e4dd71
result, different first party: 6909a277de0b485c61fdb917263e45dad462b4b24843882d8f7ae6222006b6f3, f670f0e0a8f0ce4eeb39af45043c365018cfdcdfc9ab3f85eb3ad64bf8e96fe7, a82e6305ed86134e9cde49f4e9be0d8d2ce3848fd2819d60f27e07f24fbf366c, 9251c8494683e9449b5a2e245b11ae475f22935af8772b49d5f52941be1ecd42, e163e11b120e0902326099ba3c5c0ffbb902690f18c6033abbe271faf234dd84
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async () => {
let results = await fetch("https://tls.privacytests2.org:8900/");
return (await results.json()).sessionId;
}
read: async () => {
let results = await fetch("https://tls.privacytests2.org:8900/");
return (await results.json()).sessionId;
}
result, same first party: 7399a638c06ccda18c893737599e880ed1181f79cb749274363392e71ce58e17, f5272a84370dd85e91aa91f5a9952c8b9521549b1529659228d442fd8a36cf37, 7b372511ef5b6b972e83c9b5629b5563610d641017b8814222cb52bafd891d88, f2efdf0e02562124dc27a6231492d51700e32a6c88787365a3b52e289e6b34da, 472897dadc991b43c1c8a4cc396d47a0fceb6448b73af8bfab0c5d4fdec7834b
result, different first party: 577b7ccb059697edbfb940b5d89f3913b45b8aaff25fa40d7017685b69a1fd78, 4a91302cc0a50bb50cb19d76c5822b4132888b2d92bc2fd7e1b47c6ac5a7db15, d2c5eea91b7d9dee0dfe70ec0702dd26af9add83328164f0601ba2937c9846b4, 1ead8dc4d05edb4cf9916e5e66c2e5f5ec62ec66c9a6780197c5af92847e1e59, f1ba3f9b9355ea727ca298c16d704c15b4d1313b89e0c9dfa01e0e609623ba92
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async () => {
let results = await fetch("https://tls.privacytests2.org:8900/");
return (await results.json()).sessionId;
}
read: async () => {
let results = await fetch("https://tls.privacytests2.org:8900/");
return (await results.json()).sessionId;
}
result, same first party: 5ffa64663647856805eafa02f21bd264067e7cfe0f19bded3e6afe3468aa32d5, 42bbe98f64748afbd3139a5948fe2740a1039aba3604a9522207ca369440c77c, 6c0925dfc8943a8c7b707c66f878f965c08ef49e92a83cccf53e87dc136461a1, 817fb12958eaa6ebc984ed9f017b90032ee7a8482d52dbd46f73cee657a09354, 985cd88b753ff4969ecd68094c01c1189aec8882e3438c5e4b19918d7949cb9d
result, different first party: e9c1b0349301403f5a72df189cf307675b214d3d199a71eb79b187a2c4313854, 844bf930a5f01432884779805b6fc11592ab07cb9877df8acb74b5442d290155, 4934f2dfdaf3fc6429ec4db7c357e09e0584cfb5cbaeb9333506cb50df9c930c, d08156b86655a4eba51bd08295d0c71e9b6ba28aaaa35ba30257bed6d86072b7, 7905d6f4475f5e55f381393a98717d398bb501cd5e54aaabff186fa5373c89a3
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async () => {
let results = await fetch("https://tls.privacytests2.org:8900/");
return (await results.json()).sessionId;
}
read: async () => {
let results = await fetch("https://tls.privacytests2.org:8900/");
return (await results.json()).sessionId;
}
result, same first party: dac0c6baf3e8b9f19efea6cc1babd2e231c58cf3f380ff6ececb586ccdf9ebbe, 640ee04948b396d72925e02ee66f957a8e1d41ca9853c1347b31cf4514fd4f58, 0ea1a6fdb88baf1d6271b31f8aff9c328fc85e1616879c3530c1f1303039087c, 73fc54227961a4fb73b8bf5f1f00293d09c54598d8215a297716dc1077382b54, ce15c185dd392bbdf6f679df55bf0baec9cd1f232bb970598ff0aae4060720e8
result, different first party: d3a6a435ed3ded0bb60171c65f49dad23cde8f6b06e23b36d60226120d2edbd7, cd4ff4e2032987bd1925107ed7005c11c471470d04ba6744f035bbc0cec2a14d, 622e96288aac9700d6126396ad00d3a31cbd8b8dc85ae4b431781005b69e2cd8, 0298f4d7756a309ba88da08f902733aa4c34ac41de19d0fcc3c8e1b03225f8b7, 3cd7a8cef896009b693c9cac9534265e68167e2d1cb9e8d64ac8d5f1b7f89986
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async () => {
let results = await fetch("https://tls.privacytests2.org:8900/");
return (await results.json()).sessionId;
}
read: async () => {
let results = await fetch("https://tls.privacytests2.org:8900/");
return (await results.json()).sessionId;
}
result, same first party: 3e6c59986b3581b9694e2d3aeb001abbf28142654609f845eff7a926795f04c7, 4f0459959a73531061b8be60247fa32a35322ea6e115b08b383d393a2a67d6b6, 687a057ea54b42e1400d2d703099186974da8aea5c9bb67aa60d44ce9d7f6605, 05ea6ab483898e88666cb35e986be4825fdb2fc07fd6d5259ba88e7f0c73ef66, 708275b88517f8cb863adb634f83d0039256ed3906b13d316436329d5a26cbd2
result, different first party: b47632134c13519551f9caead81dd5a14eaa63b9f82a1d154cb899da79b5eb8f, 3e4b56be82499c1df0daa50f03059704ec9416377c2aac1e1de2a9c53c1a0217, 180279ff03a312b85de9b128c941f301a0d45bc7a9b5fcb79a8e08c685864f6f, 8dea19b48922e25cc71ec310ae823a69caa75cf013d9ed4ae7c59c999e62610e, c25e116c5e12959b28de42e2a6a96f1f12e2cc26952f5d9ca9ab2ad0e3899b34
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async () => {
let results = await fetch("https://tls.privacytests2.org:8900/");
return (await results.json()).sessionId;
}
read: async () => {
let results = await fetch("https://tls.privacytests2.org:8900/");
return (await results.json()).sessionId;
}
result, same first party: d769d7085f0a26311bc8daf37879954b98dcb6effb3b6be3d10b8372e70521d7, 3db4a1a7660982df411185001bafc43259f18f504bd99b6c8fb5f86e42fbbd81, 428a54356daecced8610e5e2aed1cc4561ddb883e942b3ac6023dbca4a93da24, 52f9bc846d37bf847b75f3f7540df5d2fd0396d9b77cd594dfaed13b97e1f4ac, e201f23eaaaf9acc7ff2a6c5f1648b6118ce46ca09b3b984000e0f569e9cc466
result, different first party: f75cac3031bd57d017c66cf15c05a2d5c070dc616d974c697eb7c5264ef10ce2, 0758b72f09df33aa8d8e9d8892bda8834008315a635646bd042fdfd986d67c20, 481b41ac73bf6f741ae8a85c086f7117691867c0bb4eb2029cca8e8fe90143e6, 6705eee6a8d5d2534a8f7ddaf056225ac9758475b38066555972fb2bcd8688d4, 16cf14190886b6afb843c8e45797f159b7371f08c1e9db0229d94f3010b8b3a2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async () => {
let results = await fetch("https://tls.privacytests2.org:8900/");
return (await results.json()).sessionId;
}
read: async () => {
let results = await fetch("https://tls.privacytests2.org:8900/");
return (await results.json()).sessionId;
}
result, same first party: 4d8bb65a2b253cdeaeff0dfa76a14ec5e83525847a2528b0413d53bf1886a523, 2d0703ac1084dac50bd3bdb063c8ba4571b4c06ef50a14f46347488c0e42d1da, 9418f753b33062ce9a6f60b156947144eb3b7b6de75ac9f54ba3ea185cb74d44, 265a8c78ab49152f049b290515d81c6823afd0ea235a2c1f1b8a6b8f168b8707, 948b92c9ddcbb4e557bcc3d639fe9db0f2f4274d73e444904cbfc5b276145e20
result, different first party: 546450930cad80ab810bcfd5a4d3b4d490f649f40083de1243766e4dd40067ef, 38848e03765d4409d5ef4d4c27c91c55eaeeb024ec3da525ef47435926fa364e, 041efb955b40db5e1cde8f70cb7d91c627eb88e3f181cadc87b54435a6530366, d5383d766305af394c69378f2da70a33ef0fc011df754460c51f86aaab639384, a912200612d42be65938f9a346dd4fcc5b81e4dcac962a587b6678e6bfb6e21e
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async () => {
let results = await fetch("https://tls.privacytests2.org:8900/");
return (await results.json()).sessionId;
}
read: async () => {
let results = await fetch("https://tls.privacytests2.org:8900/");
return (await results.json()).sessionId;
}
result, same first party: 4a333615b805364c68fee6055aa836018e34f0a3773e391e0c2f5e326d294998, 965a71e5aef93979712d83841449798b83ec4afa7907d3f74419cd84d68ceae8, 64336131aa852e1601c5c6c63e590ce67bbd0b7c1a89bb254500348566de2508, 2dc881ce92deb43da98fa6dafd9adc156ccfc49e393cc2c6863ad111a854fd30, aaedb13703637115abeb679583bd0a38c54990d0c73a554e7ba902d8ee2bd2c1
result, different first party: a4eb8cea171044b4d57742024acb69cb8f3909107fb77846d5bff6fea7ed6d91, 681cc35fbf3933bd455167ee6291a84892883ce326725c72340e376eca1e0eb8, 67104d7c8b1ccc97b104ab9251d89263e821e9fdd845d9926f8742df952f56b6, 4b958cf1d6f8a4d86ad1438ea47b4cf2c8ef5599e57332024ab25582c7c9801d, bbb8eabcc442f06b36ef444689679414832d0bd93f24f18614ea0a4f9191dd3a
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async () => {
let results = await fetch("https://tls.privacytests2.org:8900/");
return (await results.json()).sessionId;
}
read: async () => {
let results = await fetch("https://tls.privacytests2.org:8900/");
return (await results.json()).sessionId;
}
result, same first party: 8719defbf774c2e02145abc92e5a0d0af7cd3d0f029d856b134b95e56223434a, 8562ed2e0268b76d9cfbe38fe44de3d1dfdd60e2009eaa65d6b16064bb0dff1d, abdbf0a3e8e815c5b5298840772236d487417106c5a65b362f0a7d5cbb84b0af, fb44bd0de263ce289c38a54bf20f9e7d85aa219148b135ba955659472d7c1694, 7cebd87f70d601c5f91a96c5d855aaaafdf5df6cc2a4d2bb049de6ba014c8eb8
result, different first party: 70111bf09211fa0e77498d710b337ea4009a9045dcec92501ceaf13129d41b5e, 5a3d69fffbd6841ab575bd3f713591e346ac8cfebe6b0389af48f92c70296349, 922df1af008302d04116de1f5c6ef3f9295215f057118649585cd2101b1530ec, 39ea69295a1ac6364ae577b8e18b3b502ea8be6b9a424e83d29d1c64283e5cee, 3dae47943e7a47d4efc6897340d0a45734e6245f61447f7e9f26f200548510b2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
Web SQL DatabaseThe Web SQL Database is a deprecated web API for storing data in an SQL database. |
write: async (key) => {
if (!window.openDatabase) {
throw new Error("gported");
}
let database = window.openDatabase("sqlite_supercookie", "", "supercookie", 1024 * 1024);
let tx = new Promise((resolve) => database.transaction(tx => {
tx.executeSql(
`CREATE TABLE IF NOT EXISTS cache(
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
name TEXT NOT NULL,
value TEXT NOT NULL,
UNIQUE (name)
)`,
[], (tx, rs) => {}, (tx, err) => {});
tx.executeSql(
`INSERT OR REPLACE INTO cache(name, value)
VALUES(?, ?)`,
["secret", key], (tx, rs) => {}, (tx, rs) => {});
}));
}
read: async () => {
let database = window.openDatabase("sqlite_supercookie", "", "supercookie", 1024 * 1024);
let result = await new Promise((resolve, reject) => database.transaction(tx => {
tx.executeSql(
"SELECT value FROM cache WHERE name=?",
["secret"],
(tx, rs) => resolve(rs),
(tx, err) => reject(err));
}));
return result.rows.item(0).value;
}
result, same first party: Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated
result, different first party: Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated
unsupported: false, false, false, false, false
passed: undefined
test failed: true, true, true, true, true
|
write: async (key) => {
if (!window.openDatabase) {
throw new Error("gported");
}
let database = window.openDatabase("sqlite_supercookie", "", "supercookie", 1024 * 1024);
let tx = new Promise((resolve) => database.transaction(tx => {
tx.executeSql(
`CREATE TABLE IF NOT EXISTS cache(
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
name TEXT NOT NULL,
value TEXT NOT NULL,
UNIQUE (name)
)`,
[], (tx, rs) => {}, (tx, err) => {});
tx.executeSql(
`INSERT OR REPLACE INTO cache(name, value)
VALUES(?, ?)`,
["secret", key], (tx, rs) => {}, (tx, rs) => {});
}));
}
read: async () => {
let database = window.openDatabase("sqlite_supercookie", "", "supercookie", 1024 * 1024);
let result = await new Promise((resolve, reject) => database.transaction(tx => {
tx.executeSql(
"SELECT value FROM cache WHERE name=?",
["secret"],
(tx, rs) => resolve(rs),
(tx, err) => reject(err));
}));
return result.rows.item(0).value;
}
result, same first party: Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated
result, different first party: Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated
unsupported: false, false, false, false, false
passed: undefined
test failed: true, true, true, true, true
|
write: async (key) => {
if (!window.openDatabase) {
throw new Error("gported");
}
let database = window.openDatabase("sqlite_supercookie", "", "supercookie", 1024 * 1024);
let tx = new Promise((resolve) => database.transaction(tx => {
tx.executeSql(
`CREATE TABLE IF NOT EXISTS cache(
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
name TEXT NOT NULL,
value TEXT NOT NULL,
UNIQUE (name)
)`,
[], (tx, rs) => {}, (tx, err) => {});
tx.executeSql(
`INSERT OR REPLACE INTO cache(name, value)
VALUES(?, ?)`,
["secret", key], (tx, rs) => {}, (tx, rs) => {});
}));
}
read: async () => {
let database = window.openDatabase("sqlite_supercookie", "", "supercookie", 1024 * 1024);
let result = await new Promise((resolve, reject) => database.transaction(tx => {
tx.executeSql(
"SELECT value FROM cache WHERE name=?",
["secret"],
(tx, rs) => resolve(rs),
(tx, err) => reject(err));
}));
return result.rows.item(0).value;
}
result, same first party: Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated
result, different first party: Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated
unsupported: false, false, false, false, false
passed: undefined
test failed: true, true, true, true, true
|
write: async (key) => {
if (!window.openDatabase) {
throw new Error("gported");
}
let database = window.openDatabase("sqlite_supercookie", "", "supercookie", 1024 * 1024);
let tx = new Promise((resolve) => database.transaction(tx => {
tx.executeSql(
`CREATE TABLE IF NOT EXISTS cache(
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
name TEXT NOT NULL,
value TEXT NOT NULL,
UNIQUE (name)
)`,
[], (tx, rs) => {}, (tx, err) => {});
tx.executeSql(
`INSERT OR REPLACE INTO cache(name, value)
VALUES(?, ?)`,
["secret", key], (tx, rs) => {}, (tx, rs) => {});
}));
}
read: async () => {
let database = window.openDatabase("sqlite_supercookie", "", "supercookie", 1024 * 1024);
let result = await new Promise((resolve, reject) => database.transaction(tx => {
tx.executeSql(
"SELECT value FROM cache WHERE name=?",
["secret"],
(tx, rs) => resolve(rs),
(tx, err) => reject(err));
}));
return result.rows.item(0).value;
}
result, same first party: Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated
result, different first party: Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated
unsupported: false, false, false, false, false
passed: undefined
test failed: true, true, true, true, true
|
write: async (key) => {
if (!window.openDatabase) {
throw new Error("gported");
}
let database = window.openDatabase("sqlite_supercookie", "", "supercookie", 1024 * 1024);
let tx = new Promise((resolve) => database.transaction(tx => {
tx.executeSql(
`CREATE TABLE IF NOT EXISTS cache(
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
name TEXT NOT NULL,
value TEXT NOT NULL,
UNIQUE (name)
)`,
[], (tx, rs) => {}, (tx, err) => {});
tx.executeSql(
`INSERT OR REPLACE INTO cache(name, value)
VALUES(?, ?)`,
["secret", key], (tx, rs) => {}, (tx, rs) => {});
}));
}
read: async () => {
let database = window.openDatabase("sqlite_supercookie", "", "supercookie", 1024 * 1024);
let result = await new Promise((resolve, reject) => database.transaction(tx => {
tx.executeSql(
"SELECT value FROM cache WHERE name=?",
["secret"],
(tx, rs) => resolve(rs),
(tx, err) => reject(err));
}));
return result.rows.item(0).value;
}
result, same first party: Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated
result, different first party: Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated
unsupported: false, false, false, false, false
passed: undefined
test failed: true, true, true, true, true
|
write: async (key) => {
if (!window.openDatabase) {
throw new Error("gported");
}
let database = window.openDatabase("sqlite_supercookie", "", "supercookie", 1024 * 1024);
let tx = new Promise((resolve) => database.transaction(tx => {
tx.executeSql(
`CREATE TABLE IF NOT EXISTS cache(
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
name TEXT NOT NULL,
value TEXT NOT NULL,
UNIQUE (name)
)`,
[], (tx, rs) => {}, (tx, err) => {});
tx.executeSql(
`INSERT OR REPLACE INTO cache(name, value)
VALUES(?, ?)`,
["secret", key], (tx, rs) => {}, (tx, rs) => {});
}));
}
read: async () => {
let database = window.openDatabase("sqlite_supercookie", "", "supercookie", 1024 * 1024);
let result = await new Promise((resolve, reject) => database.transaction(tx => {
tx.executeSql(
"SELECT value FROM cache WHERE name=?",
["secret"],
(tx, rs) => resolve(rs),
(tx, err) => reject(err));
}));
return result.rows.item(0).value;
}
result, same first party: Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated
result, different first party: Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated
unsupported: false, false, false, false, false
passed: undefined
test failed: true, true, true, true, true
|
write: async (key) => {
if (!window.openDatabase) {
throw new Error("gported");
}
let database = window.openDatabase("sqlite_supercookie", "", "supercookie", 1024 * 1024);
let tx = new Promise((resolve) => database.transaction(tx => {
tx.executeSql(
`CREATE TABLE IF NOT EXISTS cache(
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
name TEXT NOT NULL,
value TEXT NOT NULL,
UNIQUE (name)
)`,
[], (tx, rs) => {}, (tx, err) => {});
tx.executeSql(
`INSERT OR REPLACE INTO cache(name, value)
VALUES(?, ?)`,
["secret", key], (tx, rs) => {}, (tx, rs) => {});
}));
}
read: async () => {
let database = window.openDatabase("sqlite_supercookie", "", "supercookie", 1024 * 1024);
let result = await new Promise((resolve, reject) => database.transaction(tx => {
tx.executeSql(
"SELECT value FROM cache WHERE name=?",
["secret"],
(tx, rs) => resolve(rs),
(tx, err) => reject(err));
}));
return result.rows.item(0).value;
}
result, same first party: Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated
result, different first party: Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated
unsupported: false, false, false, false, false
passed: undefined
test failed: true, true, true, true, true
|
write: async (key) => {
if (!window.openDatabase) {
throw new Error("gported");
}
let database = window.openDatabase("sqlite_supercookie", "", "supercookie", 1024 * 1024);
let tx = new Promise((resolve) => database.transaction(tx => {
tx.executeSql(
`CREATE TABLE IF NOT EXISTS cache(
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
name TEXT NOT NULL,
value TEXT NOT NULL,
UNIQUE (name)
)`,
[], (tx, rs) => {}, (tx, err) => {});
tx.executeSql(
`INSERT OR REPLACE INTO cache(name, value)
VALUES(?, ?)`,
["secret", key], (tx, rs) => {}, (tx, rs) => {});
}));
}
read: async () => {
let database = window.openDatabase("sqlite_supercookie", "", "supercookie", 1024 * 1024);
let result = await new Promise((resolve, reject) => database.transaction(tx => {
tx.executeSql(
"SELECT value FROM cache WHERE name=?",
["secret"],
(tx, rs) => resolve(rs),
(tx, err) => reject(err));
}));
return result.rows.item(0).value;
}
result, same first party: Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated
result, different first party: Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated
unsupported: false, false, false, false, false
passed: undefined
test failed: true, true, true, true, true
|
write: async (key) => {
if (!window.openDatabase) {
throw new Error("gported");
}
let database = window.openDatabase("sqlite_supercookie", "", "supercookie", 1024 * 1024);
let tx = new Promise((resolve) => database.transaction(tx => {
tx.executeSql(
`CREATE TABLE IF NOT EXISTS cache(
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
name TEXT NOT NULL,
value TEXT NOT NULL,
UNIQUE (name)
)`,
[], (tx, rs) => {}, (tx, err) => {});
tx.executeSql(
`INSERT OR REPLACE INTO cache(name, value)
VALUES(?, ?)`,
["secret", key], (tx, rs) => {}, (tx, rs) => {});
}));
}
read: async () => {
let database = window.openDatabase("sqlite_supercookie", "", "supercookie", 1024 * 1024);
let result = await new Promise((resolve, reject) => database.transaction(tx => {
tx.executeSql(
"SELECT value FROM cache WHERE name=?",
["secret"],
(tx, rs) => resolve(rs),
(tx, err) => reject(err));
}));
return result.rows.item(0).value;
}
result, same first party: Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated
result, different first party: Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated, Error: Web SQL is deprecated
unsupported: false, false, false, false, false
passed: undefined
test failed: true, true, true, true, true
|
XMLHttpRequest cacheSimilar to the newer Fetch API, any resource received may be cached by the browser. The cache is potentially vulnerable to cross-site tracking attack. |
write: async (key) => {
const req = new XMLHttpRequest();
const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
req.open("GET", testURI("resource", "xhr", key));
req.send();
await loadPromise;
return key;
}
read: async (key) => {
const req = new XMLHttpRequest();
const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
req.open("GET", testURI("resource", "xhr", key));
req.send();
await loadPromise;
let countResponse = await fetch(testURI("ctr", "xhr", key),
{cache: "reload"});
return (await countResponse.text()).trim();
}
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
const req = new XMLHttpRequest();
const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
req.open("GET", testURI("resource", "xhr", key));
req.send();
await loadPromise;
return key;
}
read: async (key) => {
const req = new XMLHttpRequest();
const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
req.open("GET", testURI("resource", "xhr", key));
req.send();
await loadPromise;
let countResponse = await fetch(testURI("ctr", "xhr", key),
{cache: "reload"});
return (await countResponse.text()).trim();
}
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
const req = new XMLHttpRequest();
const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
req.open("GET", testURI("resource", "xhr", key));
req.send();
await loadPromise;
return key;
}
read: async (key) => {
const req = new XMLHttpRequest();
const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
req.open("GET", testURI("resource", "xhr", key));
req.send();
await loadPromise;
let countResponse = await fetch(testURI("ctr", "xhr", key),
{cache: "reload"});
return (await countResponse.text()).trim();
}
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
const req = new XMLHttpRequest();
const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
req.open("GET", testURI("resource", "xhr", key));
req.send();
await loadPromise;
return key;
}
read: async (key) => {
const req = new XMLHttpRequest();
const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
req.open("GET", testURI("resource", "xhr", key));
req.send();
await loadPromise;
let countResponse = await fetch(testURI("ctr", "xhr", key),
{cache: "reload"});
return (await countResponse.text()).trim();
}
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
const req = new XMLHttpRequest();
const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
req.open("GET", testURI("resource", "xhr", key));
req.send();
await loadPromise;
return key;
}
read: async (key) => {
const req = new XMLHttpRequest();
const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
req.open("GET", testURI("resource", "xhr", key));
req.send();
await loadPromise;
let countResponse = await fetch(testURI("ctr", "xhr", key),
{cache: "reload"});
return (await countResponse.text()).trim();
}
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
const req = new XMLHttpRequest();
const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
req.open("GET", testURI("resource", "xhr", key));
req.send();
await loadPromise;
return key;
}
read: async (key) => {
const req = new XMLHttpRequest();
const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
req.open("GET", testURI("resource", "xhr", key));
req.send();
await loadPromise;
let countResponse = await fetch(testURI("ctr", "xhr", key),
{cache: "reload"});
return (await countResponse.text()).trim();
}
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
const req = new XMLHttpRequest();
const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
req.open("GET", testURI("resource", "xhr", key));
req.send();
await loadPromise;
return key;
}
read: async (key) => {
const req = new XMLHttpRequest();
const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
req.open("GET", testURI("resource", "xhr", key));
req.send();
await loadPromise;
let countResponse = await fetch(testURI("ctr", "xhr", key),
{cache: "reload"});
return (await countResponse.text()).trim();
}
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
const req = new XMLHttpRequest();
const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
req.open("GET", testURI("resource", "xhr", key));
req.send();
await loadPromise;
return key;
}
read: async (key) => {
const req = new XMLHttpRequest();
const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
req.open("GET", testURI("resource", "xhr", key));
req.send();
await loadPromise;
let countResponse = await fetch(testURI("ctr", "xhr", key),
{cache: "reload"});
return (await countResponse.text()).trim();
}
result, same first party: 1, 1, 2, 1, 2
result, different first party: 2, 2, 3, 2, 3
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: async (key) => {
const req = new XMLHttpRequest();
const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
req.open("GET", testURI("resource", "xhr", key));
req.send();
await loadPromise;
return key;
}
read: async (key) => {
const req = new XMLHttpRequest();
const loadPromise = new Promise(resolve => req.addEventListener("load", resolve));
req.open("GET", testURI("resource", "xhr", key));
req.send();
await loadPromise;
let countResponse = await fetch(testURI("ctr", "xhr", key),
{cache: "reload"});
return (await countResponse.text()).trim();
}
result, same first party: 1, 1, 1, 1, 1
result, different first party: 2, 2, 2, 2, 2
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
Navigation tests
Which browsers allow websites to share tracking data when you click on a link?
When you click a hyperlink to navigate your browser from one site to another, certain browser APIs allow the first site to communicate to the second site. These privacy vulnerabilities can be fixed by introducing new limits on how much data is transfered between sites.',
| |||||||||
document.referrerThe Referer [sic] request header is a mechanism used by browsers to let a website know where the user is visiting from. This header is inherently tracking users across websites. In recent times, browsers have switched to a policy of trimming a referrer to convey less tracking information, but Referer continues to convey cross-site tracking data by default. |
write: (secret) => { /* do nothing */ }
read: () => document.referrer
result, same first party: https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/
result, different first party: https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
|
write: (secret) => { /* do nothing */ }
read: () => document.referrer
result, same first party: https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/
result, different first party: https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
|
write: (secret) => { /* do nothing */ }
read: () => document.referrer
result, same first party: https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/
result, different first party: https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
|
write: (secret) => { /* do nothing */ }
read: () => document.referrer
result, same first party: https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/
result, different first party: https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
|
write: (secret) => { /* do nothing */ }
read: () => document.referrer
result, same first party: https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/
result, different first party: https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
|
write: (secret) => { /* do nothing */ }
read: () => document.referrer
result, same first party: https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/
result, different first party: https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
|
write: (secret) => { /* do nothing */ }
read: () => document.referrer
result, same first party: https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/
result, different first party: https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
|
write: (secret) => { /* do nothing */ }
read: () => document.referrer
result, same first party: https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/
result, different first party: https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
|
write: (secret) => { /* do nothing */ }
read: () => document.referrer
result, same first party: https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/
result, different first party: https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/, https://test-pages.privacytests2.org/
unsupported: false, false, false, false, false
passed: false, false, false, false, false
test failed: false, false, false, false, false
|
sessionStorageThe sessionStorage API is similar to the localStorage API, but it does not persist across tabs or across browser sessions. Nonetheless, it can be used to track users if they navigate from one website to another. This tracking can be thwarted by partitioning sessionStorage between websites. |
write: (secret) => sessionStorage.setItem("secret", secret)
read: () => sessionStorage.getItem("secret")
result, same first party: d1fcc439-fd6b-436a-82b2-7b07a48be42c, 1f4220c6-7f46-46e8-8382-1e68e0aa93da, ef8196ed-3102-40f2-aaed-e1d2f9575201, 38204c3d-6a9e-46bc-af79-d9ee0b83f570, f629fded-a393-4d32-ae92-8bdf1f8a74ea
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => sessionStorage.setItem("secret", secret)
read: () => sessionStorage.getItem("secret")
result, same first party: e616b402-f54e-4dc2-9e80-d9eec6232bfe, 652a7406-26a0-4a22-af9f-ce850b7fbbd3, 79219e1e-2539-47a6-abc4-1fd8f37165cc, 15bc25d1-56d0-4759-be41-017c903613e7, be2f218f-5ad3-4493-9213-39554685d498
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => sessionStorage.setItem("secret", secret)
read: () => sessionStorage.getItem("secret")
result, same first party: 6ffc1af5-0fbf-4d7d-a31c-296bcdd0d082, f423d7a7-7618-4ace-b53b-dc34937c1f28, 2bc1291b-59ea-4d02-a622-2208cd77a86a, 962edccf-6436-4ce1-973a-61eb16239ca6, f423bd8d-1973-4936-83f0-d6555f81e6cc
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => sessionStorage.setItem("secret", secret)
read: () => sessionStorage.getItem("secret")
result, same first party: 323f9e44-496a-4e27-a9b4-225f7c18bf25, 23b7ec2e-8886-4a43-992a-1fd056cbbdb0, 8ca82aee-8734-4e8f-8dd3-0f0abf781d9a, 45894f2d-308e-4158-8c66-9ca24681fd96, a0c6800b-b78d-4a5f-a81e-6ca5c1c4680b
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => sessionStorage.setItem("secret", secret)
read: () => sessionStorage.getItem("secret")
result, same first party: 49451103-9325-4e88-ac98-7edeea660ba3, 43326fa1-9ee9-4c2f-9357-7eb5933ed74a, 9035382f-0641-4971-a562-e79bee21ecfa, d8bfb7bb-dac0-4596-a5b8-f5a3d0a52d0c, 7673fe6f-8ed3-42bf-9801-fd846fb30dde
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => sessionStorage.setItem("secret", secret)
read: () => sessionStorage.getItem("secret")
result, same first party: 84194efc-c0b9-4bff-9616-237a8066da82, 7d49c69c-f747-4070-8da2-e599ee79372a, e6f701c8-c159-419b-a2c4-a45810bf36aa, 5a77f9d1-1aa2-4498-a5aa-2eacbb993367, 242d8412-50e3-455f-98c9-4e748b4d332a
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => sessionStorage.setItem("secret", secret)
read: () => sessionStorage.getItem("secret")
result, same first party: 645c70fe-e1b2-4ef5-9d85-d196d925f299, 37bdf754-d9f6-4135-9610-013b82148cc6, 7d60b4be-b2b0-4418-ad71-d15a2bb7c132, 5a5d1072-e52f-4d18-8e84-7d66a520fa63, b03fc878-2397-4505-9728-d513ba111f04
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => sessionStorage.setItem("secret", secret)
read: () => sessionStorage.getItem("secret")
result, same first party: 837bd07b-866a-419a-a093-0f78957cfa61, 2f080cb0-010b-440e-8ca5-16ddad4725c3, fcea6251-ed06-4520-8dee-787cdbfb82eb, f536f207-3a6b-4855-863a-f10f2dc68c22, f1bf0ab2-6b0b-467d-8ca1-e79bbe9e7c50
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => sessionStorage.setItem("secret", secret)
read: () => sessionStorage.getItem("secret")
result, same first party: d96f04df-0072-455a-9747-be4c8015ad17, 62619b98-b397-45a8-a1c6-cf0f397aee49, a635112e-a90d-46fe-9f59-85524ee37a1c, 215a628a-756f-4200-8032-7c6eefe5eac1, 32ab1917-a776-42cd-ad18-68a872a17588
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
window.nameThe window.name API allows websites to store data that will persist after the user has navigated the tab to a different website. This mechanism could be partitioned so that data is not allowed to persist between websites. |
write: (secret) => window.name = "name_" + secret
read: () => window.name
result, same first party: name_d1fcc439-fd6b-436a-82b2-7b07a48be42c, name_1f4220c6-7f46-46e8-8382-1e68e0aa93da, name_ef8196ed-3102-40f2-aaed-e1d2f9575201, name_38204c3d-6a9e-46bc-af79-d9ee0b83f570, name_f629fded-a393-4d32-ae92-8bdf1f8a74ea
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => window.name = "name_" + secret
read: () => window.name
result, same first party: name_e616b402-f54e-4dc2-9e80-d9eec6232bfe, name_652a7406-26a0-4a22-af9f-ce850b7fbbd3, name_79219e1e-2539-47a6-abc4-1fd8f37165cc, name_15bc25d1-56d0-4759-be41-017c903613e7, name_be2f218f-5ad3-4493-9213-39554685d498
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => window.name = "name_" + secret
read: () => window.name
result, same first party: name_6ffc1af5-0fbf-4d7d-a31c-296bcdd0d082, name_f423d7a7-7618-4ace-b53b-dc34937c1f28, name_2bc1291b-59ea-4d02-a622-2208cd77a86a, name_962edccf-6436-4ce1-973a-61eb16239ca6, name_f423bd8d-1973-4936-83f0-d6555f81e6cc
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => window.name = "name_" + secret
read: () => window.name
result, same first party: name_323f9e44-496a-4e27-a9b4-225f7c18bf25, name_23b7ec2e-8886-4a43-992a-1fd056cbbdb0, name_8ca82aee-8734-4e8f-8dd3-0f0abf781d9a, name_45894f2d-308e-4158-8c66-9ca24681fd96, name_a0c6800b-b78d-4a5f-a81e-6ca5c1c4680b
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => window.name = "name_" + secret
read: () => window.name
result, same first party: name_49451103-9325-4e88-ac98-7edeea660ba3, name_43326fa1-9ee9-4c2f-9357-7eb5933ed74a, name_9035382f-0641-4971-a562-e79bee21ecfa, name_d8bfb7bb-dac0-4596-a5b8-f5a3d0a52d0c, name_7673fe6f-8ed3-42bf-9801-fd846fb30dde
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => window.name = "name_" + secret
read: () => window.name
result, same first party: name_84194efc-c0b9-4bff-9616-237a8066da82, name_7d49c69c-f747-4070-8da2-e599ee79372a, name_e6f701c8-c159-419b-a2c4-a45810bf36aa, name_5a77f9d1-1aa2-4498-a5aa-2eacbb993367, name_242d8412-50e3-455f-98c9-4e748b4d332a
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => window.name = "name_" + secret
read: () => window.name
result, same first party: name_645c70fe-e1b2-4ef5-9d85-d196d925f299, name_37bdf754-d9f6-4135-9610-013b82148cc6, name_7d60b4be-b2b0-4418-ad71-d15a2bb7c132, name_5a5d1072-e52f-4d18-8e84-7d66a520fa63, name_b03fc878-2397-4505-9728-d513ba111f04
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => window.name = "name_" + secret
read: () => window.name
result, same first party: name_837bd07b-866a-419a-a093-0f78957cfa61, name_2f080cb0-010b-440e-8ca5-16ddad4725c3, name_fcea6251-ed06-4520-8dee-787cdbfb82eb, name_f536f207-3a6b-4855-863a-f10f2dc68c22, name_f1bf0ab2-6b0b-467d-8ca1-e79bbe9e7c50
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
write: (secret) => window.name = "name_" + secret
read: () => window.name
result, same first party: name_d96f04df-0072-455a-9747-be4c8015ad17, name_62619b98-b397-45a8-a1c6-cf0f397aee49, name_a635112e-a90d-46fe-9f59-85524ee37a1c, name_215a628a-756f-4200-8032-7c6eefe5eac1, name_32ab1917-a776-42cd-ad18-68a872a17588
result, different first party: , , , ,
unsupported: false, false, false, false, false
passed: true, true, true, true, true
test failed: false, false, false, false, false
|
HTTPS tests
Which browsers use encrypted network connections whenever possible?
HTTPS is the protocol that web browsers use to connect securely to websites. When HTTPS is being used, the connection is encrypted so that third parties on the network cannot read content being sent between the server and your browser. In the past, insecure connections were the default and websites would need to actively request that a browser use HTTPS. Now the status quo is shifting, and browser makers are moving toward a world where HTTPS is the default protocol.`
| |||||||||
Insecure websiteChecks to see if the browser stops loading an insecure website and warns the user before giving them the option to continue. Known as HTTPS-Only Mode in some browsers. |
passed: false,false,false,false,false
result: Insecure website loaded,Insecure website loaded,Insecure website loaded,Insecure website loaded,Insecure website loaded
|
passed: false,false,false,false,false
result: Insecure website loaded,Insecure website loaded,Insecure website loaded,Insecure website loaded,Insecure website loaded
|
passed: false,false,false,false,false
result: Insecure website loaded,Insecure website loaded,Insecure website loaded,Insecure website loaded,Insecure website loaded
|
passed: false,false,false,false,false
result: Insecure website loaded,Insecure website loaded,Insecure website loaded,Insecure website loaded,Insecure website loaded
|
passed: false,false,false,false,false
result: Insecure website loaded,Insecure website loaded,Insecure website loaded,Insecure website loaded,Insecure website loaded
|
passed: false,false,false,false,false
result: Insecure website loaded,Insecure website loaded,Insecure website loaded,Insecure website loaded,Insecure website loaded
|
passed: false,false,false,false,false
result: Insecure website loaded,Insecure website loaded,Insecure website loaded,Insecure website loaded,Insecure website loaded
|
passed: false,false,false,false,false
result: Insecure website loaded,Insecure website loaded,Insecure website loaded,Insecure website loaded,Insecure website loaded
|
passed: false,false,false,false,false
result: Insecure website loaded,Insecure website loaded,Insecure website loaded,Insecure website loaded,Insecure website loaded
|
Upgradable addressChecks to see if an insecure address entered into the browser's address bar is upgraded to HTTPS whenever possible. |
upgraded: false,false,false,false,false
passed: false,false,false,false,false
|
upgraded: false,false,false,false,false
passed: false,false,false,false,false
|
upgraded: false,false,false,false,false
passed: false,false,false,false,false
|
upgraded: false,false,false,false,false
passed: false,false,false,false,false
|
upgraded: false,false,false,false,false
passed: false,false,false,false,false
|
upgraded: false,false,false,false,false
passed: false,false,false,false,false
|
upgraded: false,false,false,false,false
passed: false,false,false,false,false
|
upgraded: false,false,false,false,false
passed: false,false,false,false,false
|
upgraded: false,false,false,false,false
passed: false,false,false,false,false
|
Upgradable hyperlinkChecks to see if the user has clicked on a hyperlink to an insecure address, if the browser upgrades that address to HTTPS whenever possible. |
upgraded: false,false,false,false,false
passed: false,false,false,false,false
|
upgraded: false,false,false,false,false
passed: false,false,false,false,false
|
upgraded: false,false,false,false,false
passed: false,false,false,false,false
|
upgraded: false,false,false,false,false
passed: false,false,false,false,false
|
upgraded: false,false,false,false,false
passed: false,false,false,false,false
|
upgraded: false,false,false,false,false
passed: false,false,false,false,false
|
upgraded: false,false,false,false,false
passed: false,false,false,false,false
|
upgraded: false,false,false,false,false
passed: false,false,false,false,false
|
upgraded: false,false,false,false,false
passed: false,false,false,false,false
|
Upgradable imageChecks to see if the browser attempts to upgrade an insecure address for an image to HTTPS whenever possible. |
passed: false,false,false,false,false
result: loaded insecurely,loaded insecurely,loaded insecurely,loaded insecurely,loaded insecurely
|
passed: false,false,false,false,false
result: loaded insecurely,loaded insecurely,loaded insecurely,loaded insecurely,loaded insecurely
|
passed: false,false,false,false,false
result: loaded insecurely,loaded insecurely,loaded insecurely,loaded insecurely,loaded insecurely
|
passed: false,false,false,false,false
result: loaded insecurely,loaded insecurely,loaded insecurely,loaded insecurely,loaded insecurely
|
passed: false,false,false,false,false
result: loaded insecurely,loaded insecurely,loaded insecurely,loaded insecurely,loaded insecurely
|
passed: false,false,false,false,false
result: loaded insecurely,loaded insecurely,loaded insecurely,loaded insecurely,loaded insecurely
|
passed: false,false,false,false,false
result: loaded insecurely,loaded insecurely,loaded insecurely,loaded insecurely,loaded insecurely
|
passed: false,false,false,false,false
result: loaded insecurely,loaded insecurely,loaded insecurely,loaded insecurely,loaded insecurely
|
passed: false,false,false,false,false
result: loaded insecurely,loaded insecurely,loaded insecurely,loaded insecurely,loaded insecurely
|
Upgradable scriptChecks to see if the browser attempts to upgrade an insecure address for an script to HTTPS whenever possible. |
passed: true,true,true,true,true
result: blocked,blocked,blocked,blocked,blocked
|
passed: true,true,true,true,true
result: blocked,blocked,blocked,blocked,blocked
|
passed: true,true,true,true,true
result: blocked,blocked,blocked,blocked,blocked
|
passed: true,true,true,true,true
result: blocked,blocked,blocked,blocked,blocked
|
passed: true,true,true,true,true
result: blocked,blocked,blocked,blocked,blocked
|
passed: true,true,true,true,true
result: blocked,blocked,blocked,blocked,blocked
|
passed: true,true,true,true,true
result: blocked,blocked,blocked,blocked,blocked
|
passed: true,true,true,true,true
result: blocked,blocked,blocked,blocked,blocked
|
passed: true,true,true,true,true
result: blocked,blocked,blocked,blocked,blocked
|
Misc tests
Which browsers provide additional assorted privacy protections?
This category includes tests for the presence of miscellaneous privacy features
| |||||||||
GPC enabled first-partyThe Global Privacy Control is an HTTP header that can be sent by a browser to instruct a website not to sell the user's personal data to third parties. This test checks to see if the GPC header is sent by default to the top-level website. |
header value: undefined
passed: false,false,false,false,false
|
header value: undefined
passed: false,false,false,false,false
|
header value: undefined
passed: false,false,false,false,false
|
header value: undefined
passed: false,false,false,false,false
|
header value: undefined
passed: false,false,false,false,false
|
header value: undefined
passed: false,false,false,false,false
|
header value: undefined
passed: false,false,false,false,false
|
header value: undefined
passed: false,false,false,false,false
|
header value: undefined
passed: false,false,false,false,false
|
GPC enabled third-partyThe Global Privacy Control is an HTTP header that can be sent by a browser to instruct a visited website not to sell the user's personal data to other parties. This test checks to see if the GPC header is sent to third-party elements on the web page. |
passed: false,false,false,false,false
|
passed: false,false,false,false,false
|
passed: false,false,false,false,false
|
passed: false,false,false,false,false
|
passed: false,false,false,false,false
|
passed: false,false,false,false,false
|
passed: false,false,false,false,false
|
passed: false,false,false,false,false
|
passed: false,false,false,false,false
|
IP address leakIP addresses can be used to uniquely identify a large percentage of users. A proxy, VPN, or Tor can mask a user's IP address. |
passed: false,false,false,false,false
|
passed: false,false,false,false,false
|
passed: false,false,false,false,false
|
passed: false,false,false,false,false
|
passed: false,false,false,false,false
|
passed: false,false,false,false,false
|
passed: false,false,false,false,false
|
passed: false,false,false,false,false
|
passed: false,false,false,false,false
|
Stream isolationBrowsers that use Tor can use a different Tor circuit per top-level website. | –
write: () => {
if (!usingTor) {
throw new Error("Unsupported");
}
}
read: async () => {
if (usingTor) {
return ipAddress;
} else {
throw new Error("Unsupported");
}
}
unsupported: true,true,true,true,true
readSameFirstParty: Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported
readDifferentFirstParty: Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported
testFailed: false,false,false,false,false
| –
write: () => {
if (!usingTor) {
throw new Error("Unsupported");
}
}
read: async () => {
if (usingTor) {
return ipAddress;
} else {
throw new Error("Unsupported");
}
}
unsupported: true,true,true,true,true
readSameFirstParty: Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported
readDifferentFirstParty: Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported
testFailed: false,false,false,false,false
| –
write: () => {
if (!usingTor) {
throw new Error("Unsupported");
}
}
read: async () => {
if (usingTor) {
return ipAddress;
} else {
throw new Error("Unsupported");
}
}
unsupported: true,true,true,true,true
readSameFirstParty: Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported
readDifferentFirstParty: Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported
testFailed: false,false,false,false,false
| –
write: () => {
if (!usingTor) {
throw new Error("Unsupported");
}
}
read: async () => {
if (usingTor) {
return ipAddress;
} else {
throw new Error("Unsupported");
}
}
unsupported: true,true,true,true,true
readSameFirstParty: Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported
readDifferentFirstParty: Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported
testFailed: false,false,false,false,false
| –
write: () => {
if (!usingTor) {
throw new Error("Unsupported");
}
}
read: async () => {
if (usingTor) {
return ipAddress;
} else {
throw new Error("Unsupported");
}
}
unsupported: true,true,true,true,true
readSameFirstParty: Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported
readDifferentFirstParty: Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported
testFailed: false,false,false,false,false
| –
write: () => {
if (!usingTor) {
throw new Error("Unsupported");
}
}
read: async () => {
if (usingTor) {
return ipAddress;
} else {
throw new Error("Unsupported");
}
}
unsupported: true,true,true,true,true
readSameFirstParty: Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported
readDifferentFirstParty: Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported
testFailed: false,false,false,false,false
| –
write: () => {
if (!usingTor) {
throw new Error("Unsupported");
}
}
read: async () => {
if (usingTor) {
return ipAddress;
} else {
throw new Error("Unsupported");
}
}
unsupported: true,true,true,true,true
readSameFirstParty: Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported
readDifferentFirstParty: Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported
testFailed: false,false,false,false,false
| –
write: () => {
if (!usingTor) {
throw new Error("Unsupported");
}
}
read: async () => {
if (usingTor) {
return ipAddress;
} else {
throw new Error("Unsupported");
}
}
unsupported: true,true,true,true,true
readSameFirstParty: Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported
readDifferentFirstParty: Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported
testFailed: false,false,false,false,false
| –
write: () => {
if (!usingTor) {
throw new Error("Unsupported");
}
}
read: async () => {
if (usingTor) {
return ipAddress;
} else {
throw new Error("Unsupported");
}
}
unsupported: true,true,true,true,true
readSameFirstParty: Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported
readDifferentFirstParty: Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported,Error: Unsupported
testFailed: false,false,false,false,false
|
Tor enabledThe Tor network sends the browser's web requests through a series of relays to hide a user's IP address, thereby helping to mask their identity and location. This test checks to see if the Tor network is being used by default. |
IsTorExit: false,false,false,false,false
passed: false,false,false,false,false
|
IsTorExit: false,false,false,false,false
passed: false,false,false,false,false
|
IsTorExit: false,false,false,false,false
passed: false,false,false,false,false
|
IsTorExit: false,false,false,false,false
passed: false,false,false,false,false
|
IsTorExit: false,false,false,false,false
passed: false,false,false,false,false
|
IsTorExit: false,false,false,false,false
passed: false,false,false,false,false
|
IsTorExit: false,false,false,false,false
passed: false,false,false,false,false
|
IsTorExit: false,false,false,false,false
passed: false,false,false,false,false
|
IsTorExit: false,false,false,false,false
passed: false,false,false,false,false
|
Fingerprinting resistance tests
Which browsers hide what's unique about your device?
Fingerprinting is a technique trackers use to uniquely identify you as you browse the web. A fingerprinting script will measure several characteristics of your browser and, combining this data, will build a fingerprint that may uniquely identify you among web users. Browsers can introduce countermeasures, such as minimizing the distinguishing information disclosed by certain web APIs so your browser is harder to pick out from the crowd (so-called 'fingerprinting resistance').`,
| |||||||||
Media query screen heightHeight of the user's screen in pixels. |
expression: undefined
desired expression: undefined
actual value: 667,667,667,667,667
desired value: undefined
passed: false,false,false,false,false
|
expression: undefined
desired expression: undefined
actual value: 667,667,667,667,667
desired value: undefined
passed: false,false,false,false,false
|
expression: undefined
desired expression: undefined
actual value: 667,667,667,667,667
desired value: undefined
passed: false,false,false,false,false
|
expression: undefined
desired expression: undefined
actual value: 667,667,667,667,667
desired value: undefined
passed: false,false,false,false,false
|
expression: undefined
desired expression: undefined
actual value: 667,667,667,667,667
desired value: undefined
passed: false,false,false,false,false
|
expression: undefined
desired expression: undefined
actual value: 667,667,667,667,667
desired value: undefined
passed: false,false,false,false,false
|
expression: undefined
desired expression: undefined
actual value: 667,667,667,667,667
desired value: undefined
passed: false,false,false,false,false
|
expression: undefined
desired expression: undefined
actual value: 667,667,667,667,667
desired value: undefined
passed: false,false,false,false,false
|
expression: undefined
desired expression: undefined
actual value: 667,667,667,667,667
desired value: undefined
passed: false,false,false,false,false
|
Media query screen widthWidth of the user's screen in pixels. |
expression: undefined
desired expression: undefined
actual value: 375,375,375,375,375
desired value: undefined
passed: false,false,false,false,false
|
expression: undefined
desired expression: undefined
actual value: 375,375,375,375,375
desired value: undefined
passed: false,false,false,false,false
|
expression: undefined
desired expression: undefined
actual value: 375,375,375,375,375
desired value: undefined
passed: false,false,false,false,false
|
expression: undefined
desired expression: undefined
actual value: 375,375,375,375,375
desired value: undefined
passed: false,false,false,false,false
|
expression: undefined
desired expression: undefined
actual value: 375,375,375,375,375
desired value: undefined
passed: false,false,false,false,false
|
expression: undefined
desired expression: undefined
actual value: 375,375,375,375,375
desired value: undefined
passed: false,false,false,false,false
|
expression: undefined
desired expression: undefined
actual value: 375,375,375,375,375
desired value: undefined
passed: false,false,false,false,false
|
expression: undefined
desired expression: undefined
actual value: 375,375,375,375,375
desired value: undefined
passed: false,false,false,false,false
|
expression: undefined
desired expression: undefined
actual value: 375,375,375,375,375
desired value: undefined
passed: false,false,false,false,false
|
outerHeightHeight of the browser window in pixels, including browser chrome. |
expression: outerHeight
desired expression: undefined
actual value: 553,553,553,553,553
desired value: undefined
passed: false,false,false,false,false
|
expression: outerHeight
desired expression: undefined
actual value: 667,667,667,667,667
desired value: undefined
passed: false,false,false,false,false
|
expression: outerHeight
desired expression: undefined
actual value: 546,546,546,546,546
desired value: undefined
passed: false,false,false,false,false
|
expression: outerHeight
desired expression: undefined
actual value: 556,556,556,556,556
desired value: undefined
passed: false,false,false,false,false
|
expression: outerHeight
desired expression: undefined
actual value: 549,549,549,549,549
desired value: undefined
passed: false,false,false,false,false
|
expression: outerHeight
desired expression: undefined
actual value: 547,547,547,547,547
desired value: undefined
passed: false,false,false,false,false
|
expression: outerHeight
desired expression: undefined
actual value: 555,555,555,555,555
desired value: undefined
passed: false,false,false,false,false
|
expression: outerHeight
desired expression: undefined
actual value: 667,667,667,667,667
desired value: undefined
passed: false,false,false,false,false
|
expression: outerHeight
desired expression: undefined
actual value: 667,667,667,667,667
desired value: undefined
passed: false,false,false,false,false
|
screen.heightHeight of the user's screen, in pixels. |
expression: screen.height
desired expression: undefined
actual value: 667,667,667,667,667
desired value: undefined
passed: false,false,false,false,false
|
expression: screen.height
desired expression: undefined
actual value: 667,667,667,667,667
desired value: undefined
passed: false,false,false,false,false
|
expression: screen.height
desired expression: undefined
actual value: 667,667,667,667,667
desired value: undefined
passed: false,false,false,false,false
|
expression: screen.height
desired expression: undefined
actual value: 667,667,667,667,667
desired value: undefined
passed: false,false,false,false,false
|
expression: screen.height
desired expression: undefined
actual value: 667,667,667,667,667
desired value: undefined
passed: false,false,false,false,false
|
expression: screen.height
desired expression: undefined
actual value: 667,667,667,667,667
desired value: undefined
passed: false,false,false,false,false
|
expression: screen.height
desired expression: undefined
actual value: 667,667,667,667,667
desired value: undefined
passed: false,false,false,false,false
|
expression: screen.height
desired expression: undefined
actual value: 667,667,667,667,667
desired value: undefined
passed: false,false,false,false,false
|
expression: screen.height
desired expression: undefined
actual value: 667,667,667,667,667
desired value: undefined
passed: false,false,false,false,false
|
screen.widthWidth of the user's screen, in pixels. |
expression: screen.width
desired expression: undefined
actual value: 375,375,375,375,375
desired value: undefined
passed: false,false,false,false,false
|
expression: screen.width
desired expression: undefined
actual value: 375,375,375,375,375
desired value: undefined
passed: false,false,false,false,false
|
expression: screen.width
desired expression: undefined
actual value: 375,375,375,375,375
desired value: undefined
passed: false,false,false,false,false
|
expression: screen.width
desired expression: undefined
actual value: 375,375,375,375,375
desired value: undefined
passed: false,false,false,false,false
|
expression: screen.width
desired expression: undefined
actual value: 375,375,375,375,375
desired value: undefined
passed: false,false,false,false,false
|
expression: screen.width
desired expression: undefined
actual value: 375,375,375,375,375
desired value: undefined
passed: false,false,false,false,false
|
expression: screen.width
desired expression: undefined
actual value: 375,375,375,375,375
desired value: undefined
passed: false,false,false,false,false
|
expression: screen.width
desired expression: undefined
actual value: 375,375,375,375,375
desired value: undefined
passed: false,false,false,false,false
|
expression: screen.width
desired expression: undefined
actual value: 375,375,375,375,375
desired value: undefined
passed: false,false,false,false,false
|
screenXPosition, in pixels, of the left edge of the browser window on screen. |
expression: screenX
desired expression: undefined
actual value: 0,0,0,0,0
desired value: undefined
passed: true,true,true,true,true
|
expression: screenX
desired expression: undefined
actual value: 0,0,0,0,0
desired value: undefined
passed: true,true,true,true,true
|
expression: screenX
desired expression: undefined
actual value: 0,0,0,0,0
desired value: undefined
passed: true,true,true,true,true
|
expression: screenX
desired expression: undefined
actual value: 0,0,0,0,0
desired value: undefined
passed: true,true,true,true,true
|
expression: screenX
desired expression: undefined
actual value: 0,0,0,0,0
desired value: undefined
passed: true,true,true,true,true
|
expression: screenX
desired expression: undefined
actual value: 0,0,0,0,0
desired value: undefined
passed: true,true,true,true,true
|
expression: screenX
desired expression: undefined
actual value: 0,0,0,0,0
desired value: undefined
passed: true,true,true,true,true
|
expression: screenX
desired expression: undefined
actual value: 0,0,0,0,0
desired value: undefined
passed: true,true,true,true,true
|
expression: screenX
desired expression: undefined
actual value: 0,0,0,0,0
desired value: undefined
passed: true,true,true,true,true
|
screenYPosition, in pixels, of the top edge of the browser window on screen. |
expression: screenY
desired expression: undefined
actual value: 0,0,0,0,0
desired value: undefined
passed: true,true,true,true,true
|
expression: screenY
desired expression: undefined
actual value: 0,0,0,0,0
desired value: undefined
passed: true,true,true,true,true
|
expression: screenY
desired expression: undefined
actual value: 0,0,0,0,0
desired value: undefined
passed: true,true,true,true,true
|
expression: screenY
desired expression: undefined
actual value: 0,0,0,0,0
desired value: undefined
passed: true,true,true,true,true
|
expression: screenY
desired expression: undefined
actual value: 0,0,0,0,0
desired value: undefined
passed: true,true,true,true,true
|
expression: screenY
desired expression: undefined
actual value: 0,0,0,0,0
desired value: undefined
passed: true,true,true,true,true
|
expression: screenY
desired expression: undefined
actual value: 0,0,0,0,0
desired value: undefined
passed: true,true,true,true,true
|
expression: screenY
desired expression: undefined
actual value: 0,0,0,0,0
desired value: undefined
passed: true,true,true,true,true
|
expression: screenY
desired expression: undefined
actual value: 0,0,0,0,0
desired value: undefined
passed: true,true,true,true,true
|
Tracking query parameter tests
Which browsers remove URL parameters that can track you?
When you browse from one web page to another, tracking companies will frequently attach a 'tracking query parameter' to the address of the second web page. That query parameter may contain a unique identifier that tracks you individually as you browse the web. And these query parameters are frequently synchronized with cookies, making them a powerful tracking vector. Web browsers can protect you from known tracking query parameters by stripping them from web addresses before your browser sends them. (The set of tracking query parameters tested here was largely borrowed from Brave.)`
| |||||||||
__hsfpHubSpot tracking parameter |
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
__hsscHubSpot tracking parameter |
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
__hstcHubSpot tracking parameter |
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
__sDrip.com email address tracking parameter |
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
_hsencHubSpot tracking parameter |
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
_openstatYandex tracking parameter |
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
dclidDoubleClick Click ID (Google) |
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
fbclidFacebook Click Identifier |
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
passed: true,true,true,true,true
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
gclidGoogle Click Identifier |
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
passed: true,true,true,true,true
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
hsCtaTrackingHubSpot tracking parameter |
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
igshidInstagram tracking parameter |
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
mc_eidMailchimp Email ID (email recipient's address) |
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
mkt_tokAdobe Marketo tracking parameter |
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
passed: true,true,true,true,true
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
ml_subscriberMailerLite email tracking |
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
ml_subscriber_hashMailerLite email tracking |
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
msclkidMicrosoft Click ID |
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
oly_anon_idOmeda marketing 'anonymous' customer id |
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
oly_enc_idOmeda marketing 'known' customer id |
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
rb_clickidUnknown high-entropy tracking parameter |
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
s_cidAdobe Site Catalyst tracking parameter |
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
vero_convVero tracking parameter |
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
vero_idVero tracking parameter |
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
wickedidWicked Reports e-commerce tracking |
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
yclidYandex Click ID |
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
value: 9954499956111789
passed: false,false,false,false,false
|
Tracker content blocking tests
Which browsers block important known tracking scripts and pixels?
When you visit a web page, it frequently has third-party embedded tracking content, such as scripts and tracking pixels. These embedded components spy on you. Some browsers and browser extensions maintain list of tracking companies and block their content from being loaded. This section checks to see if a browser blocks 20 of the largest trackers listed by https://whotracks.me.`
| |||||||||
AdobeTests whether the browser blocks the page from loading the tracker at https://munchkin.marketo.net/munchkin.js |
url: https://munchkin.marketo.net/munchkin.js
passed: false,false,false,false,false
|
url: https://munchkin.marketo.net/munchkin.js
passed: false,false,false,false,false
|
url: https://munchkin.marketo.net/munchkin.js
passed: true,true,true,true,true
|
url: https://munchkin.marketo.net/munchkin.js
passed: false,false,false,false,false
|
url: https://munchkin.marketo.net/munchkin.js
passed: false,false,false,false,false
|
url: https://munchkin.marketo.net/munchkin.js
passed: true,true,true,true,true
|
url: https://munchkin.marketo.net/munchkin.js
passed: false,false,false,false,false
|
url: https://munchkin.marketo.net/munchkin.js
passed: false,false,false,false,false
|
url: https://munchkin.marketo.net/munchkin.js
passed: false,false,false,false,false
|
Adobe Audience ManagerTests whether the browser blocks the page from loading the tracker at https://dpm.demdex.net/ibs |
url: https://dpm.demdex.net/ibs
passed: false,false,false,false,false
|
url: https://dpm.demdex.net/ibs
passed: false,false,false,false,false
|
url: https://dpm.demdex.net/ibs
passed: true,true,true,true,true
|
url: https://dpm.demdex.net/ibs
passed: false,false,false,false,false
|
url: https://dpm.demdex.net/ibs
passed: false,false,false,false,false
|
url: https://dpm.demdex.net/ibs
passed: true,true,true,true,true
|
url: https://dpm.demdex.net/ibs
passed: false,false,false,false,false
|
url: https://dpm.demdex.net/ibs
passed: false,false,false,false,false
|
url: https://dpm.demdex.net/ibs
passed: false,false,false,false,false
|
Amazon adsystemTests whether the browser blocks the page from loading the tracker at https://s.amazon-adsystem.com/dcm |
url: https://s.amazon-adsystem.com/dcm
passed: false,false,false,false,false
|
url: https://s.amazon-adsystem.com/dcm
passed: false,false,false,false,false
|
url: https://s.amazon-adsystem.com/dcm
passed: true,true,true,true,true
|
url: https://s.amazon-adsystem.com/dcm
passed: false,false,false,false,false
|
url: https://s.amazon-adsystem.com/dcm
passed: false,false,false,false,false
|
url: https://s.amazon-adsystem.com/dcm
passed: true,true,true,true,true
|
url: https://s.amazon-adsystem.com/dcm
passed: false,false,false,false,false
|
url: https://s.amazon-adsystem.com/dcm
passed: false,false,false,false,false
|
url: https://s.amazon-adsystem.com/dcm
passed: false,false,false,false,false
|
AppNexusTests whether the browser blocks the page from loading the tracker at https://ib.adnxs.com/px?id=178248&t=1 |
url: https://ib.adnxs.com/px?id=178248&t=1
passed: false,false,false,false,false
|
url: https://ib.adnxs.com/px?id=178248&t=1
passed: false,false,false,false,false
|
url: https://ib.adnxs.com/px?id=178248&t=1
passed: true,true,true,true,true
|
url: https://ib.adnxs.com/px?id=178248&t=1
passed: false,false,false,false,false
|
url: https://ib.adnxs.com/px?id=178248&t=1
passed: false,false,false,false,false
|
url: https://ib.adnxs.com/px?id=178248&t=1
passed: true,true,true,true,true
|
url: https://ib.adnxs.com/px?id=178248&t=1
passed: false,false,false,false,false
|
url: https://ib.adnxs.com/px?id=178248&t=1
passed: false,false,false,false,false
|
url: https://ib.adnxs.com/px?id=178248&t=1
passed: false,false,false,false,false
|
Bing AdsTests whether the browser blocks the page from loading the tracker at https://bat.bing.com/bat.js |
url: https://bat.bing.com/bat.js
passed: false,false,false,false,false
|
url: https://bat.bing.com/bat.js
passed: false,false,false,false,false
|
url: https://bat.bing.com/bat.js
passed: true,true,true,true,true
|
url: https://bat.bing.com/bat.js
passed: false,false,false,false,false
|
url: https://bat.bing.com/bat.js
passed: false,false,false,false,false
|
url: https://bat.bing.com/bat.js
passed: false,false,false,false,false
|
url: https://bat.bing.com/bat.js
passed: false,false,false,false,false
|
url: https://bat.bing.com/bat.js
passed: false,false,false,false,false
|
url: https://bat.bing.com/bat.js
passed: false,false,false,false,false
|
ChartbeatTests whether the browser blocks the page from loading the tracker at https://static.chartbeat.com/js/chartbeat.js |
url: https://static.chartbeat.com/js/chartbeat.js
passed: false,false,false,false,false
|
url: https://static.chartbeat.com/js/chartbeat.js
passed: false,false,false,false,false
|
url: https://static.chartbeat.com/js/chartbeat.js
passed: true,true,true,true,true
|
url: https://static.chartbeat.com/js/chartbeat.js
passed: false,false,false,false,false
|
url: https://static.chartbeat.com/js/chartbeat.js
passed: false,false,false,false,false
|
url: https://static.chartbeat.com/js/chartbeat.js
passed: true,true,true,true,true
|
url: https://static.chartbeat.com/js/chartbeat.js
passed: false,false,false,false,false
|
url: https://static.chartbeat.com/js/chartbeat.js
passed: false,false,false,false,false
|
url: https://static.chartbeat.com/js/chartbeat.js
passed: false,false,false,false,false
|
CriteoTests whether the browser blocks the page from loading the tracker at https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx |
url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
passed: false,false,false,false,false
|
url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
passed: false,false,false,false,false
|
url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
passed: true,true,true,true,true
|
url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
passed: false,false,false,false,false
|
url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
passed: false,false,false,false,false
|
url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
passed: true,true,true,true,true
|
url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
passed: false,false,false,false,false
|
url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
passed: false,false,false,false,false
|
url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx
passed: false,false,false,false,false
|
DoubleClick (Google)Tests whether the browser blocks the page from loading the tracker at https://securepubads.g.doubleclick.net/static/glade.js |
url: https://securepubads.g.doubleclick.net/static/glade.js
passed: false,false,false,false,false
|
url: https://securepubads.g.doubleclick.net/static/glade.js
passed: false,false,false,false,false
|
url: https://securepubads.g.doubleclick.net/static/glade.js
passed: true,true,true,true,true
|
url: https://securepubads.g.doubleclick.net/static/glade.js
passed: false,false,false,false,false
|
url: https://securepubads.g.doubleclick.net/static/glade.js
passed: false,false,false,false,false
|
url: https://securepubads.g.doubleclick.net/static/glade.js
passed: true,true,true,true,true
|
url: https://securepubads.g.doubleclick.net/static/glade.js
passed: false,false,false,false,false
|
url: https://securepubads.g.doubleclick.net/static/glade.js
passed: false,false,false,false,false
|
url: https://securepubads.g.doubleclick.net/static/glade.js
passed: false,false,false,false,false
|
Facebook trackingTests whether the browser blocks the page from loading the tracker at https://connect.facebook.net/en_US/fbevents.js |
url: https://connect.facebook.net/en_US/fbevents.js
passed: false,false,false,false,false
|
url: https://connect.facebook.net/en_US/fbevents.js
passed: false,false,false,false,false
|
url: https://connect.facebook.net/en_US/fbevents.js
passed: true,true,true,true,true
|
url: https://connect.facebook.net/en_US/fbevents.js
passed: false,false,false,false,false
|
url: https://connect.facebook.net/en_US/fbevents.js
passed: false,false,false,false,false
|
url: https://connect.facebook.net/en_US/fbevents.js
passed: true,true,true,true,true
|
url: https://connect.facebook.net/en_US/fbevents.js
passed: false,false,false,false,false
|
url: https://connect.facebook.net/en_US/fbevents.js
passed: false,false,false,false,false
|
url: https://connect.facebook.net/en_US/fbevents.js
passed: false,false,false,false,false
|
Google (third-party ad pixel)Tests whether the browser blocks the page from loading the tracker at https://www.google.com/pagead/1p-user-list/ |
url: https://www.google.com/pagead/1p-user-list/
passed: false,false,false,false,false
|
url: https://www.google.com/pagead/1p-user-list/
passed: false,false,false,false,false
|
url: https://www.google.com/pagead/1p-user-list/
passed: true,true,true,true,true
|
url: https://www.google.com/pagead/1p-user-list/
passed: false,false,false,false,false
|
url: https://www.google.com/pagead/1p-user-list/
passed: false,false,false,false,false
|
url: https://www.google.com/pagead/1p-user-list/
passed: false,false,false,false,false
|
url: https://www.google.com/pagead/1p-user-list/
passed: false,false,false,false,false
|
url: https://www.google.com/pagead/1p-user-list/
passed: false,false,false,false,false
|
url: https://www.google.com/pagead/1p-user-list/
passed: false,false,false,false,false
|
Google AnalyticsTests whether the browser blocks the page from loading the tracker at https://google-analytics.com/urchin.js |
url: https://google-analytics.com/urchin.js
passed: false,false,false,false,false
|
url: https://google-analytics.com/urchin.js
passed: false,false,false,false,false
|
url: https://google-analytics.com/urchin.js
passed: true,true,true,true,true
|
url: https://google-analytics.com/urchin.js
passed: false,false,false,false,false
|
url: https://google-analytics.com/urchin.js
passed: false,false,false,false,false
|
url: https://google-analytics.com/urchin.js
passed: true,true,true,true,true
|
url: https://google-analytics.com/urchin.js
passed: false,false,false,false,false
|
url: https://google-analytics.com/urchin.js
passed: false,false,false,false,false
|
url: https://google-analytics.com/urchin.js
passed: false,false,false,false,false
|
Google Tag ManagerTests whether the browser blocks the page from loading the tracker at https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL |
url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
passed: false,false,false,false,false
|
url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
passed: false,false,false,false,false
|
url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
passed: true,true,true,true,true
|
url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
passed: false,false,false,false,false
|
url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
passed: false,false,false,false,false
|
url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
passed: false,false,false,false,false
|
url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
passed: false,false,false,false,false
|
url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
passed: false,false,false,false,false
|
url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL
passed: false,false,false,false,false
|
Index ExchangeTests whether the browser blocks the page from loading the tracker at https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1 |
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
passed: false,false,false,false,false
|
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
passed: false,false,false,false,false
|
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
passed: true,true,true,true,true
|
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
passed: false,false,false,false,false
|
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
passed: false,false,false,false,false
|
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
passed: true,true,true,true,true
|
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
passed: false,false,false,false,false
|
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
passed: false,false,false,false,false
|
url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1
passed: false,false,false,false,false
|
New RelicTests whether the browser blocks the page from loading the tracker at https://js-agent.newrelic.com/nr-1212.min.js |
url: https://js-agent.newrelic.com/nr-1212.min.js
passed: false,false,false,false,false
|
url: https://js-agent.newrelic.com/nr-1212.min.js
passed: false,false,false,false,false
|
url: https://js-agent.newrelic.com/nr-1212.min.js
passed: true,true,true,true,true
|
url: https://js-agent.newrelic.com/nr-1212.min.js
passed: false,false,false,false,false
|
url: https://js-agent.newrelic.com/nr-1212.min.js
passed: false,false,false,false,false
|
url: https://js-agent.newrelic.com/nr-1212.min.js
passed: true,true,true,true,true
|
url: https://js-agent.newrelic.com/nr-1212.min.js
passed: false,false,false,false,false
|
url: https://js-agent.newrelic.com/nr-1212.min.js
passed: false,false,false,false,false
|
url: https://js-agent.newrelic.com/nr-1212.min.js
passed: false,false,false,false,false
|
QuantcastTests whether the browser blocks the page from loading the tracker at https://pixel.quantserve.com/pixel |
url: https://pixel.quantserve.com/pixel
passed: false,false,false,false,false
|
url: https://pixel.quantserve.com/pixel
passed: false,false,false,false,false
|
url: https://pixel.quantserve.com/pixel
passed: true,true,true,true,true
|
url: https://pixel.quantserve.com/pixel
passed: false,false,false,false,false
|
url: https://pixel.quantserve.com/pixel
passed: false,false,false,false,false
|
url: https://pixel.quantserve.com/pixel
passed: true,true,true,true,true
|
url: https://pixel.quantserve.com/pixel
passed: false,false,false,false,false
|
url: https://pixel.quantserve.com/pixel
passed: false,false,false,false,false
|
url: https://pixel.quantserve.com/pixel
passed: false,false,false,false,false
|
Scorecard Research BeaconTests whether the browser blocks the page from loading the tracker at https://sb.scorecardresearch.com/internal-c2/default/cs.js |
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
passed: false,false,false,false,false
|
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
passed: false,false,false,false,false
|
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
passed: true,true,true,true,true
|
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
passed: false,false,false,false,false
|
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
passed: false,false,false,false,false
|
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
passed: true,true,true,true,true
|
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
passed: false,false,false,false,false
|
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
passed: false,false,false,false,false
|
url: https://sb.scorecardresearch.com/internal-c2/default/cs.js
passed: false,false,false,false,false
|
TaboolaTests whether the browser blocks the page from loading the tracker at https://trc.taboola.com/futureplc-tomsguide/trc/3/json |
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
passed: false,false,false,false,false
|
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
passed: false,false,false,false,false
|
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
passed: true,true,true,true,true
|
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
passed: false,false,false,false,false
|
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
passed: false,false,false,false,false
|
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
passed: true,true,true,true,true
|
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
passed: false,false,false,false,false
|
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
passed: false,false,false,false,false
|
url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json
passed: false,false,false,false,false
|
Twitter pixelTests whether the browser blocks the page from loading the tracker at https://t.co/i/adsct |
url: https://t.co/i/adsct
passed: false,false,false,false,false
|
url: https://t.co/i/adsct
passed: false,false,false,false,false
|
url: https://t.co/i/adsct
passed: true,true,true,true,true
|
url: https://t.co/i/adsct
passed: false,false,false,false,false
|
url: https://t.co/i/adsct
passed: false,false,false,false,false
|
url: https://t.co/i/adsct
passed: false,false,false,false,false
|
url: https://t.co/i/adsct
passed: false,false,false,false,false
|
url: https://t.co/i/adsct
passed: false,false,false,false,false
|
url: https://t.co/i/adsct
passed: false,false,false,false,false
|
Yandex AdsTests whether the browser blocks the page from loading the tracker at https://yandex.ru/ads/system/header-bidding.js |
url: https://yandex.ru/ads/system/header-bidding.js
passed: false,false,false,false,false
|
url: https://yandex.ru/ads/system/header-bidding.js
passed: false,false,false,false,false
|
url: https://yandex.ru/ads/system/header-bidding.js
passed: true,true,true,true,true
|
url: https://yandex.ru/ads/system/header-bidding.js
passed: false,false,false,false,false
|
url: https://yandex.ru/ads/system/header-bidding.js
passed: false,false,false,false,false
|
url: https://yandex.ru/ads/system/header-bidding.js
passed: false,false,false,false,false
|
url: https://yandex.ru/ads/system/header-bidding.js
passed: false,false,false,false,false
|
url: https://yandex.ru/ads/system/header-bidding.js
passed: false,false,false,false,false
|
url: https://yandex.ru/ads/system/header-bidding.js
passed: false,false,false,false,false
|