Desktop private modes(default settings) |
brave 1.81 private |
brave 1.81 Tor |
chrome 139.0 private |
duckduckgo 1.151 private |
edge 139.0 private |
firefox 141.0 private |
librewolf 141.0 private |
mullvad 14.5 private |
opera 120.0 private |
safari 18.6 private |
tor 14.5 private |
ungoogled 139.0 private |
vivaldi 7.5 private |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
State Partitioning testsWhich 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-Svc
Alt-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 = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same first party: h3, h3, h3, h3, h3 result, different first party: h2, h2, h2, h2, h2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
write: async () => { // Clear Alt-Svc caching first. let responseText = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/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 = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same first party: h3, h3, h3, h3, h3 result, different first party: h2, h2, h2, h2, h2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
write: async () => { // Clear Alt-Svc caching first. let responseText = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/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 result, different first party: h2, h2, h2, h2 unsupported: true, true, true, true passed: undefined test failed: false, false, false, false |
write: async () => { // Clear Alt-Svc caching first. let responseText = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same first party: h3, h3, h3, h3, h3 result, different first party: h2, h2, h2, h2, h2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
write: async () => { // Clear Alt-Svc caching first. let responseText = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same first party: h3, h3, h3, h3, h3 result, different first party: h2, h2, h2, h2, h2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
write: async () => { // Clear Alt-Svc caching first. let responseText = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same first party: h3, h3, h3, h3, h3 result, different first party: h2, h2, h2, h2, h2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
write: async () => { // Clear Alt-Svc caching first. let responseText = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same first party: h3, h3, h3, h3, h3 result, different first party: h2, h2, h2, h2, h2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
write: async () => { // Clear Alt-Svc caching first. let responseText = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same first party: h3, h3, h3, h3, h3 result, different first party: h2, h2, h2, h2, h2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
write: async () => { // Clear Alt-Svc caching first. let responseText = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/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 result, different first party: h2, h2, h2, h2 unsupported: true, true, true, true passed: undefined test failed: false, false, false, false |
write: async () => { // Clear Alt-Svc caching first. let responseText = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/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 = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same first party: h3, h3, h3, h3, h3 result, different first party: h2, h2, h2, h2, h2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
write: async () => { // Clear Alt-Svc caching first. let responseText = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same first party: h3, h3, h3, h3, h3 result, different first party: h2, h2, h2, h2, h2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
blob
A '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: e5519e19-3a86-491c-ad7d-877a716f9039, b490967a-09b6-4321-bb08-182238b4a282, 005d1c84-b923-4777-b2b4-646f0f20ac85, 1c2cc545-57f8-49a4-af3f-da8ab9fcfd4e, 250f3351-9ff0-4d54-b53f-bd9b54354c78 result, different first party: Error: Failed to fetch, Error: Failed to fetch, Error: Failed to fetch, Error: Failed to fetch, Error: Failed to fetch unsupported: false, false, false, false, false passed: true, true, true, true, true 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: e7bebf0a-9623-4709-b481-47a318b6f037, e4ef1561-018c-4570-b984-47b3c459b7eb, 3c678a65-4546-4a33-a7d6-dcb258964678, 80255f8c-1cdb-4b4d-8935-b12be3c4f16b, 2d52c277-29ba-4fc1-bb25-d9dcb805bd07 result, different first party: Error: Failed to fetch, Error: Failed to fetch, Error: Failed to fetch, Error: Failed to fetch, Error: Failed to fetch unsupported: false, false, false, false, false passed: true, true, true, true, true 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: daf90757-b1f7-418e-ab53-dbd391820218, d1be8c6c-510b-49ec-aef7-af0dab3c09ed, 1e68e254-000a-45e1-b022-2c599a737ccb, b6dff3a4-a6da-440a-bd7d-652bc0c1c5fe, b9d20250-6980-45c4-91c6-154aa4f0c059 result, different first party: Error: Failed to fetch, Error: Failed to fetch, Error: Failed to fetch, Error: Failed to fetch, Error: Failed to fetch unsupported: false, false, false, false, false passed: true, true, true, true, true 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: 8d9b75ae-6d01-4ffe-bedb-4aa3d9d44eb3, 81a2c55d-d252-4212-be43-7d64517376bd, 23601d7c-fb58-46da-b073-4d037b065160, 0f10a8af-da07-4a33-aa45-29da6b03cd78 result, different first party: Error: Load failed, Error: Load failed, Error: Load failed, Error: Load failed unsupported: false, false, false, false passed: true, true, true, true test failed: 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: aa29142e-96b1-4b0b-bb8d-d330211d46ef, da550f8c-d76f-43c5-b569-cad1c27dd80e, 83d9b3d1-37fa-4ccf-8382-1e5211bfba71, 2889d794-dda8-4e69-9e11-699d711a082a, 09030978-b29b-4401-8d9e-20a51d44dbf6 result, different first party: Error: Failed to fetch, Error: Failed to fetch, Error: Failed to fetch, Error: Failed to fetch, Error: Failed to fetch unsupported: false, false, false, false, false passed: true, true, true, true, true 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: 2d6c06b3-69f7-4a25-a0e2-d98293c8419d, b4645eec-b868-4ab5-849a-b17fb56c62a9, 66d28c1e-d1e1-4c74-9e22-f23f4af78732, 7ad596ca-c6e2-45d9-8ee7-cc28f4f96ddd, abb50bae-7cfe-4c12-9cfe-ed946879d183 result, different first party: Error: NetworkError when attempting to fetch resource., Error: NetworkError when attempting to fetch resource., Error: NetworkError when attempting to fetch resource., Error: NetworkError when attempting to fetch resource., Error: NetworkError when attempting to fetch resource. unsupported: false, false, false, false, false passed: true, true, true, true, true 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: ef0aa6ec-38e4-4764-bbd1-82dd11445c24, 7baf3bd2-f78f-4a04-a7df-6ef4243b9518, e991020d-3edf-48c9-bdcc-128c1222f27a, d1773dbb-1a5e-43e5-88dd-bc966d9f9c3d, de547874-ab8b-4bde-a5c5-e795e586e73e result, different first party: Error: NetworkError when attempting to fetch resource., Error: NetworkError when attempting to fetch resource., Error: NetworkError when attempting to fetch resource., Error: NetworkError when attempting to fetch resource., Error: NetworkError when attempting to fetch resource. unsupported: false, false, false, false, false passed: true, true, true, true, true 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: fbe3ef70-c9b4-4ecb-bd0f-8b33439ab656, f9315ed5-a4a9-4c27-9eda-378b8f0d3b7c, 82349fff-73dc-4999-be06-bc5ef0f05c9c, f6446da3-cde1-4b2c-9fb6-95cfe0df79b0, b2ca5b88-cb93-40cf-8e19-e396f306d991 result, different first party: Error: NetworkError when attempting to fetch resource., Error: NetworkError when attempting to fetch resource., Error: NetworkError when attempting to fetch resource., Error: NetworkError when attempting to fetch resource., Error: NetworkError when attempting to fetch resource. unsupported: false, false, false, false, false passed: true, true, true, true, true 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: 68ee9f0e-bffd-4faf-9d8f-fc06949ec786, ed81b5e3-5587-4800-a244-a0dfd866fb3b, 024116c3-ae0b-4da8-9a6d-8c4163baf033, 565bfeb6-fe62-4ebb-b63c-ab32b0934145, 1158aebf-466f-4e30-a937-f288891de9d5 result, different first party: 68ee9f0e-bffd-4faf-9d8f-fc06949ec786, ed81b5e3-5587-4800-a244-a0dfd866fb3b, 024116c3-ae0b-4da8-9a6d-8c4163baf033, 565bfeb6-fe62-4ebb-b63c-ab32b0934145, 1158aebf-466f-4e30-a937-f288891de9d5 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 result, different first party: Error: Load failed, Error: Load failed, Error: Load failed, Error: Load failed unsupported: false, false, false, false passed: undefined test failed: 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: a2e533c4-2dd6-49e3-8076-8af6c436b065, 6ca7d38b-5b34-4764-89fd-8536e320b15d, 1ee4b4ff-13e0-4529-9be9-279efa210be6, 2bac0ce0-5bdd-46ab-b431-799ca3a6c289, bf77a72a-d400-4c8e-9a49-39df3b1eb054 result, different first party: Error: NetworkError when attempting to fetch resource., Error: NetworkError when attempting to fetch resource., Error: NetworkError when attempting to fetch resource., Error: NetworkError when attempting to fetch resource., Error: NetworkError when attempting to fetch resource. unsupported: false, false, false, false, false passed: true, true, true, true, true 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: cefd4548-c20f-4153-8115-7b2d691b42a0, 729070d5-2317-42d2-8b8c-e360175cc24f, 32f5aa48-975c-4a47-baaf-a05c114d096f, 29c2a985-0935-4131-b322-279dc6173e4f, 8d2fa17d-f3d5-4308-8cef-59d1e70a16cd result, different first party: Error: Failed to fetch, Error: Failed to fetch, Error: Failed to fetch, Error: Failed to fetch, Error: Failed to fetch unsupported: false, false, false, false, false passed: true, true, true, true, true 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: 9f0b9357-a378-494f-8f86-5d520f418441, 93be6a66-4f73-42b4-af8e-ec08ea3034c0, 51160da8-e7fc-4e5e-85fa-33d923696e92, 4f6b486b-287d-41e2-8204-90f755368ed1, 4f7c170c-eb0f-4d6a-927f-c817033dd4c1 result, different first party: Error: Failed to fetch, Error: Failed to fetch, Error: Failed to fetch, Error: Failed to fetch, Error: Failed to fetch unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
BroadcastChannel
A 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: e5519e19-3a86-491c-ad7d-877a716f9039, b490967a-09b6-4321-bb08-182238b4a282, 005d1c84-b923-4777-b2b4-646f0f20ac85, 1c2cc545-57f8-49a4-af3f-da8ab9fcfd4e, 250f3351-9ff0-4d54-b53f-bd9b54354c78 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: e7bebf0a-9623-4709-b481-47a318b6f037, e4ef1561-018c-4570-b984-47b3c459b7eb, 3c678a65-4546-4a33-a7d6-dcb258964678, 80255f8c-1cdb-4b4d-8935-b12be3c4f16b, 2d52c277-29ba-4fc1-bb25-d9dcb805bd07 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: daf90757-b1f7-418e-ab53-dbd391820218, d1be8c6c-510b-49ec-aef7-af0dab3c09ed, 1e68e254-000a-45e1-b022-2c599a737ccb, b6dff3a4-a6da-440a-bd7d-652bc0c1c5fe, b9d20250-6980-45c4-91c6-154aa4f0c059 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: 8d9b75ae-6d01-4ffe-bedb-4aa3d9d44eb3, 81a2c55d-d252-4212-be43-7d64517376bd, 23601d7c-fb58-46da-b073-4d037b065160, 0f10a8af-da07-4a33-aa45-29da6b03cd78 result, different first party: Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message unsupported: false, false, false, false passed: true, true, true, true test failed: 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: aa29142e-96b1-4b0b-bb8d-d330211d46ef, da550f8c-d76f-43c5-b569-cad1c27dd80e, 83d9b3d1-37fa-4ccf-8382-1e5211bfba71, 2889d794-dda8-4e69-9e11-699d711a082a, 09030978-b29b-4401-8d9e-20a51d44dbf6 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: 2d6c06b3-69f7-4a25-a0e2-d98293c8419d, b4645eec-b868-4ab5-849a-b17fb56c62a9, 66d28c1e-d1e1-4c74-9e22-f23f4af78732, 7ad596ca-c6e2-45d9-8ee7-cc28f4f96ddd, abb50bae-7cfe-4c12-9cfe-ed946879d183 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: ef0aa6ec-38e4-4764-bbd1-82dd11445c24, 7baf3bd2-f78f-4a04-a7df-6ef4243b9518, e991020d-3edf-48c9-bdcc-128c1222f27a, d1773dbb-1a5e-43e5-88dd-bc966d9f9c3d, de547874-ab8b-4bde-a5c5-e795e586e73e 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: fbe3ef70-c9b4-4ecb-bd0f-8b33439ab656, f9315ed5-a4a9-4c27-9eda-378b8f0d3b7c, 82349fff-73dc-4999-be06-bc5ef0f05c9c, f6446da3-cde1-4b2c-9fb6-95cfe0df79b0, b2ca5b88-cb93-40cf-8e19-e396f306d991 result, different first party: Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure. 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: 68ee9f0e-bffd-4faf-9d8f-fc06949ec786, ed81b5e3-5587-4800-a244-a0dfd866fb3b, 024116c3-ae0b-4da8-9a6d-8c4163baf033, 565bfeb6-fe62-4ebb-b63c-ab32b0934145, 1158aebf-466f-4e30-a937-f288891de9d5 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 result, different first party: Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message, Error: no BroadcastChannel message unsupported: false, false, false, false passed: undefined test failed: 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: a2e533c4-2dd6-49e3-8076-8af6c436b065, 6ca7d38b-5b34-4764-89fd-8536e320b15d, 1ee4b4ff-13e0-4529-9be9-279efa210be6, 2bac0ce0-5bdd-46ab-b431-799ca3a6c289, bf77a72a-d400-4c8e-9a49-39df3b1eb054 result, different first party: Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure. 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: cefd4548-c20f-4153-8115-7b2d691b42a0, 729070d5-2317-42d2-8b8c-e360175cc24f, 32f5aa48-975c-4a47-baaf-a05c114d096f, 29c2a985-0935-4131-b322-279dc6173e4f, 8d2fa17d-f3d5-4308-8cef-59d1e70a16cd 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: 9f0b9357-a378-494f-8f86-5d520f418441, 93be6a66-4f73-42b4-af8e-ec08ea3034c0, 51160da8-e7fc-4e5e-85fa-33d923696e92, 4f6b486b-287d-41e2-8204-90f755368ed1, 4f7c170c-eb0f-4d6a-927f-c817033dd4c1 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 |
CacheStorage
The 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: e5519e19-3a86-491c-ad7d-877a716f9039, b490967a-09b6-4321-bb08-182238b4a282, 005d1c84-b923-4777-b2b4-646f0f20ac85, 1c2cc545-57f8-49a4-af3f-da8ab9fcfd4e, 250f3351-9ff0-4d54-b53f-bd9b54354c78 result, different first party: Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading '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: e7bebf0a-9623-4709-b481-47a318b6f037, e4ef1561-018c-4570-b984-47b3c459b7eb, 3c678a65-4546-4a33-a7d6-dcb258964678, 80255f8c-1cdb-4b4d-8935-b12be3c4f16b, 2d52c277-29ba-4fc1-bb25-d9dcb805bd07 result, different first party: Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading '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: daf90757-b1f7-418e-ab53-dbd391820218, d1be8c6c-510b-49ec-aef7-af0dab3c09ed, 1e68e254-000a-45e1-b022-2c599a737ccb, b6dff3a4-a6da-440a-bd7d-652bc0c1c5fe, b9d20250-6980-45c4-91c6-154aa4f0c059 result, different first party: Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading '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: 8d9b75ae-6d01-4ffe-bedb-4aa3d9d44eb3, 81a2c55d-d252-4212-be43-7d64517376bd, 23601d7c-fb58-46da-b073-4d037b065160, 0f10a8af-da07-4a33-aa45-29da6b03cd78 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') unsupported: false, false, false, false passed: true, true, true, true test failed: 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: aa29142e-96b1-4b0b-bb8d-d330211d46ef, da550f8c-d76f-43c5-b569-cad1c27dd80e, 83d9b3d1-37fa-4ccf-8382-1e5211bfba71, 2889d794-dda8-4e69-9e11-699d711a082a, 09030978-b29b-4401-8d9e-20a51d44dbf6 result, different first party: Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading '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: 2d6c06b3-69f7-4a25-a0e2-d98293c8419d, b4645eec-b868-4ab5-849a-b17fb56c62a9, 66d28c1e-d1e1-4c74-9e22-f23f4af78732, 7ad596ca-c6e2-45d9-8ee7-cc28f4f96ddd, abb50bae-7cfe-4c12-9cfe-ed946879d183 result, different first party: Error: can't access property "url", cacheKeys[0] is undefined, Error: can't access property "url", cacheKeys[0] is undefined, Error: can't access property "url", cacheKeys[0] is undefined, Error: can't access property "url", cacheKeys[0] is undefined, Error: can't access property "url", cacheKeys[0] is undefined 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: ef0aa6ec-38e4-4764-bbd1-82dd11445c24, 7baf3bd2-f78f-4a04-a7df-6ef4243b9518, e991020d-3edf-48c9-bdcc-128c1222f27a, d1773dbb-1a5e-43e5-88dd-bc966d9f9c3d, de547874-ab8b-4bde-a5c5-e795e586e73e result, different first party: Error: can't access property "url", cacheKeys[0] is undefined, Error: can't access property "url", cacheKeys[0] is undefined, Error: can't access property "url", cacheKeys[0] is undefined, Error: can't access property "url", cacheKeys[0] is undefined, Error: can't access property "url", cacheKeys[0] is undefined 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: fbe3ef70-c9b4-4ecb-bd0f-8b33439ab656, f9315ed5-a4a9-4c27-9eda-378b8f0d3b7c, 82349fff-73dc-4999-be06-bc5ef0f05c9c, f6446da3-cde1-4b2c-9fb6-95cfe0df79b0, b2ca5b88-cb93-40cf-8e19-e396f306d991 result, different first party: Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure. 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: 68ee9f0e-bffd-4faf-9d8f-fc06949ec786, ed81b5e3-5587-4800-a244-a0dfd866fb3b, 024116c3-ae0b-4da8-9a6d-8c4163baf033, 565bfeb6-fe62-4ebb-b63c-ab32b0934145, 1158aebf-466f-4e30-a937-f288891de9d5 result, different first party: Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading '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: 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') 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') unsupported: false, false, false, false passed: undefined test failed: true, true, true, true |
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: a2e533c4-2dd6-49e3-8076-8af6c436b065, 6ca7d38b-5b34-4764-89fd-8536e320b15d, 1ee4b4ff-13e0-4529-9be9-279efa210be6, 2bac0ce0-5bdd-46ab-b431-799ca3a6c289, bf77a72a-d400-4c8e-9a49-39df3b1eb054 result, different first party: Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure. 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: cefd4548-c20f-4153-8115-7b2d691b42a0, 729070d5-2317-42d2-8b8c-e360175cc24f, 32f5aa48-975c-4a47-baaf-a05c114d096f, 29c2a985-0935-4131-b322-279dc6173e4f, 8d2fa17d-f3d5-4308-8cef-59d1e70a16cd result, different first party: Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading '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: 9f0b9357-a378-494f-8f86-5d520f418441, 93be6a66-4f73-42b4-af8e-ec08ea3034c0, 51160da8-e7fc-4e5e-85fa-33d923696e92, 4f6b486b-287d-41e2-8204-90f755368ed1, 4f7c170c-eb0f-4d6a-927f-c817033dd4c1 result, different first party: Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading '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: e5519e19-3a86-491c-ad7d-877a716f9039_http, b490967a-09b6-4321-bb08-182238b4a282_http, 005d1c84-b923-4777-b2b4-646f0f20ac85_http, 1c2cc545-57f8-49a4-af3f-da8ab9fcfd4e_http, 250f3351-9ff0-4d54-b53f-bd9b54354c78_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: e7bebf0a-9623-4709-b481-47a318b6f037_http, e4ef1561-018c-4570-b984-47b3c459b7eb_http, 3c678a65-4546-4a33-a7d6-dcb258964678_http, 80255f8c-1cdb-4b4d-8935-b12be3c4f16b_http, 2d52c277-29ba-4fc1-bb25-d9dcb805bd07_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: daf90757-b1f7-418e-ab53-dbd391820218_http, d1be8c6c-510b-49ec-aef7-af0dab3c09ed_http, 1e68e254-000a-45e1-b022-2c599a737ccb_http, b6dff3a4-a6da-440a-bd7d-652bc0c1c5fe_http, b9d20250-6980-45c4-91c6-154aa4f0c059_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: 8d9b75ae-6d01-4ffe-bedb-4aa3d9d44eb3_http, 81a2c55d-d252-4212-be43-7d64517376bd_http, 23601d7c-fb58-46da-b073-4d037b065160_http, 0f10a8af-da07-4a33-aa45-29da6b03cd78_http result, different first party: , , , unsupported: false, false, false, false passed: true, true, true, true test failed: 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: aa29142e-96b1-4b0b-bb8d-d330211d46ef_http, da550f8c-d76f-43c5-b569-cad1c27dd80e_http, 83d9b3d1-37fa-4ccf-8382-1e5211bfba71_http, 2889d794-dda8-4e69-9e11-699d711a082a_http, 09030978-b29b-4401-8d9e-20a51d44dbf6_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: 2d6c06b3-69f7-4a25-a0e2-d98293c8419d_http, b4645eec-b868-4ab5-849a-b17fb56c62a9_http, 66d28c1e-d1e1-4c74-9e22-f23f4af78732_http, 7ad596ca-c6e2-45d9-8ee7-cc28f4f96ddd_http, abb50bae-7cfe-4c12-9cfe-ed946879d183_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: ef0aa6ec-38e4-4764-bbd1-82dd11445c24_http, 7baf3bd2-f78f-4a04-a7df-6ef4243b9518_http, e991020d-3edf-48c9-bdcc-128c1222f27a_http, d1773dbb-1a5e-43e5-88dd-bc966d9f9c3d_http, de547874-ab8b-4bde-a5c5-e795e586e73e_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: fbe3ef70-c9b4-4ecb-bd0f-8b33439ab656_http, f9315ed5-a4a9-4c27-9eda-378b8f0d3b7c_http, 82349fff-73dc-4999-be06-bc5ef0f05c9c_http, f6446da3-cde1-4b2c-9fb6-95cfe0df79b0_http, b2ca5b88-cb93-40cf-8e19-e396f306d991_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: 68ee9f0e-bffd-4faf-9d8f-fc06949ec786_http, ed81b5e3-5587-4800-a244-a0dfd866fb3b_http, 024116c3-ae0b-4da8-9a6d-8c4163baf033_http, 565bfeb6-fe62-4ebb-b63c-ab32b0934145_http, 1158aebf-466f-4e30-a937-f288891de9d5_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: , , , result, different first party: , , , unsupported: false, false, false, false passed: undefined test failed: true, true, true, true |
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: a2e533c4-2dd6-49e3-8076-8af6c436b065_http, 6ca7d38b-5b34-4764-89fd-8536e320b15d_http, 1ee4b4ff-13e0-4529-9be9-279efa210be6_http, 2bac0ce0-5bdd-46ab-b431-799ca3a6c289_http, bf77a72a-d400-4c8e-9a49-39df3b1eb054_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: cefd4548-c20f-4153-8115-7b2d691b42a0_http, 729070d5-2317-42d2-8b8c-e360175cc24f_http, 32f5aa48-975c-4a47-baaf-a05c114d096f_http, 29c2a985-0935-4131-b322-279dc6173e4f_http, 8d2fa17d-f3d5-4308-8cef-59d1e70a16cd_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: 9f0b9357-a378-494f-8f86-5d520f418441_http, 93be6a66-4f73-42b4-af8e-ec08ea3034c0_http, 51160da8-e7fc-4e5e-85fa-33d923696e92_http, 4f6b486b-287d-41e2-8204-90f755368ed1_http, 4f7c170c-eb0f-4d6a-927f-c817033dd4c1_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; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same first party: e5519e19-3a86-491c-ad7d-877a716f9039_js, b490967a-09b6-4321-bb08-182238b4a282_js, 005d1c84-b923-4777-b2b4-646f0f20ac85_js, 1c2cc545-57f8-49a4-af3f-da8ab9fcfd4e_js, 250f3351-9ff0-4d54-b53f-bd9b54354c78_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; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same first party: e7bebf0a-9623-4709-b481-47a318b6f037_js, e4ef1561-018c-4570-b984-47b3c459b7eb_js, 3c678a65-4546-4a33-a7d6-dcb258964678_js, 80255f8c-1cdb-4b4d-8935-b12be3c4f16b_js, 2d52c277-29ba-4fc1-bb25-d9dcb805bd07_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; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same first party: daf90757-b1f7-418e-ab53-dbd391820218_js, d1be8c6c-510b-49ec-aef7-af0dab3c09ed_js, 1e68e254-000a-45e1-b022-2c599a737ccb_js, b6dff3a4-a6da-440a-bd7d-652bc0c1c5fe_js, b9d20250-6980-45c4-91c6-154aa4f0c059_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; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same first party: 8d9b75ae-6d01-4ffe-bedb-4aa3d9d44eb3_js, 81a2c55d-d252-4212-be43-7d64517376bd_js, 23601d7c-fb58-46da-b073-4d037b065160_js, 0f10a8af-da07-4a33-aa45-29da6b03cd78_js result, different first party: , , , unsupported: false, false, false, false passed: true, true, true, true test failed: false, false, false, false |
write: (secret) => { document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same first party: aa29142e-96b1-4b0b-bb8d-d330211d46ef_js, da550f8c-d76f-43c5-b569-cad1c27dd80e_js, 83d9b3d1-37fa-4ccf-8382-1e5211bfba71_js, 2889d794-dda8-4e69-9e11-699d711a082a_js, 09030978-b29b-4401-8d9e-20a51d44dbf6_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; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same first party: 2d6c06b3-69f7-4a25-a0e2-d98293c8419d_js, b4645eec-b868-4ab5-849a-b17fb56c62a9_js, 66d28c1e-d1e1-4c74-9e22-f23f4af78732_js, 7ad596ca-c6e2-45d9-8ee7-cc28f4f96ddd_js, abb50bae-7cfe-4c12-9cfe-ed946879d183_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; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same first party: ef0aa6ec-38e4-4764-bbd1-82dd11445c24_js, 7baf3bd2-f78f-4a04-a7df-6ef4243b9518_js, e991020d-3edf-48c9-bdcc-128c1222f27a_js, d1773dbb-1a5e-43e5-88dd-bc966d9f9c3d_js, de547874-ab8b-4bde-a5c5-e795e586e73e_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; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same first party: fbe3ef70-c9b4-4ecb-bd0f-8b33439ab656_js, f9315ed5-a4a9-4c27-9eda-378b8f0d3b7c_js, 82349fff-73dc-4999-be06-bc5ef0f05c9c_js, f6446da3-cde1-4b2c-9fb6-95cfe0df79b0_js, b2ca5b88-cb93-40cf-8e19-e396f306d991_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; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same first party: 68ee9f0e-bffd-4faf-9d8f-fc06949ec786_js, ed81b5e3-5587-4800-a244-a0dfd866fb3b_js, 024116c3-ae0b-4da8-9a6d-8c4163baf033_js, 565bfeb6-fe62-4ebb-b63c-ab32b0934145_js, 1158aebf-466f-4e30-a937-f288891de9d5_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; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same first party: , , , result, different first party: , , , unsupported: false, false, false, false passed: undefined test failed: true, true, true, true |
write: (secret) => { document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same first party: a2e533c4-2dd6-49e3-8076-8af6c436b065_js, 6ca7d38b-5b34-4764-89fd-8536e320b15d_js, 1ee4b4ff-13e0-4529-9be9-279efa210be6_js, 2bac0ce0-5bdd-46ab-b431-799ca3a6c289_js, bf77a72a-d400-4c8e-9a49-39df3b1eb054_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; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same first party: cefd4548-c20f-4153-8115-7b2d691b42a0_js, 729070d5-2317-42d2-8b8c-e360175cc24f_js, 32f5aa48-975c-4a47-baaf-a05c114d096f_js, 29c2a985-0935-4131-b322-279dc6173e4f_js, 8d2fa17d-f3d5-4308-8cef-59d1e70a16cd_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; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same first party: 9f0b9357-a378-494f-8f86-5d520f418441_js, 93be6a66-4f73-42b4-af8e-ec08ea3034c0_js, 51160da8-e7fc-4e5e-85fa-33d923696e92_js, 4f6b486b-287d-41e2-8204-90f755368ed1_js, 4f7c170c-eb0f-4d6a-927f-c817033dd4c1_js result, different first party: , , , , unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
CookieStore
The 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: e5519e19-3a86-491c-ad7d-877a716f9039, b490967a-09b6-4321-bb08-182238b4a282, 005d1c84-b923-4777-b2b4-646f0f20ac85, 1c2cc545-57f8-49a4-af3f-da8ab9fcfd4e, 250f3351-9ff0-4d54-b53f-bd9b54354c78 result, different first party: , , , , unsupported: false, false, false, false, false passed: true, true, true, true, true 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: e7bebf0a-9623-4709-b481-47a318b6f037, e4ef1561-018c-4570-b984-47b3c459b7eb, 3c678a65-4546-4a33-a7d6-dcb258964678, 80255f8c-1cdb-4b4d-8935-b12be3c4f16b, 2d52c277-29ba-4fc1-bb25-d9dcb805bd07 result, different first party: , , , , unsupported: false, false, false, false, false passed: true, true, true, true, true 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: daf90757-b1f7-418e-ab53-dbd391820218, d1be8c6c-510b-49ec-aef7-af0dab3c09ed, 1e68e254-000a-45e1-b022-2c599a737ccb, b6dff3a4-a6da-440a-bd7d-652bc0c1c5fe, b9d20250-6980-45c4-91c6-154aa4f0c059 result, different first party: , , , , unsupported: false, false, false, false, false passed: true, true, true, true, true 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: 8d9b75ae-6d01-4ffe-bedb-4aa3d9d44eb3, 81a2c55d-d252-4212-be43-7d64517376bd, 23601d7c-fb58-46da-b073-4d037b065160, 0f10a8af-da07-4a33-aa45-29da6b03cd78 result, different first party: Error: Type error, Error: Type error, Error: Type error, Error: Type error unsupported: false, false, false, false passed: true, true, true, true test failed: 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: aa29142e-96b1-4b0b-bb8d-d330211d46ef, da550f8c-d76f-43c5-b569-cad1c27dd80e, 83d9b3d1-37fa-4ccf-8382-1e5211bfba71, 2889d794-dda8-4e69-9e11-699d711a082a, 09030978-b29b-4401-8d9e-20a51d44dbf6 result, different first party: , , , , unsupported: false, false, false, false, false passed: true, true, true, true, true 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: 2d6c06b3-69f7-4a25-a0e2-d98293c8419d, b4645eec-b868-4ab5-849a-b17fb56c62a9, 66d28c1e-d1e1-4c74-9e22-f23f4af78732, 7ad596ca-c6e2-45d9-8ee7-cc28f4f96ddd, abb50bae-7cfe-4c12-9cfe-ed946879d183 result, different first party: , , , , unsupported: false, false, false, false, false passed: true, true, true, true, true 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: ef0aa6ec-38e4-4764-bbd1-82dd11445c24, 7baf3bd2-f78f-4a04-a7df-6ef4243b9518, e991020d-3edf-48c9-bdcc-128c1222f27a, d1773dbb-1a5e-43e5-88dd-bc966d9f9c3d, de547874-ab8b-4bde-a5c5-e795e586e73e result, different first party: , , , , unsupported: false, false, false, false, false passed: true, true, true, true, true 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: 68ee9f0e-bffd-4faf-9d8f-fc06949ec786, ed81b5e3-5587-4800-a244-a0dfd866fb3b, 024116c3-ae0b-4da8-9a6d-8c4163baf033, 565bfeb6-fe62-4ebb-b63c-ab32b0934145, 1158aebf-466f-4e30-a937-f288891de9d5 result, different first party: , , , , unsupported: false, false, false, false, false passed: true, true, true, true, true 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: , , , result, different first party: Error: Type error, Error: Type error, Error: Type error, Error: Type error unsupported: false, false, false, false passed: undefined test failed: true, true, true, true |
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: cefd4548-c20f-4153-8115-7b2d691b42a0, 729070d5-2317-42d2-8b8c-e360175cc24f, 32f5aa48-975c-4a47-baaf-a05c114d096f, 29c2a985-0935-4131-b322-279dc6173e4f, 8d2fa17d-f3d5-4308-8cef-59d1e70a16cd result, different first party: , , , , unsupported: false, false, false, false, false passed: true, true, true, true, true 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: 9f0b9357-a378-494f-8f86-5d520f418441, 93be6a66-4f73-42b4-af8e-ec08ea3034c0, 51160da8-e7fc-4e5e-85fa-33d923696e92, 4f6b486b-287d-41e2-8204-90f755368ed1, 4f7c170c-eb0f-4d6a-927f-c817033dd4c1 result, different first party: , , , , unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
CSS cache
CSS 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_331128531019552, fake_7395617020402794, fake_4214449114682648, fake_339763703225215, fake_9538565673435355 result, different first party: fake_8137853868437539, fake_9000952802522448, fake_9849729432496335, fake_8973022324543778, fake_16053598595922458 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_8325541926784326, fake_9636626764814127, fake_9864339736594767, fake_13986225417869336, fake_47333141044135174 result, different first party: fake_1536770947490118, fake_640339922237807, fake_6952146082827608, fake_21480840568478965, fake_29702512296390804 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_7235906417523974, fake_4357318591137831, fake_4517324791231019, fake_8956368883900045, fake_007486722126759826 result, different first party: fake_813241913889809, fake_5447780112783669, fake_6103598595145105, fake_06085739986447036, fake_8665485414093304 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_2857107844019744, fake_995959286627659, fake_796342068469003, fake_17814831399694775 result, different first party: fake_4398024828666913, fake_10810757625574619, fake_5977748577914623, fake_431976963224741 unsupported: false, false, false, false passed: true, true, true, true test failed: 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_5734023448092282, fake_09826217920319613, fake_9001907871422234, fake_5000025583563821, fake_09116599495302968 result, different first party: fake_606917705578385, fake_7408346958447194, fake_09021223409966317, fake_2655596481941094, fake_4536495654069945 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_9341611574214326, fake_8683824783711118, fake_26227730358968904, fake_7901610684294611, fake_9285673590905075 result, different first party: fake_42537222726126034, fake_02148792165639435, fake_8367769774417158, fake_8165713297812969, fake_6368077073941865 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_08337215332365377, fake_8515689091464018, fake_2839520778834985, fake_17131535393580277, fake_5678264272684956 result, different first party: fake_36564795866744326, fake_9428734843410795, fake_6506354985691192, fake_8180641617540005, fake_4540965479633805 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_15170955949612996, fake_07994270707450646, fake_6938546839397626, fake_10716666286248633, fake_6861856907859463 result, different first party: fake_45671245600609867, fake_45922285087537995, fake_494585590842475, fake_5962379455917011, fake_939518642997208 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_29673735506028365, fake_8875254598388991, fake_6220673301200219, fake_8179996852413789, fake_8737758656814782 result, different first party: fake_5669152688565362, fake_10526191915389971, fake_99088589352579, fake_581888657342345, fake_2530112462005383 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_517514701377874, fake_14793135087118192, fake_022255723129130045, fake_2654169448476287 result, different first party: fake_789246354327708, fake_5064581526331293, fake_32485117318108836, fake_42325153949610717 unsupported: false, false, false, false passed: true, true, true, true test failed: 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_8068937206141384, fake_35940000277520157, fake_10910568792252562, fake_735316413802179, fake_11639056204376197 result, different first party: fake_610910715127366, fake_016027871365206003, fake_6728788064639886, fake_8153846851803042, fake_12723945716212182 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_6102567398702283, fake_5689329819683429, fake_21340385171906373, fake_07543085962409957, fake_7734109476718811 result, different first party: fake_9493286446823006, fake_9292509387123622, fake_6046859658621064, fake_5253816637185391, fake_5307851669415009 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_7373939132286564, fake_4478130503120801, fake_5085198990860593, fake_01292280207877372, fake_9976880801416335 result, different first party: fake_7582538766255373, fake_02632856550371887, fake_7493233925401968, fake_8701382921064575, fake_11375088853508108 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
favicon cache
A 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(2000); 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(2000); 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(2000); 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(2000); 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 result, different first party: 1, 1, 1, 1 unsupported: false, false, false, false passed: false, false, false, false test failed: false, false, false, false |
write: (key) => key read: async (key) => { // Wait for the favicon to load (defined in supercookies.html) await sleepMs(2000); 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(2000); 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(2000); 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(2000); 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(2000); 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(2000); 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 result, different first party: 2, 2, 2, 2 unsupported: false, false, false, false passed: true, true, true, true test failed: false, false, false, false |
write: (key) => key read: async (key) => { // Wait for the favicon to load (defined in supercookies.html) await sleepMs(2000); 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(2000); 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(2000); 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: 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 |
fetch cache
When 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 result, different first party: 2, 2, 2, 2 unsupported: false, false, false, false passed: true, true, true, true test failed: 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: 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 result, different first party: 3, 3, 3, 3 unsupported: false, false, false, false passed: true, true, true, true test failed: 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 |
font cache
Web 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", 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: 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", 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: 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", 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: 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same first party: 2, 2, 2, 2 result, different first party: 3, 3, 3, 3 unsupported: false, false, false, false passed: true, true, true, true test failed: 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", 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: 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", 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: 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", 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: 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", 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: 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", 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: 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same first party: 2, 2, 2, 2 result, different first party: 3, 3, 3, 3 unsupported: false, false, false, false passed: true, true, true, true test failed: 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", 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: 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", 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: 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", 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 |
getDirectory
navigator.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: e5519e19-3a86-491c-ad7d-877a716f9039, b490967a-09b6-4321-bb08-182238b4a282, 005d1c84-b923-4777-b2b4-646f0f20ac85, 1c2cc545-57f8-49a4-af3f-da8ab9fcfd4e, 250f3351-9ff0-4d54-b53f-bd9b54354c78 result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported unsupported: false, false, false, false, false passed: true, true, true, true, true 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: e7bebf0a-9623-4709-b481-47a318b6f037, e4ef1561-018c-4570-b984-47b3c459b7eb, 3c678a65-4546-4a33-a7d6-dcb258964678, 80255f8c-1cdb-4b4d-8935-b12be3c4f16b, 2d52c277-29ba-4fc1-bb25-d9dcb805bd07 result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported unsupported: false, false, false, false, false passed: true, true, true, true, true 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: daf90757-b1f7-418e-ab53-dbd391820218, d1be8c6c-510b-49ec-aef7-af0dab3c09ed, 1e68e254-000a-45e1-b022-2c599a737ccb, b6dff3a4-a6da-440a-bd7d-652bc0c1c5fe, b9d20250-6980-45c4-91c6-154aa4f0c059 result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported unsupported: false, false, false, false, false passed: true, true, true, true, true 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 unsupported: true, true, true, true passed: undefined test failed: 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: aa29142e-96b1-4b0b-bb8d-d330211d46ef, da550f8c-d76f-43c5-b569-cad1c27dd80e, 83d9b3d1-37fa-4ccf-8382-1e5211bfba71, 2889d794-dda8-4e69-9e11-699d711a082a, 09030978-b29b-4401-8d9e-20a51d44dbf6 result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported unsupported: false, false, false, false, false passed: true, true, true, true, true 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: 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: 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: 68ee9f0e-bffd-4faf-9d8f-fc06949ec786, ed81b5e3-5587-4800-a244-a0dfd866fb3b, 024116c3-ae0b-4da8-9a6d-8c4163baf033, 565bfeb6-fe62-4ebb-b63c-ab32b0934145, 1158aebf-466f-4e30-a937-f288891de9d5 result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported unsupported: false, false, false, false, false passed: true, true, true, true, true 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 result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported unsupported: true, true, true, true passed: undefined test failed: 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: cefd4548-c20f-4153-8115-7b2d691b42a0, 729070d5-2317-42d2-8b8c-e360175cc24f, 32f5aa48-975c-4a47-baaf-a05c114d096f, 29c2a985-0935-4131-b322-279dc6173e4f, 8d2fa17d-f3d5-4308-8cef-59d1e70a16cd result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported unsupported: false, false, false, false, false passed: true, true, true, true, true 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: 9f0b9357-a378-494f-8f86-5d520f418441, 93be6a66-4f73-42b4-af8e-ec08ea3034c0, 51160da8-e7fc-4e5e-85fa-33d923696e92, 4f6b486b-287d-41e2-8204-90f755368ed1, 4f7c170c-eb0f-4d6a-927f-c817033dd4c1 result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
H1 connection
HTTP/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: e5519e19-3a86-491c-ad7d-877a716f9039, b490967a-09b6-4321-bb08-182238b4a282, 005d1c84-b923-4777-b2b4-646f0f20ac85, 1c2cc545-57f8-49a4-af3f-da8ab9fcfd4e, 250f3351-9ff0-4d54-b53f-bd9b54354c78 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: e7bebf0a-9623-4709-b481-47a318b6f037, e4ef1561-018c-4570-b984-47b3c459b7eb, 3c678a65-4546-4a33-a7d6-dcb258964678, 80255f8c-1cdb-4b4d-8935-b12be3c4f16b, 2d52c277-29ba-4fc1-bb25-d9dcb805bd07 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: daf90757-b1f7-418e-ab53-dbd391820218, d1be8c6c-510b-49ec-aef7-af0dab3c09ed, 1e68e254-000a-45e1-b022-2c599a737ccb, b6dff3a4-a6da-440a-bd7d-652bc0c1c5fe, b9d20250-6980-45c4-91c6-154aa4f0c059 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: 8d9b75ae-6d01-4ffe-bedb-4aa3d9d44eb3, 81a2c55d-d252-4212-be43-7d64517376bd, 23601d7c-fb58-46da-b073-4d037b065160, 0f10a8af-da07-4a33-aa45-29da6b03cd78 result, different first party: , , , unsupported: false, false, false, false passed: true, true, true, true test failed: 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: aa29142e-96b1-4b0b-bb8d-d330211d46ef, da550f8c-d76f-43c5-b569-cad1c27dd80e, 83d9b3d1-37fa-4ccf-8382-1e5211bfba71, 2889d794-dda8-4e69-9e11-699d711a082a, 09030978-b29b-4401-8d9e-20a51d44dbf6 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: 2d6c06b3-69f7-4a25-a0e2-d98293c8419d, b4645eec-b868-4ab5-849a-b17fb56c62a9, 66d28c1e-d1e1-4c74-9e22-f23f4af78732, 7ad596ca-c6e2-45d9-8ee7-cc28f4f96ddd, abb50bae-7cfe-4c12-9cfe-ed946879d183 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: ef0aa6ec-38e4-4764-bbd1-82dd11445c24, 7baf3bd2-f78f-4a04-a7df-6ef4243b9518, e991020d-3edf-48c9-bdcc-128c1222f27a, d1773dbb-1a5e-43e5-88dd-bc966d9f9c3d, de547874-ab8b-4bde-a5c5-e795e586e73e 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: fbe3ef70-c9b4-4ecb-bd0f-8b33439ab656, f9315ed5-a4a9-4c27-9eda-378b8f0d3b7c, 82349fff-73dc-4999-be06-bc5ef0f05c9c, f6446da3-cde1-4b2c-9fb6-95cfe0df79b0, b2ca5b88-cb93-40cf-8e19-e396f306d991 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: 68ee9f0e-bffd-4faf-9d8f-fc06949ec786, ed81b5e3-5587-4800-a244-a0dfd866fb3b, 024116c3-ae0b-4da8-9a6d-8c4163baf033, 565bfeb6-fe62-4ebb-b63c-ab32b0934145, 1158aebf-466f-4e30-a937-f288891de9d5 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: , , , result, different first party: , , , unsupported: false, false, false, false passed: undefined test failed: true, true, true, true |
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: a2e533c4-2dd6-49e3-8076-8af6c436b065, 6ca7d38b-5b34-4764-89fd-8536e320b15d, 1ee4b4ff-13e0-4529-9be9-279efa210be6, 2bac0ce0-5bdd-46ab-b431-799ca3a6c289, bf77a72a-d400-4c8e-9a49-39df3b1eb054 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: cefd4548-c20f-4153-8115-7b2d691b42a0, 729070d5-2317-42d2-8b8c-e360175cc24f, 32f5aa48-975c-4a47-baaf-a05c114d096f, 29c2a985-0935-4131-b322-279dc6173e4f, 8d2fa17d-f3d5-4308-8cef-59d1e70a16cd 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: 9f0b9357-a378-494f-8f86-5d520f418441, 93be6a66-4f73-42b4-af8e-ec08ea3034c0, 51160da8-e7fc-4e5e-85fa-33d923696e92, 4f6b486b-287d-41e2-8204-90f755368ed1, 4f7c170c-eb0f-4d6a-927f-c817033dd4c1 result, different first party: , , , , unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
H2 connection
HTTP/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: e5519e19-3a86-491c-ad7d-877a716f9039, b490967a-09b6-4321-bb08-182238b4a282, 005d1c84-b923-4777-b2b4-646f0f20ac85, 1c2cc545-57f8-49a4-af3f-da8ab9fcfd4e, 250f3351-9ff0-4d54-b53f-bd9b54354c78 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: e7bebf0a-9623-4709-b481-47a318b6f037, e4ef1561-018c-4570-b984-47b3c459b7eb, 3c678a65-4546-4a33-a7d6-dcb258964678, 80255f8c-1cdb-4b4d-8935-b12be3c4f16b, 2d52c277-29ba-4fc1-bb25-d9dcb805bd07 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: daf90757-b1f7-418e-ab53-dbd391820218, d1be8c6c-510b-49ec-aef7-af0dab3c09ed, 1e68e254-000a-45e1-b022-2c599a737ccb, b6dff3a4-a6da-440a-bd7d-652bc0c1c5fe, b9d20250-6980-45c4-91c6-154aa4f0c059 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: 8d9b75ae-6d01-4ffe-bedb-4aa3d9d44eb3, 81a2c55d-d252-4212-be43-7d64517376bd, 23601d7c-fb58-46da-b073-4d037b065160, 0f10a8af-da07-4a33-aa45-29da6b03cd78 result, different first party: , , , unsupported: false, false, false, false passed: true, true, true, true test failed: 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: aa29142e-96b1-4b0b-bb8d-d330211d46ef, da550f8c-d76f-43c5-b569-cad1c27dd80e, 83d9b3d1-37fa-4ccf-8382-1e5211bfba71, 2889d794-dda8-4e69-9e11-699d711a082a, 09030978-b29b-4401-8d9e-20a51d44dbf6 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: 2d6c06b3-69f7-4a25-a0e2-d98293c8419d, b4645eec-b868-4ab5-849a-b17fb56c62a9, 66d28c1e-d1e1-4c74-9e22-f23f4af78732, 7ad596ca-c6e2-45d9-8ee7-cc28f4f96ddd, abb50bae-7cfe-4c12-9cfe-ed946879d183 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: ef0aa6ec-38e4-4764-bbd1-82dd11445c24, 7baf3bd2-f78f-4a04-a7df-6ef4243b9518, e991020d-3edf-48c9-bdcc-128c1222f27a, d1773dbb-1a5e-43e5-88dd-bc966d9f9c3d, de547874-ab8b-4bde-a5c5-e795e586e73e 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: fbe3ef70-c9b4-4ecb-bd0f-8b33439ab656, f9315ed5-a4a9-4c27-9eda-378b8f0d3b7c, 82349fff-73dc-4999-be06-bc5ef0f05c9c, f6446da3-cde1-4b2c-9fb6-95cfe0df79b0, b2ca5b88-cb93-40cf-8e19-e396f306d991 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: 68ee9f0e-bffd-4faf-9d8f-fc06949ec786, ed81b5e3-5587-4800-a244-a0dfd866fb3b, 024116c3-ae0b-4da8-9a6d-8c4163baf033, 565bfeb6-fe62-4ebb-b63c-ab32b0934145, 1158aebf-466f-4e30-a937-f288891de9d5 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: , , , result, different first party: , , , unsupported: false, false, false, false passed: undefined test failed: true, true, true, true |
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: a2e533c4-2dd6-49e3-8076-8af6c436b065, 6ca7d38b-5b34-4764-89fd-8536e320b15d, 1ee4b4ff-13e0-4529-9be9-279efa210be6, 2bac0ce0-5bdd-46ab-b431-799ca3a6c289, bf77a72a-d400-4c8e-9a49-39df3b1eb054 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: cefd4548-c20f-4153-8115-7b2d691b42a0, 729070d5-2317-42d2-8b8c-e360175cc24f, 32f5aa48-975c-4a47-baaf-a05c114d096f, 29c2a985-0935-4131-b322-279dc6173e4f, 8d2fa17d-f3d5-4308-8cef-59d1e70a16cd 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: 9f0b9357-a378-494f-8f86-5d520f418441, 93be6a66-4f73-42b4-af8e-ec08ea3034c0, 51160da8-e7fc-4e5e-85fa-33d923696e92, 4f6b486b-287d-41e2-8204-90f755368ed1, 4f7c170c-eb0f-4d6a-927f-c817033dd4c1 result, different first party: , , , , unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
H3 connection
HTTP/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: 5cc3df844a209645f57c1a16948c3447, c3d700a179b3671239eb02bba2d24d72, 7348034d516c9b1d892b18fc9a7224de, 45149f75490dd01c98394a25783471b7, d0ad314db4e6bbbcbc0cc38c37ee15be 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) => { // 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: c6e8eb93e6357b1f17a0ead0e3d95ae1, 73709a1d68863bd062679a4e78c331ec, 4eca199c23e73b71666c197d8fd46927, a18c115456d00a69eba94c31dc0b5ec5, 971a6dc81c070f27c745430fce99f32a 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) => { // 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: 5e302aeb58f7799b336dc981f950c2eb, 12a0e3174bb3124012c4b48ff634db4b, 7a4efe82e71055b6a31d711a7a12ece2, b84def1d39fddb9404b868dfdcb80fe7 result, different first party: c3671be62b661f42aa22e47af9146ae2, fff5047fb823a66644b48b05f4c28583, 1af8661add66cc659617c2aa60c4704c, 6dc86ab29eef6e78b9ed2a48bcf10237 unsupported: false, false, false, false passed: true, true, true, true test failed: 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: 5603a9c0e5237351819d149827dec70a, ed0899c79562197aa94656b75b506295, 97b0cec77a46ea077519db27fdc3e0e2, b7338ca99b61b6f494bd5ea9d4d6935d, 862a21cfefbf256c09300f32af920277 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) => { // 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: a061f423ff987907b9554ff2cb195b85, 4080ae47d7909e19220abf6ad3207cce, edb242ed7efcbb2398e4a8fa8e917a69, 0a6530e1d124448d5e3855f4e186766d, a0ffdafba4835f73291b06eae729f8d6 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) => { // 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: 3b7f99944a9a905eaeebff5e42ff5601, 4d2d81b010fa065d4573206d874fd753, 40ac6326bec87feafd23e68937b4d738, 8409e43abcc3cd65a62b5b4565439d5a, bd3fb9f83a54bb8eb1d370f3382caabf 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) => { // 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: fe83c64257ffc29a530e892843eee3f9, dcb50ba489b549c9bafdd73225de277f, ff5b51fd4cbd7548e620b62d04aa7204, ad23ce2dd85b66125a4706d4c77f0e14, 676823896dc50879d05076b5107d7ebc 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) => { // 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: a25f2add2785f54f5300d76ed683f861, a552247e6fd0d1210549540d2aab6de3, 77b99b69ce265f12b93d24c119548ba2, 43005ae3e24e33739679a4d3667f26a2, 2f28696c266eb0886f6be180084ec825 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) => { // 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 passed: undefined test failed: 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: c07b2f564e8c92e5ffe4a037a9fd5811, ef5605d334bd6b2b98328c5b3eda5ffb, ad28d11893ad0edc5be6a58ebcfc0526, efe7d548c88151aa34679278f9a161dd, 175d3788de6a909b40ca56798b59a8d1 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) => { // 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: f568f405cf477568ab51f276f61d8ae6, 552777ad497fda2536c3e6ca7207d0bf, b7816942f4a9ec636fbc7af7031e95db, 5ca3b6996da2c6619aabcf383252c2c6, 6840a6b6fe67f93c2e28ab69f2084736 result, different first party: , , , , unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
HSTS cache
|
write: null read: null result, same first party: , , , , result, different first party: HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected unsupported: , , , , passed: true, true, true, true, true test failed: false, false, false, false, false |
write: null read: null result, same first party: , , , , result, different first party: HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected unsupported: , , , , passed: true, true, true, true, true test failed: false, false, false, false, false |
write: null read: null result, same first party: , , , , result, different first party: HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected unsupported: , , , , 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 result, different first party: Used http, Used http, Used http, Used http unsupported: false, false, false, false passed: true, true, true, true test failed: false, false, false, false |
write: null read: null result, same first party: , , , , result, different first party: HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected unsupported: , , , , 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: null read: null result, same first party: , , , , result, different first party: HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected unsupported: , , , , passed: true, true, true, true, true test failed: false, false, false, false, false |
write: null read: null result, same first party: , , , , result, different first party: HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected unsupported: , , , , passed: true, true, true, true, true test failed: false, false, false, false, false |
write: null read: null result, same first party: , , , , result, different first party: HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected unsupported: , , , , 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 result, different first party: Used http, Used http, Used http, Used http unsupported: false, false, false, false passed: true, true, true, true test failed: false, false, false, false |
write: null read: null result, same first party: , , , , result, different first party: HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected unsupported: , , , , passed: true, true, true, true, true test failed: false, false, false, false, false |
write: null read: null result, same first party: , , , , result, different first party: HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected unsupported: , , , , passed: true, true, true, true, true test failed: false, false, false, false, false |
write: null read: null result, same first party: , , , , result, different first party: HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected unsupported: , , , , passed: true, true, true, true, true test failed: false, false, false, false, false |
HSTS cache (fetch)
|
write: null read: null result, same first party: , , , , result, different first party: HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected unsupported: , , , , passed: true, true, true, true, true test failed: false, false, false, false, false |
write: null read: null result, same first party: , , , , result, different first party: HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected unsupported: , , , , passed: true, true, true, true, true test failed: false, false, false, false, false |
write: null read: null result, same first party: , , , , result, different first party: HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected unsupported: , , , , 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 result, different first party: Used http, Used http, Used http, Used http unsupported: false, false, false, false passed: true, true, true, true test failed: false, false, false, false |
write: null read: null result, same first party: , , , , result, different first party: HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected unsupported: , , , , 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: null read: null result, same first party: , , , , result, different first party: HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected unsupported: , , , , passed: true, true, true, true, true test failed: false, false, false, false, false |
write: null read: null result, same first party: , , , , result, different first party: HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected unsupported: , , , , passed: true, true, true, true, true test failed: false, false, false, false, false |
write: null read: null result, same first party: , , , , result, different first party: HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected unsupported: , , , , 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 result, different first party: Used http, Used http, Used http, Used http unsupported: false, false, false, false passed: true, true, true, true test failed: false, false, false, false |
write: null read: null result, same first party: , , , , result, different first party: HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected unsupported: , , , , passed: true, true, true, true, true test failed: false, false, false, false, false |
write: null read: null result, same first party: , , , , result, different first party: HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected unsupported: , , , , passed: true, true, true, true, true test failed: false, false, false, false, false |
write: null read: null result, same first party: , , , , result, different first party: HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected, HTTPS used by default; no HSTS cache issue expected unsupported: , , , , passed: true, true, true, true, true test failed: false, false, false, false, false |
iframe cache
An 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 result, different first party: 2, 2, 2, 2 unsupported: false, false, false, false passed: true, true, true, true test failed: 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: 2, 2, 2, 2 result, different first party: 3, 3, 3, 3 unsupported: false, false, false, false passed: true, true, true, true test failed: 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 cache
Caching 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: 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 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: 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 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: 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 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 result, different first party: 3, 3, 3, 3 unsupported: false, false, false, false passed: true, true, true, true test failed: 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: 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 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: 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 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: 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 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: 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 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: 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 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 result, different first party: 3, 3, 3, 3 unsupported: false, false, false, false passed: true, true, true, true test failed: 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: 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 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: 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 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: 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 |
indexedDB
The 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: e5519e19-3a86-491c-ad7d-877a716f9039, b490967a-09b6-4321-bb08-182238b4a282, 005d1c84-b923-4777-b2b4-646f0f20ac85, 1c2cc545-57f8-49a4-af3f-da8ab9fcfd4e, 250f3351-9ff0-4d54-b53f-bd9b54354c78 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: e7bebf0a-9623-4709-b481-47a318b6f037, e4ef1561-018c-4570-b984-47b3c459b7eb, 3c678a65-4546-4a33-a7d6-dcb258964678, 80255f8c-1cdb-4b4d-8935-b12be3c4f16b, 2d52c277-29ba-4fc1-bb25-d9dcb805bd07 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: daf90757-b1f7-418e-ab53-dbd391820218, d1be8c6c-510b-49ec-aef7-af0dab3c09ed, 1e68e254-000a-45e1-b022-2c599a737ccb, b6dff3a4-a6da-440a-bd7d-652bc0c1c5fe, b9d20250-6980-45c4-91c6-154aa4f0c059 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: 8d9b75ae-6d01-4ffe-bedb-4aa3d9d44eb3, 81a2c55d-d252-4212-be43-7d64517376bd, 23601d7c-fb58-46da-b073-4d037b065160, 0f10a8af-da07-4a33-aa45-29da6b03cd78 result, different first party: undefined unsupported: false, false, false, false passed: true, true, true, true test failed: 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: aa29142e-96b1-4b0b-bb8d-d330211d46ef, da550f8c-d76f-43c5-b569-cad1c27dd80e, 83d9b3d1-37fa-4ccf-8382-1e5211bfba71, 2889d794-dda8-4e69-9e11-699d711a082a, 09030978-b29b-4401-8d9e-20a51d44dbf6 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: 2d6c06b3-69f7-4a25-a0e2-d98293c8419d, b4645eec-b868-4ab5-849a-b17fb56c62a9, 66d28c1e-d1e1-4c74-9e22-f23f4af78732, 7ad596ca-c6e2-45d9-8ee7-cc28f4f96ddd, abb50bae-7cfe-4c12-9cfe-ed946879d183 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: ef0aa6ec-38e4-4764-bbd1-82dd11445c24, 7baf3bd2-f78f-4a04-a7df-6ef4243b9518, e991020d-3edf-48c9-bdcc-128c1222f27a, d1773dbb-1a5e-43e5-88dd-bc966d9f9c3d, de547874-ab8b-4bde-a5c5-e795e586e73e 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: fbe3ef70-c9b4-4ecb-bd0f-8b33439ab656, f9315ed5-a4a9-4c27-9eda-378b8f0d3b7c, 82349fff-73dc-4999-be06-bc5ef0f05c9c, f6446da3-cde1-4b2c-9fb6-95cfe0df79b0, b2ca5b88-cb93-40cf-8e19-e396f306d991 result, different first party: Error: IDBFactory.open: The operation is insecure, Error: IDBFactory.open: The operation is insecure, Error: IDBFactory.open: The operation is insecure, Error: IDBFactory.open: The operation is insecure, Error: IDBFactory.open: The operation is insecure 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: 68ee9f0e-bffd-4faf-9d8f-fc06949ec786, ed81b5e3-5587-4800-a244-a0dfd866fb3b, 024116c3-ae0b-4da8-9a6d-8c4163baf033, 565bfeb6-fe62-4ebb-b63c-ab32b0934145, 1158aebf-466f-4e30-a937-f288891de9d5 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: undefined result, different first party: undefined unsupported: false, false, false, false passed: undefined test failed: true, true, true, true |
write: async (secret) => { try { return await IdbKeyVal.set("secret", secret); } catch (e) { throw new Error("Unsupported"); } } read: () => IdbKeyVal.get("secret") result, same first party: a2e533c4-2dd6-49e3-8076-8af6c436b065, 6ca7d38b-5b34-4764-89fd-8536e320b15d, 1ee4b4ff-13e0-4529-9be9-279efa210be6, 2bac0ce0-5bdd-46ab-b431-799ca3a6c289, bf77a72a-d400-4c8e-9a49-39df3b1eb054 result, different first party: Error: IDBFactory.open: The operation is insecure, Error: IDBFactory.open: The operation is insecure, Error: IDBFactory.open: The operation is insecure, Error: IDBFactory.open: The operation is insecure, Error: IDBFactory.open: The operation is insecure 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: cefd4548-c20f-4153-8115-7b2d691b42a0, 729070d5-2317-42d2-8b8c-e360175cc24f, 32f5aa48-975c-4a47-baaf-a05c114d096f, 29c2a985-0935-4131-b322-279dc6173e4f, 8d2fa17d-f3d5-4308-8cef-59d1e70a16cd 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: 9f0b9357-a378-494f-8f86-5d520f418441, 93be6a66-4f73-42b4-af8e-ec08ea3034c0, 51160da8-e7fc-4e5e-85fa-33d923696e92, 4f6b486b-287d-41e2-8204-90f755368ed1, 4f7c170c-eb0f-4d6a-927f-c817033dd4c1 result, different first party: undefined unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
localStorage
The 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: e5519e19-3a86-491c-ad7d-877a716f9039, b490967a-09b6-4321-bb08-182238b4a282, 005d1c84-b923-4777-b2b4-646f0f20ac85, 1c2cc545-57f8-49a4-af3f-da8ab9fcfd4e, 250f3351-9ff0-4d54-b53f-bd9b54354c78 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: e7bebf0a-9623-4709-b481-47a318b6f037, e4ef1561-018c-4570-b984-47b3c459b7eb, 3c678a65-4546-4a33-a7d6-dcb258964678, 80255f8c-1cdb-4b4d-8935-b12be3c4f16b, 2d52c277-29ba-4fc1-bb25-d9dcb805bd07 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: daf90757-b1f7-418e-ab53-dbd391820218, d1be8c6c-510b-49ec-aef7-af0dab3c09ed, 1e68e254-000a-45e1-b022-2c599a737ccb, b6dff3a4-a6da-440a-bd7d-652bc0c1c5fe, b9d20250-6980-45c4-91c6-154aa4f0c059 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: 8d9b75ae-6d01-4ffe-bedb-4aa3d9d44eb3, 81a2c55d-d252-4212-be43-7d64517376bd, 23601d7c-fb58-46da-b073-4d037b065160, 0f10a8af-da07-4a33-aa45-29da6b03cd78 result, different first party: , , , unsupported: false, false, false, false passed: true, true, true, true test failed: false, false, false, false |
write: (secret) => localStorage.setItem("secret", secret) read: () => localStorage.getItem("secret") result, same first party: aa29142e-96b1-4b0b-bb8d-d330211d46ef, da550f8c-d76f-43c5-b569-cad1c27dd80e, 83d9b3d1-37fa-4ccf-8382-1e5211bfba71, 2889d794-dda8-4e69-9e11-699d711a082a, 09030978-b29b-4401-8d9e-20a51d44dbf6 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: 2d6c06b3-69f7-4a25-a0e2-d98293c8419d, b4645eec-b868-4ab5-849a-b17fb56c62a9, 66d28c1e-d1e1-4c74-9e22-f23f4af78732, 7ad596ca-c6e2-45d9-8ee7-cc28f4f96ddd, abb50bae-7cfe-4c12-9cfe-ed946879d183 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: ef0aa6ec-38e4-4764-bbd1-82dd11445c24, 7baf3bd2-f78f-4a04-a7df-6ef4243b9518, e991020d-3edf-48c9-bdcc-128c1222f27a, d1773dbb-1a5e-43e5-88dd-bc966d9f9c3d, de547874-ab8b-4bde-a5c5-e795e586e73e 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: fbe3ef70-c9b4-4ecb-bd0f-8b33439ab656, f9315ed5-a4a9-4c27-9eda-378b8f0d3b7c, 82349fff-73dc-4999-be06-bc5ef0f05c9c, f6446da3-cde1-4b2c-9fb6-95cfe0df79b0, b2ca5b88-cb93-40cf-8e19-e396f306d991 result, different first party: Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure. 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: 68ee9f0e-bffd-4faf-9d8f-fc06949ec786, ed81b5e3-5587-4800-a244-a0dfd866fb3b, 024116c3-ae0b-4da8-9a6d-8c4163baf033, 565bfeb6-fe62-4ebb-b63c-ab32b0934145, 1158aebf-466f-4e30-a937-f288891de9d5 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: , , , result, different first party: , , , unsupported: false, false, false, false passed: undefined test failed: true, true, true, true |
write: (secret) => localStorage.setItem("secret", secret) read: () => localStorage.getItem("secret") result, same first party: a2e533c4-2dd6-49e3-8076-8af6c436b065, 6ca7d38b-5b34-4764-89fd-8536e320b15d, 1ee4b4ff-13e0-4529-9be9-279efa210be6, 2bac0ce0-5bdd-46ab-b431-799ca3a6c289, bf77a72a-d400-4c8e-9a49-39df3b1eb054 result, different first party: Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure. 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: cefd4548-c20f-4153-8115-7b2d691b42a0, 729070d5-2317-42d2-8b8c-e360175cc24f, 32f5aa48-975c-4a47-baaf-a05c114d096f, 29c2a985-0935-4131-b322-279dc6173e4f, 8d2fa17d-f3d5-4308-8cef-59d1e70a16cd 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: 9f0b9357-a378-494f-8f86-5d520f418441, 93be6a66-4f73-42b4-af8e-ec08ea3034c0, 51160da8-e7fc-4e5e-85fa-33d923696e92, 4f6b486b-287d-41e2-8204-90f755368ed1, 4f7c170c-eb0f-4d6a-927f-c817033dd4c1 result, different first party: , , , , unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
locks
navigator.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: e5519e19-3a86-491c-ad7d-877a716f9039, b490967a-09b6-4321-bb08-182238b4a282, 005d1c84-b923-4777-b2b4-646f0f20ac85, 1c2cc545-57f8-49a4-af3f-da8ab9fcfd4e, 250f3351-9ff0-4d54-b53f-bd9b54354c78 result, different first party: Error: Cannot read properties of undefined (reading 'name'), Error: Cannot read properties of undefined (reading 'name'), Error: Cannot read properties of undefined (reading 'name'), Error: Cannot read properties of undefined (reading 'name'), Error: Cannot read properties of undefined (reading '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: e7bebf0a-9623-4709-b481-47a318b6f037, e4ef1561-018c-4570-b984-47b3c459b7eb, 3c678a65-4546-4a33-a7d6-dcb258964678, 80255f8c-1cdb-4b4d-8935-b12be3c4f16b, 2d52c277-29ba-4fc1-bb25-d9dcb805bd07 result, different first party: Error: Cannot read properties of undefined (reading 'name'), Error: Cannot read properties of undefined (reading 'name'), Error: Cannot read properties of undefined (reading 'name'), Error: Cannot read properties of undefined (reading 'name'), Error: Cannot read properties of undefined (reading '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: daf90757-b1f7-418e-ab53-dbd391820218, d1be8c6c-510b-49ec-aef7-af0dab3c09ed, 1e68e254-000a-45e1-b022-2c599a737ccb, b6dff3a4-a6da-440a-bd7d-652bc0c1c5fe, b9d20250-6980-45c4-91c6-154aa4f0c059 result, different first party: Error: Cannot read properties of undefined (reading 'name'), Error: Cannot read properties of undefined (reading 'name'), Error: Cannot read properties of undefined (reading 'name'), Error: Cannot read properties of undefined (reading 'name'), Error: Cannot read properties of undefined (reading '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: 8d9b75ae-6d01-4ffe-bedb-4aa3d9d44eb3, 81a2c55d-d252-4212-be43-7d64517376bd, 23601d7c-fb58-46da-b073-4d037b065160, 0f10a8af-da07-4a33-aa45-29da6b03cd78 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') unsupported: false, false, false, false passed: true, true, true, true test failed: 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: aa29142e-96b1-4b0b-bb8d-d330211d46ef, da550f8c-d76f-43c5-b569-cad1c27dd80e, 83d9b3d1-37fa-4ccf-8382-1e5211bfba71, 2889d794-dda8-4e69-9e11-699d711a082a, 09030978-b29b-4401-8d9e-20a51d44dbf6 result, different first party: Error: Cannot read properties of undefined (reading 'name'), Error: Cannot read properties of undefined (reading 'name'), Error: Cannot read properties of undefined (reading 'name'), Error: Cannot read properties of undefined (reading 'name'), Error: Cannot read properties of undefined (reading '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: 2d6c06b3-69f7-4a25-a0e2-d98293c8419d, b4645eec-b868-4ab5-849a-b17fb56c62a9, 66d28c1e-d1e1-4c74-9e22-f23f4af78732, 7ad596ca-c6e2-45d9-8ee7-cc28f4f96ddd, abb50bae-7cfe-4c12-9cfe-ed946879d183 result, different first party: Error: LockManager.query: query() is not allowed in this context, Error: LockManager.query: query() is not allowed in this context, Error: LockManager.query: query() is not allowed in this context, Error: LockManager.query: query() is not allowed in this context, Error: LockManager.query: query() is not allowed in this context 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: ef0aa6ec-38e4-4764-bbd1-82dd11445c24, 7baf3bd2-f78f-4a04-a7df-6ef4243b9518, e991020d-3edf-48c9-bdcc-128c1222f27a, d1773dbb-1a5e-43e5-88dd-bc966d9f9c3d, de547874-ab8b-4bde-a5c5-e795e586e73e result, different first party: Error: LockManager.query: query() is not allowed in this context, Error: LockManager.query: query() is not allowed in this context, Error: LockManager.query: query() is not allowed in this context, Error: LockManager.query: query() is not allowed in this context, Error: LockManager.query: query() is not allowed in this context 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: fbe3ef70-c9b4-4ecb-bd0f-8b33439ab656, f9315ed5-a4a9-4c27-9eda-378b8f0d3b7c, 82349fff-73dc-4999-be06-bc5ef0f05c9c, f6446da3-cde1-4b2c-9fb6-95cfe0df79b0, b2ca5b88-cb93-40cf-8e19-e396f306d991 result, different first party: Error: LockManager.query: query() is not allowed in this context, Error: LockManager.query: query() is not allowed in this context, Error: LockManager.query: query() is not allowed in this context, Error: LockManager.query: query() is not allowed in this context, Error: LockManager.query: query() is not allowed in this context 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: 68ee9f0e-bffd-4faf-9d8f-fc06949ec786, ed81b5e3-5587-4800-a244-a0dfd866fb3b, 024116c3-ae0b-4da8-9a6d-8c4163baf033, 565bfeb6-fe62-4ebb-b63c-ab32b0934145, 1158aebf-466f-4e30-a937-f288891de9d5 result, different first party: Error: Cannot read properties of undefined (reading 'name'), Error: Cannot read properties of undefined (reading 'name'), Error: Cannot read properties of undefined (reading 'name'), Error: Cannot read properties of undefined (reading 'name'), Error: Cannot read properties of undefined (reading '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') 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') unsupported: false, false, false, false passed: undefined test failed: 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: a2e533c4-2dd6-49e3-8076-8af6c436b065, 6ca7d38b-5b34-4764-89fd-8536e320b15d, 1ee4b4ff-13e0-4529-9be9-279efa210be6, 2bac0ce0-5bdd-46ab-b431-799ca3a6c289, bf77a72a-d400-4c8e-9a49-39df3b1eb054 result, different first party: Error: LockManager.query: query() is not allowed in this context, Error: LockManager.query: query() is not allowed in this context, Error: LockManager.query: query() is not allowed in this context, Error: LockManager.query: query() is not allowed in this context, Error: LockManager.query: query() is not allowed in this context 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: cefd4548-c20f-4153-8115-7b2d691b42a0, 729070d5-2317-42d2-8b8c-e360175cc24f, 32f5aa48-975c-4a47-baaf-a05c114d096f, 29c2a985-0935-4131-b322-279dc6173e4f, 8d2fa17d-f3d5-4308-8cef-59d1e70a16cd result, different first party: Error: Cannot read properties of undefined (reading 'name'), Error: Cannot read properties of undefined (reading 'name'), Error: Cannot read properties of undefined (reading 'name'), Error: Cannot read properties of undefined (reading 'name'), Error: Cannot read properties of undefined (reading '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: 9f0b9357-a378-494f-8f86-5d520f418441, 93be6a66-4f73-42b4-af8e-ec08ea3034c0, 51160da8-e7fc-4e5e-85fa-33d923696e92, 4f6b486b-287d-41e2-8204-90f755368ed1, 4f7c170c-eb0f-4d6a-927f-c817033dd4c1 result, different first party: Error: Cannot read properties of undefined (reading 'name'), Error: Cannot read properties of undefined (reading 'name'), Error: Cannot read properties of undefined (reading 'name'), Error: Cannot read properties of undefined (reading 'name'), Error: Cannot read properties of undefined (reading 'name') unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
prefetch cache
A <link rel='prefetch'...> 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: 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 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: 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 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: 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 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 result, different first party: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received unsupported: true, true, true, true passed: undefined test failed: 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: 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 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: 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 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: 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 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 result, different first party: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received unsupported: true, true, true, true passed: undefined test failed: 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: 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 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: 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 |
script cache
Caching of scripts 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same first party: 2, 2, 2, 2 result, different first party: 3, 3, 3, 3 unsupported: false, false, false, false passed: true, true, true, true test failed: false, false, false, false |
write: (key) => new Promise((resolve, reject) => { let script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same first party: 2, 2, 2, 2 result, different first party: 3, 3, 3, 3 unsupported: false, false, false, false passed: true, true, true, true test failed: false, false, false, false |
write: (key) => new Promise((resolve, reject) => { let script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", 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 |
ServiceWorker
The 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: <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> , <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> , <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> , <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> , <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> 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 (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: <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> , <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> , <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> , <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> , <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> result, different first party: Error: ServiceWorker registration failed, , Error: ServiceWorker registration failed, , unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
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: <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> , <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> , <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> , <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> , <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> 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 (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 passed: undefined test failed: 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: <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> , <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> , <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> , <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> , <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> 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 (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: Error: navigator.serviceWorker is undefined, Error: navigator.serviceWorker is undefined, Error: navigator.serviceWorker is undefined, Error: navigator.serviceWorker is undefined, Error: navigator.serviceWorker is undefined result, different first party: Error: navigator.serviceWorker is undefined, Error: navigator.serviceWorker is undefined, Error: navigator.serviceWorker is undefined, Error: navigator.serviceWorker is undefined, Error: navigator.serviceWorker is undefined unsupported: true, true, true, true, true passed: undefined test failed: false, false, false, false, false |
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: <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> , <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> , <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> , <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> , <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> 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 (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 passed: undefined test failed: 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: Error: navigator.serviceWorker is undefined, Error: navigator.serviceWorker is undefined, Error: navigator.serviceWorker is undefined, Error: navigator.serviceWorker is undefined, Error: navigator.serviceWorker is undefined result, different first party: Error: navigator.serviceWorker is undefined, Error: navigator.serviceWorker is undefined, Error: navigator.serviceWorker is undefined, Error: navigator.serviceWorker is undefined, Error: navigator.serviceWorker is undefined unsupported: true, true, true, true, true passed: undefined test failed: false, false, false, false, false |
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: <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> , <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> , <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> , <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> , <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> 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 (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: <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> , <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> , <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> , <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> , <html> <head><title>404 Not Found</title></head> <body> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.24.0 (Ubuntu)</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> result, different first party: , , , , unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
SharedWorker
The 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"); const message = await messagePromise; if (message === "none") { throw new Error("Unsupported"); } return message; } result, same first party: e5519e19-3a86-491c-ad7d-877a716f9039, b490967a-09b6-4321-bb08-182238b4a282, 005d1c84-b923-4777-b2b4-646f0f20ac85, 1c2cc545-57f8-49a4-af3f-da8ab9fcfd4e, 250f3351-9ff0-4d54-b53f-bd9b54354c78 result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported 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"); const message = await messagePromise; if (message === "none") { throw new Error("Unsupported"); } return message; } result, same first party: e7bebf0a-9623-4709-b481-47a318b6f037, e4ef1561-018c-4570-b984-47b3c459b7eb, 3c678a65-4546-4a33-a7d6-dcb258964678, 80255f8c-1cdb-4b4d-8935-b12be3c4f16b, 2d52c277-29ba-4fc1-bb25-d9dcb805bd07 result, different first party: Error: no SharedWorker message received, Error: no SharedWorker message received, Error: no SharedWorker message received, Error: no SharedWorker message received, Error: no SharedWorker message received 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"); const message = await messagePromise; if (message === "none") { throw new Error("Unsupported"); } return message; } result, same first party: daf90757-b1f7-418e-ab53-dbd391820218, d1be8c6c-510b-49ec-aef7-af0dab3c09ed, 1e68e254-000a-45e1-b022-2c599a737ccb, b6dff3a4-a6da-440a-bd7d-652bc0c1c5fe, b9d20250-6980-45c4-91c6-154aa4f0c059 result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported 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"); const message = await messagePromise; if (message === "none") { throw new Error("Unsupported"); } return message; } result, same first party: 8d9b75ae-6d01-4ffe-bedb-4aa3d9d44eb3, 81a2c55d-d252-4212-be43-7d64517376bd, 23601d7c-fb58-46da-b073-4d037b065160, 0f10a8af-da07-4a33-aa45-29da6b03cd78 result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported unsupported: false, false, false, false passed: true, true, true, true test failed: 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"); const message = await messagePromise; if (message === "none") { throw new Error("Unsupported"); } return message; } result, same first party: aa29142e-96b1-4b0b-bb8d-d330211d46ef, da550f8c-d76f-43c5-b569-cad1c27dd80e, 83d9b3d1-37fa-4ccf-8382-1e5211bfba71, 2889d794-dda8-4e69-9e11-699d711a082a, 09030978-b29b-4401-8d9e-20a51d44dbf6 result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported 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"); const message = await messagePromise; if (message === "none") { throw new Error("Unsupported"); } return message; } result, same first party: 2d6c06b3-69f7-4a25-a0e2-d98293c8419d, b4645eec-b868-4ab5-849a-b17fb56c62a9, 66d28c1e-d1e1-4c74-9e22-f23f4af78732, 7ad596ca-c6e2-45d9-8ee7-cc28f4f96ddd, abb50bae-7cfe-4c12-9cfe-ed946879d183 result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported 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"); const message = await messagePromise; if (message === "none") { throw new Error("Unsupported"); } return message; } result, same first party: ef0aa6ec-38e4-4764-bbd1-82dd11445c24, 7baf3bd2-f78f-4a04-a7df-6ef4243b9518, e991020d-3edf-48c9-bdcc-128c1222f27a, d1773dbb-1a5e-43e5-88dd-bc966d9f9c3d, de547874-ab8b-4bde-a5c5-e795e586e73e result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported 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"); const message = await messagePromise; if (message === "none") { throw new Error("Unsupported"); } return message; } result, same first party: fbe3ef70-c9b4-4ecb-bd0f-8b33439ab656, f9315ed5-a4a9-4c27-9eda-378b8f0d3b7c, 82349fff-73dc-4999-be06-bc5ef0f05c9c, f6446da3-cde1-4b2c-9fb6-95cfe0df79b0, b2ca5b88-cb93-40cf-8e19-e396f306d991 result, different first party: Error: SharedWorker constructor: StorageAccess denied., Error: SharedWorker constructor: StorageAccess denied., Error: SharedWorker constructor: StorageAccess denied., Error: SharedWorker constructor: StorageAccess denied., Error: SharedWorker constructor: StorageAccess denied. 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"); const message = await messagePromise; if (message === "none") { throw new Error("Unsupported"); } return message; } result, same first party: 68ee9f0e-bffd-4faf-9d8f-fc06949ec786, ed81b5e3-5587-4800-a244-a0dfd866fb3b, 024116c3-ae0b-4da8-9a6d-8c4163baf033, 565bfeb6-fe62-4ebb-b63c-ab32b0934145, 1158aebf-466f-4e30-a937-f288891de9d5 result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported 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"); const message = await messagePromise; if (message === "none") { throw new Error("Unsupported"); } return message; } result, same first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported unsupported: true, true, true, true passed: undefined test failed: 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"); const message = await messagePromise; if (message === "none") { throw new Error("Unsupported"); } return message; } result, same first party: a2e533c4-2dd6-49e3-8076-8af6c436b065, 6ca7d38b-5b34-4764-89fd-8536e320b15d, 1ee4b4ff-13e0-4529-9be9-279efa210be6, 2bac0ce0-5bdd-46ab-b431-799ca3a6c289, bf77a72a-d400-4c8e-9a49-39df3b1eb054 result, different first party: Error: SharedWorker constructor: StorageAccess denied., Error: SharedWorker constructor: StorageAccess denied., Error: SharedWorker constructor: StorageAccess denied., Error: SharedWorker constructor: StorageAccess denied., Error: SharedWorker constructor: StorageAccess denied. 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"); const message = await messagePromise; if (message === "none") { throw new Error("Unsupported"); } return message; } result, same first party: cefd4548-c20f-4153-8115-7b2d691b42a0, 729070d5-2317-42d2-8b8c-e360175cc24f, 32f5aa48-975c-4a47-baaf-a05c114d096f, 29c2a985-0935-4131-b322-279dc6173e4f, 8d2fa17d-f3d5-4308-8cef-59d1e70a16cd result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported 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"); const message = await messagePromise; if (message === "none") { throw new Error("Unsupported"); } return message; } result, same first party: 9f0b9357-a378-494f-8f86-5d520f418441, 93be6a66-4f73-42b4-af8e-ec08ea3034c0, 51160da8-e7fc-4e5e-85fa-33d923696e92, 4f6b486b-287d-41e2-8204-90f755368ed1, 4f7c170c-eb0f-4d6a-927f-c817033dd4c1 result, different first party: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
TLS Session ID
The 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: 678c8349066bccbd9c8f86a16829e32c4c826a057d9b3c12af1a36b67b5a6646, 43fcad1aae94f375228f1760feb1425a2d1506c64e127485a0cfd91ad90d0faf, 457874172ffa0ae7a0e2adbab275bee4d81df4cc2717713e68e619a17c67f41d, 965ab69033e45c2e6fa237cc2fdfb19f61c62aa2e306844be4f6ab8052f7ddfc, 16fff8609aa848c28a7e6240066aabe36ec34579d8d9d04184aa4b71ffa3165a result, different first party: 41ee7d563876b351b510b3dd27518d6e4d43f71e1a08edabf912ee36ac18ca06, 74ad08dc1481941278c83b6ba570e50863bb4609c1bd88af52291ddd5400e455, 63a81dbd73f0d76fc7602f6d5a04329713f9a2da7bce5a6e8698aa2adeaa701a, 97adce4cff597f8d2d5ecabcac294c6017e3d353af9120189f3625ea54d8fbaf, ee271a6dd84da935aaf4ad35e1b32de67a43dea01b2311a9679aeba5037b119b 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: 3fa0641b5527e3f5c63825d694d184eaa8f008913305757adf57a1527dee71d4, 46f0d9b5fd79bdb73048f89da19c5e2b5f95e5b807b24a1e1da00e7dce9eccc3, 84a3201b93fde6a292cd7ace04bcb0f7aecd5e2791b8469c3b657e2488b24f6f, 7355afa29530ba2d6f031a894d9c7bb05c0bc17efad07da005b5d49fd47fdc42, c94878f1e7421742f91064e1dadb0e6159b6bcc505ce5c1d87f5edbc9019ea2d result, different first party: 73045b335db0dc9c4d5ac3eddf2df72f95779f0ddb59a332b180bbea3343f417, 0f4efbd1b23f6e90b642f1c71fc1193f14911ad2b1659484cbb564874416946d, 6c2f41fb1325551fdb740b694def122e9d307abd1a9f107d837a8fb72abef289, b306ec7731f59fc93a31120cf1f932d006381f70e189b32f90a0a303fae2fcf8, 2c616fd40414a6fab8921832c58787be5cd1dcd74123e12459336cd494d8eab1 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: 5f21781d75c48516c906c1e9ee1ba42f1eef16ecf20ec981497b813750d3db85, 61c8b823dc8e8c155f96ff6a70e4024472fcafa58c99c2fe992335b4fb32a552, c3167ca2ce1987b6b93c873a768f3baa0ff597c2f66e3fb69eacd5874babe6a2, 2488f99a70bf4c09998d60ca67e7d31d60b8a02172f7862ef61843bc0cdadb08, 5c769984265050ba016e4b7bdf764c79eb5abe6b4cb6d94cbe4c3632c36a9708 result, different first party: 72c47b93109d158dcce2416a32872b76408d10d03a0bdb693db6b60fc0eb3729, 66d5cc223ba47c3548b3ba24250783856a2324239992f5059c5b7b58ebf2232b, 5567063f649260710a0bd30c08568e8481c43541ce7fca193e7d61ce2db2c91b, 1ba82bc155d38290b49dcbe42bbdee9af95e6929edd3ec11754b8388a6697fed, 513431e89ac4785f0fa32c7826a047c6ead3fed45e10ef820c48990b825ca918 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: e0d7aa181d4e98bebc4b61ab9ee85a9e8b89a5ae03888d653e16e26a44c5b21f, bfa5f1d0b359f31c7448ad29046abe54b845e38772c7e089795d8ec4962c4cf0, db7feaea2f94342ef11cca5374c552af0b12dbfaed10fc7acdba1af7aa4bd874, 71673b69526ed71eae8b2eb9b6a957b1cea193324b489ed72f9f1dad27c8fc66 result, different first party: fc5fe03f866b5c83cb096cb9a293336d62b23e21ba19a7519450c7961972d36e, 972adeebff146392526197f383cd0dce00c46cfc75eaf97dd24be1fe499a80f6, cdc64668051259bf723a600958b4b278edb466f3238d754751e70d4c3f4e40e4, 4af098519d520e3e2879c201e334433b7aa22c314ff8aea8b79b83f5d022ea0c unsupported: false, false, false, false passed: true, true, true, true test failed: 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: 38f208bfd456b6c4214659a15e61e8b8aa622ee5a771313f2d6d5990d6d95cfa, 1108452b5425389d8dab0d05d6fef8deb833f9afe9da1fd0ccf5dde0c098cd46, dbc3f77a9323d106a333637ea09fb707ecc00be14d899c03361b77d2366b88b9, 6bd1f95813eb79ff810c1c71d529cb219f96397ca415ce7883ad4ea9aa16c48e, 607259f0186b0a5050646290ff17bfcc80444712a43062390ae368b0fbc2df50 result, different first party: 501fb5b64b22f94bf3454cae1b7ec8f04ee605fbc7c38ac94e6399ecc5c564f4, ec69e30caad1ccdbf7f275e5aec233b0efecbef68827949646584c6ca29d52c1, 9476c826180719b1f0778330b22174a829c7a024ccc55af3e3fa3f56bec9e45f, b8606a78c592bb536e4042c4a37de85a9b8e62d0c583feb9f6d61f92b3353624, 2fcc4852705e6e08c05053da7c56f1c775188d6d7a09236a856897142bb369eb 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: 891cc770800b5619d4b813daf0c9d2a257cafaff488e09aac9822bb724614217, 002adad89607d50c815c967ef169e6ae6abd70185a5971953d121f0b2f67ad9b, b3744465daea9cb60fe7ff7073414b4db813c56751536af0a6242e454ff5c3c6, 60996dc0255d21c27fb64965c96d45bbf014c795bc4d2cf8f158b510c81124a1, f70d32be862998e8b87d04d79c8d6cac2810a9843a844246def0ebf04ac1988d result, different first party: 0aae33a939b9c15a55f6f7359e8aa17b1499954e7ae8f8498375671b4e2ad0f9, 47e7d415ee06d1a5ed91a31f99caacc3a4cdeea3f149b19e3e18e0142aebc2b3, 9b88fe8e42fd4d482000893887374e3df2a64542e647238aff82b924fc36837f, 3eb623b458b21e16a21cb523d22208294b78b455036e1d86ce193071d8b7916b, ad31e87632b2ae01387893ece8123eaf8ff7612cac259d54ad985fc468a1d577 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: f65b9e6e1a722ef0b86bca68d53de81f94ffadfd6112c541b1e093e745cf2b80, 2522fbd6d864f91175480d3c9fc5588700b38ea3ae0c9f8a12d239c6ee675c53, e6e18e298901968e2be33e431e692fe9264dfe9a0d4402dd7c3e89a58ba7229d, 9511acdc966ed9fd10e8de73bd90ac00706c58d36843b156cb9b69ab255ae68e, ccc025f7f4dfc17b8bace6bdf8fdbea8c5eb5c309eb7b6534c5127f50a6ca397 result, different first party: 1993f1b2083b2556b1f290e16e67b038805e871a0637f3524fc46cf34c82381b, 4de3f1f4f8e6d86c781ca9b9c97225311bcd5a18b25e32caa5d6796c7d9f3de1, 4cab15414d9532e5e21865a1e07d2d59e74aa690d2f60519aa46f5df81ba2409, ce10873e13916e4679ea9a905513628d1f68b92444ea3a61c0868bc8a2dfc7d9, acb90bee9b2c13d882e5193fbb170119c14a9765800a9cb2854e7ec98ff53fbe 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: c8d6e867504d59b0185defb100f58f29982ffae624cf9b4dd0cc13e231d1df74, 077c43d73f562624d729df30cdfecb85fb221bdfa758d5f387a0725785b89fd2, 970fdfc9832a814eb5525ca0376279a4c1242a882e946ffe324b2e7e7ee0dc25, 7cfc7e777f89927a1fe6a0d924fe6f043dce2441b89099732b45adb32c0e1a15, ccf3bdee81461a2cd4aec46ab8a7528d45b841274c98a2364e8b56ba91e69881 result, different first party: d2e71538598d63b66a756db2030a1154367c57f20c06c88a2e95ee3833a4f7e5, 1220ad94314c10124c9c7941e373ec9fd0e913f6b20e68c80951c9b1723681d3, c46dfd29e569b954bbb654e7adb80d61f596394bdffd611e61bbe7256423b8d2, 87076cdd213739db3ba7be096727c541d80a6dd630734b9d9809a473452327d4, 161dd6420584373985c1c4acd29125fbe5b6cc6257d716d2e244e2add528f2a3 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: df402325918cf51894c25616b731ca1e79f583a7404d3cc1aab6ae4b6f10c77d, 5fdef4d107ce89072b06f02bb96f47b8b0971336f0dee177a286f08f0f3b88cf, b600f9ebfc751bb0cf8c5f56983a2d8430b4f5fa5907d1d402a77fe2ab026e5e, e23a513bdabab3c0900a699d456faa6f027e39a2aac5cf252dae847dd9fa3be5, 6d89b0d6406cf8245e23f1c8b8c9d6730ed0ebb62c474287bff7daea3df0c466 result, different first party: 3c190a8ebea69a0c6e07756400b43fc72d7b85ab12400c46a2c9d4844c1aa02a, 13545a3c7a3606781e5dce2b7c96f309bf86f8eabf5f3c5daf00bea19ca66bff, 70a1408ece19f498f26369a70cad05925ebbed3258f0a39185004be4039102cf, 265bbc5da3a8b1e111dc8b316444b72062a315e8b8b9d07930055c2593586230, 396f15636281d28abacf500573b1b897b29f308224349b95c7dff06674bfbd35 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: cd6e8344c81fd7d0bd857bedcdb39cdda9d6e4b04c3215b90bd6461630b42ef8, cf947ea6698ea7670eb2b1b3af91ff74f637e08d42babc344a8375af8b021141, a25c58e47d86525ad7e7ff0021ad9d4b21370dafe01dc65dc77fcffbe887eaad, 51dad6799dfd767263d5cc9362a16d5e84290dba3b389aa45139995a00a9ebe4 result, different first party: 7268e891745acd192b77a913afa0fc19c5d11ee54f54a173bf33d4cf86864a59, f8c154ab94cdc61c3b070303d1462ca4ad17b01cb2cc23446e87766aea127bca, b0f4c5b23332194185a11c069d1b9f8b1bf74345d6b0a96c29a833d15f75bd8e, 111f5c1223133abaeb894909e127771509e5f736752a9aa70c0278121bf74375 unsupported: false, false, false, false passed: true, true, true, true test failed: 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: 57fc837961288c1e02b7d9c1bd73a717115c444688f30694b47eba3580378931, 6372a572a377730033a6b4ac325dedf53a26ed20ab108db388ddfd6a58d84783, 41fa185b830bf34cdda36f67a462c704bd2d2cec116860398f456fc009b761ec, 28110f853c16489c5de9bb0730d8b169ded11164afa22bf22c18e78962612ad2, ad6e1f12e7b55b697593b23dbcc11d7ed570ab645c2f2cbb5cba65ae7c1fc465 result, different first party: ff17aa8e096166d566749701fa3786c59ef9441a9ab84e34012cccfba5d6159c, 49d66e79e9180defe0eb2c7fe6f90d80616963a4f85e61e1acfd10c4bf71e1c0, 529954fd1333ccdfc35aa71b8c4325955f52bc2479b46a6496f180bc0e3cf10a, cee1ce5765942bee202fe69ce95e757816a55e612a3af04a1a5bf07a9338b6d6, 90be81165c57984dbd9b647e10a56b508df0eb3173be8f81ccce55b97d63664c 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: 5ad7eb29388e1643d857d8880352ad507bde7d0af9ca025eefb372cd40bb914e, 63874df46d8d4ed69e75fe1baa09f9393688cb6fca7159b6d07ebf5415107a78, e7d83abe05dad983b37781a2385ca67b7ae761f61fbf900dde8f75d8c00d6a77, 8c9b5a0aaeadea1646a2f45216eff8da83b26698249b2b6b702f65da0a9fe94d, a6f3ff56ec634347e785cf2834e46a06e7d16878a212d263c5470b7a7ee461e9 result, different first party: 09c2fad6a9fcdc0474a11c42bcdbf3971eb5da3e385542575fdfd013a9e4e9c0, fa5bd191805183785e5fb4ae7118d7bda2b892afd2a95cccea7b37874a2df795, f4063e05ded56b9c8de6cf295045b86a85572a1a43ef41ca6140f8e390fe5293, 90e4491bba35518d7fafb43837539cefe5c002184011c4c6b8f62d140030efbb, 0e205a294078cd707af7aa3cfa6082877527beb1061ddcbd1bf564eee0973672 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: 9358786c266a62b6c0b4d4fe9098f17dbea45af8b1af7512f7c6f4bb8c5c6f40, bad75da3ca2429051168e3440db7bbc9dfc26a5fbe5fc017323b2c97b7891569, 4f9b8d653c44c9fb137218b6de5d894de8bb91746624ce2d468084b8ee90817c, 9682fdf9ff9850b5a7fda087bcc8092b4aebefb70c782ae1fa9610b2b2a11e7a, f641df1411ac8331552c0b55bc587854da96c14cb1ad82010bdb4990d5a54071 result, different first party: 382cd307d9796e819711890493e6180e35b82fabcecd4c61048150b62248317c, 919dfc64e2aa4298ea4010343bcb048d5a98a74fae7fc6fd84f7d38ba9ba5b0f, b3fc281c5431155b2daed6eea16207a043e903084eac2d2e50468bfcc6d30191, 0df6e64dca66183b0567ff6910a6db72123d72ee0c002bfea1aa5ee9dc8ce303, 9432da9fad9e43e4798d0ee760a8f30c1b11d2ad1ae6278e3a1d9b4bcb89b45d unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
XMLHttpRequest cache
Similar 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 result, different first party: 2, 2, 2, 2 unsupported: false, false, false, false passed: true, true, true, true test failed: 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: 2, 2, 2, 2 result, different first party: 3, 3, 3, 3 unsupported: false, false, false, false passed: true, true, true, true test failed: 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 |
Navigation testsWhich browsers prevent websites from sharing 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.referrer
The 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/ result, different first party: 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 passed: false, false, false, false test failed: 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/ result, different first party: , , , unsupported: false, false, false, false passed: true, true, true, true test failed: 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 |
sessionStorage
The 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: e5519e19-3a86-491c-ad7d-877a716f9039, b490967a-09b6-4321-bb08-182238b4a282, 005d1c84-b923-4777-b2b4-646f0f20ac85, 1c2cc545-57f8-49a4-af3f-da8ab9fcfd4e, 250f3351-9ff0-4d54-b53f-bd9b54354c78 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: e7bebf0a-9623-4709-b481-47a318b6f037, e4ef1561-018c-4570-b984-47b3c459b7eb, 3c678a65-4546-4a33-a7d6-dcb258964678, 80255f8c-1cdb-4b4d-8935-b12be3c4f16b, 2d52c277-29ba-4fc1-bb25-d9dcb805bd07 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: daf90757-b1f7-418e-ab53-dbd391820218, d1be8c6c-510b-49ec-aef7-af0dab3c09ed, 1e68e254-000a-45e1-b022-2c599a737ccb, b6dff3a4-a6da-440a-bd7d-652bc0c1c5fe, b9d20250-6980-45c4-91c6-154aa4f0c059 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: 8d9b75ae-6d01-4ffe-bedb-4aa3d9d44eb3, 81a2c55d-d252-4212-be43-7d64517376bd, 23601d7c-fb58-46da-b073-4d037b065160, 0f10a8af-da07-4a33-aa45-29da6b03cd78 result, different first party: , , , unsupported: false, false, false, false passed: true, true, true, true test failed: false, false, false, false |
write: (secret) => sessionStorage.setItem("secret", secret) read: () => sessionStorage.getItem("secret") result, same first party: aa29142e-96b1-4b0b-bb8d-d330211d46ef, da550f8c-d76f-43c5-b569-cad1c27dd80e, 83d9b3d1-37fa-4ccf-8382-1e5211bfba71, 2889d794-dda8-4e69-9e11-699d711a082a, 09030978-b29b-4401-8d9e-20a51d44dbf6 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: 2d6c06b3-69f7-4a25-a0e2-d98293c8419d, b4645eec-b868-4ab5-849a-b17fb56c62a9, 66d28c1e-d1e1-4c74-9e22-f23f4af78732, 7ad596ca-c6e2-45d9-8ee7-cc28f4f96ddd, abb50bae-7cfe-4c12-9cfe-ed946879d183 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: ef0aa6ec-38e4-4764-bbd1-82dd11445c24, 7baf3bd2-f78f-4a04-a7df-6ef4243b9518, e991020d-3edf-48c9-bdcc-128c1222f27a, d1773dbb-1a5e-43e5-88dd-bc966d9f9c3d, de547874-ab8b-4bde-a5c5-e795e586e73e 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: fbe3ef70-c9b4-4ecb-bd0f-8b33439ab656, f9315ed5-a4a9-4c27-9eda-378b8f0d3b7c, 82349fff-73dc-4999-be06-bc5ef0f05c9c, f6446da3-cde1-4b2c-9fb6-95cfe0df79b0, b2ca5b88-cb93-40cf-8e19-e396f306d991 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: 68ee9f0e-bffd-4faf-9d8f-fc06949ec786, ed81b5e3-5587-4800-a244-a0dfd866fb3b, 024116c3-ae0b-4da8-9a6d-8c4163baf033, 565bfeb6-fe62-4ebb-b63c-ab32b0934145, 1158aebf-466f-4e30-a937-f288891de9d5 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: e300a515-d957-45ff-99e7-31221fc4d0a4, b54b3397-859c-429b-9cdc-2b0b15889862, 28f514b4-c87a-4ba9-9105-1b9f248c50fe, 4223bac2-852d-4f94-9ac4-69435c1107a4 result, different first party: , , , unsupported: false, false, false, false passed: true, true, true, true test failed: false, false, false, false |
write: (secret) => sessionStorage.setItem("secret", secret) read: () => sessionStorage.getItem("secret") result, same first party: a2e533c4-2dd6-49e3-8076-8af6c436b065, 6ca7d38b-5b34-4764-89fd-8536e320b15d, 1ee4b4ff-13e0-4529-9be9-279efa210be6, 2bac0ce0-5bdd-46ab-b431-799ca3a6c289, bf77a72a-d400-4c8e-9a49-39df3b1eb054 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: cefd4548-c20f-4153-8115-7b2d691b42a0, 729070d5-2317-42d2-8b8c-e360175cc24f, 32f5aa48-975c-4a47-baaf-a05c114d096f, 29c2a985-0935-4131-b322-279dc6173e4f, 8d2fa17d-f3d5-4308-8cef-59d1e70a16cd 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: 9f0b9357-a378-494f-8f86-5d520f418441, 93be6a66-4f73-42b4-af8e-ec08ea3034c0, 51160da8-e7fc-4e5e-85fa-33d923696e92, 4f6b486b-287d-41e2-8204-90f755368ed1, 4f7c170c-eb0f-4d6a-927f-c817033dd4c1 result, different first party: , , , , unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
window.name
The 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_e5519e19-3a86-491c-ad7d-877a716f9039, name_b490967a-09b6-4321-bb08-182238b4a282, name_005d1c84-b923-4777-b2b4-646f0f20ac85, name_1c2cc545-57f8-49a4-af3f-da8ab9fcfd4e, name_250f3351-9ff0-4d54-b53f-bd9b54354c78 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_e7bebf0a-9623-4709-b481-47a318b6f037, name_e4ef1561-018c-4570-b984-47b3c459b7eb, name_3c678a65-4546-4a33-a7d6-dcb258964678, name_80255f8c-1cdb-4b4d-8935-b12be3c4f16b, name_2d52c277-29ba-4fc1-bb25-d9dcb805bd07 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_daf90757-b1f7-418e-ab53-dbd391820218, name_d1be8c6c-510b-49ec-aef7-af0dab3c09ed, name_1e68e254-000a-45e1-b022-2c599a737ccb, name_b6dff3a4-a6da-440a-bd7d-652bc0c1c5fe, name_b9d20250-6980-45c4-91c6-154aa4f0c059 result, different first party: name_daf90757-b1f7-418e-ab53-dbd391820218, name_d1be8c6c-510b-49ec-aef7-af0dab3c09ed, name_1e68e254-000a-45e1-b022-2c599a737ccb, name_b6dff3a4-a6da-440a-bd7d-652bc0c1c5fe, name_b9d20250-6980-45c4-91c6-154aa4f0c059 unsupported: false, false, false, false, false passed: false, false, false, false, false test failed: false, false, false, false, false |
write: (secret) => window.name = "name_" + secret read: () => window.name result, same first party: name_8d9b75ae-6d01-4ffe-bedb-4aa3d9d44eb3, name_81a2c55d-d252-4212-be43-7d64517376bd, name_23601d7c-fb58-46da-b073-4d037b065160, name_0f10a8af-da07-4a33-aa45-29da6b03cd78 result, different first party: , , , unsupported: false, false, false, false passed: true, true, true, true test failed: false, false, false, false |
write: (secret) => window.name = "name_" + secret read: () => window.name result, same first party: name_aa29142e-96b1-4b0b-bb8d-d330211d46ef, name_da550f8c-d76f-43c5-b569-cad1c27dd80e, name_83d9b3d1-37fa-4ccf-8382-1e5211bfba71, name_2889d794-dda8-4e69-9e11-699d711a082a, name_09030978-b29b-4401-8d9e-20a51d44dbf6 result, different first party: name_aa29142e-96b1-4b0b-bb8d-d330211d46ef, name_da550f8c-d76f-43c5-b569-cad1c27dd80e, name_83d9b3d1-37fa-4ccf-8382-1e5211bfba71, name_2889d794-dda8-4e69-9e11-699d711a082a, name_09030978-b29b-4401-8d9e-20a51d44dbf6 unsupported: false, false, false, false, false passed: false, false, false, false, false test failed: false, false, false, false, false |
write: (secret) => window.name = "name_" + secret read: () => window.name result, same first party: name_2d6c06b3-69f7-4a25-a0e2-d98293c8419d, name_b4645eec-b868-4ab5-849a-b17fb56c62a9, name_66d28c1e-d1e1-4c74-9e22-f23f4af78732, name_7ad596ca-c6e2-45d9-8ee7-cc28f4f96ddd, name_abb50bae-7cfe-4c12-9cfe-ed946879d183 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_ef0aa6ec-38e4-4764-bbd1-82dd11445c24, name_7baf3bd2-f78f-4a04-a7df-6ef4243b9518, name_e991020d-3edf-48c9-bdcc-128c1222f27a, name_d1773dbb-1a5e-43e5-88dd-bc966d9f9c3d, name_de547874-ab8b-4bde-a5c5-e795e586e73e 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_fbe3ef70-c9b4-4ecb-bd0f-8b33439ab656, name_f9315ed5-a4a9-4c27-9eda-378b8f0d3b7c, name_82349fff-73dc-4999-be06-bc5ef0f05c9c, name_f6446da3-cde1-4b2c-9fb6-95cfe0df79b0, name_b2ca5b88-cb93-40cf-8e19-e396f306d991 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_68ee9f0e-bffd-4faf-9d8f-fc06949ec786, name_ed81b5e3-5587-4800-a244-a0dfd866fb3b, name_024116c3-ae0b-4da8-9a6d-8c4163baf033, name_565bfeb6-fe62-4ebb-b63c-ab32b0934145, name_1158aebf-466f-4e30-a937-f288891de9d5 result, different first party: name_68ee9f0e-bffd-4faf-9d8f-fc06949ec786, name_ed81b5e3-5587-4800-a244-a0dfd866fb3b, name_024116c3-ae0b-4da8-9a6d-8c4163baf033, name_565bfeb6-fe62-4ebb-b63c-ab32b0934145, name_1158aebf-466f-4e30-a937-f288891de9d5 unsupported: false, false, false, false, false passed: false, false, false, false, false test failed: false, false, false, false, false |
write: (secret) => window.name = "name_" + secret read: () => window.name result, same first party: name_e300a515-d957-45ff-99e7-31221fc4d0a4, name_b54b3397-859c-429b-9cdc-2b0b15889862, name_28f514b4-c87a-4ba9-9105-1b9f248c50fe, name_4223bac2-852d-4f94-9ac4-69435c1107a4 result, different first party: , , , unsupported: false, false, false, false passed: true, true, true, true test failed: false, false, false, false |
write: (secret) => window.name = "name_" + secret read: () => window.name result, same first party: name_a2e533c4-2dd6-49e3-8076-8af6c436b065, name_6ca7d38b-5b34-4764-89fd-8536e320b15d, name_1ee4b4ff-13e0-4529-9be9-279efa210be6, name_2bac0ce0-5bdd-46ab-b431-799ca3a6c289, name_bf77a72a-d400-4c8e-9a49-39df3b1eb054 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_cefd4548-c20f-4153-8115-7b2d691b42a0, name_729070d5-2317-42d2-8b8c-e360175cc24f, name_32f5aa48-975c-4a47-baaf-a05c114d096f, name_29c2a985-0935-4131-b322-279dc6173e4f, name_8d2fa17d-f3d5-4308-8cef-59d1e70a16cd result, different first party: name_cefd4548-c20f-4153-8115-7b2d691b42a0, name_729070d5-2317-42d2-8b8c-e360175cc24f, name_32f5aa48-975c-4a47-baaf-a05c114d096f, name_29c2a985-0935-4131-b322-279dc6173e4f, name_8d2fa17d-f3d5-4308-8cef-59d1e70a16cd unsupported: false, false, false, false, false passed: false, false, false, false, false test failed: false, false, false, false, false |
write: (secret) => window.name = "name_" + secret read: () => window.name result, same first party: name_9f0b9357-a378-494f-8f86-5d520f418441, name_93be6a66-4f73-42b4-af8e-ec08ea3034c0, name_51160da8-e7fc-4e5e-85fa-33d923696e92, name_4f6b486b-287d-41e2-8204-90f755368ed1, name_4f7c170c-eb0f-4d6a-927f-c817033dd4c1 result, different first party: name_9f0b9357-a378-494f-8f86-5d520f418441, name_93be6a66-4f73-42b4-af8e-ec08ea3034c0, name_51160da8-e7fc-4e5e-85fa-33d923696e92, name_4f6b486b-287d-41e2-8204-90f755368ed1, name_4f7c170c-eb0f-4d6a-927f-c817033dd4c1 unsupported: false, false, false, false, false passed: false, false, false, false, false test failed: false, false, false, false, false |
HTTPS testsWhich browsers prevent unencrypted network connections?
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 website warning
|
passed: true, true, true, true, true result: Insecure website never loaded, Insecure website never loaded, Insecure website never loaded, Insecure website never loaded, Insecure website never loaded |
passed: true, true, true, true, true result: Insecure website never loaded, Insecure website never loaded, Insecure website never loaded, Insecure website never loaded, Insecure website never loaded |
passed: true, true, true, true, true result: Insecure website never loaded, Insecure website never loaded, Insecure website never loaded, Insecure website never loaded, Insecure website never loaded |
passed: false, false, false, false result: Insecure website loaded, Insecure website loaded, Insecure website loaded, Insecure website loaded |
passed: true, true, true, true, true result: Insecure website never loaded, Insecure website never loaded, Insecure website never loaded, Insecure website never loaded, Insecure website never loaded |
passed: false, false, false, false, false result: Insecure website loaded, Insecure website loaded, Insecure website loaded, Insecure website loaded, Insecure website loaded |
passed: true, true, true, true, true result: Insecure website never loaded, Insecure website never loaded, Insecure website never loaded, Insecure website never loaded, Insecure website never loaded |
passed: true, true, true, true, true result: Insecure website never loaded, Insecure website never loaded, Insecure website never loaded, Insecure website never loaded, Insecure website never loaded |
passed: true, true, true, true, true result: Insecure website never loaded, Insecure website never loaded, Insecure website never loaded, Insecure website never loaded, Insecure website never loaded |
passed: false, false, false, false result: Insecure website loaded, Insecure website loaded, Insecure website loaded, Insecure website loaded |
passed: true, true, true, true, true result: Insecure website never loaded, Insecure website never loaded, Insecure website never loaded, Insecure website never loaded, Insecure website never loaded |
passed: true, true, true, true, true result: Insecure website never loaded, Insecure website never loaded, Insecure website never loaded, Insecure website never loaded, Insecure website never loaded |
passed: true, true, true, true, true result: Insecure website never loaded, Insecure website never loaded, Insecure website never loaded, Insecure website never loaded, Insecure website never loaded |
Upgradable address
Checks to see if an insecure address entered into the browser's address bar is upgraded to HTTPS whenever possible. |
upgraded: true, true, true, true, true passed: true, true, true, true, true |
upgraded: true, true, true, true, true passed: true, true, true, true, true |
upgraded: true, true, true, true, true passed: true, true, true, true, true |
upgraded: false, false, false, false passed: false, false, false, false |
upgraded: true, true, true, true, true passed: true, true, true, true, true |
upgraded: true, true, true, true, true passed: true, true, true, true, true |
upgraded: true, true, true, true, true passed: true, true, true, true, true |
upgraded: true, true, true, true, true passed: true, true, true, true, true |
upgraded: true, true, true, true, true passed: true, true, true, true, true |
upgraded: true, true, true, true passed: true, true, true, true |
upgraded: true, true, true, true, true passed: true, true, true, true, true |
upgraded: true, true, true, true, true passed: true, true, true, true, true |
upgraded: true, true, true, true, true passed: true, true, true, true, true |
Upgradable hyperlink
Checks 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: true, true, true, true, true passed: true, true, true, true, true |
upgraded: true, true, true, true, true passed: true, true, true, true, true |
upgraded: true, true, true, true, true passed: true, true, true, true, true |
upgraded: false, false, false, false passed: false, false, false, false |
upgraded: true, true, true, true, true passed: true, true, true, true, true |
upgraded: true, true, true, true, true passed: true, true, true, true, true |
upgraded: true, true, true, true, true passed: true, true, true, true, true |
upgraded: true, true, true, true, true passed: true, true, true, true, true |
upgraded: true, true, true, true, true passed: true, true, true, true, true |
upgraded: true, true, true, true passed: true, true, true, true |
upgraded: true, true, true, true, true passed: true, true, true, true, true |
upgraded: true, true, true, true, true passed: true, true, true, true, true |
upgraded: true, true, true, true, true passed: true, true, true, true, true |
Upgradable image
Checks to see if the browser attempts to upgrade an insecure address for an image to HTTPS whenever possible. |
passed: true, true, true, true, true result: upgraded, upgraded, upgraded, upgraded, upgraded |
passed: true, true, true, true, true result: upgraded, upgraded, upgraded, upgraded, upgraded |
passed: true, true, true, true, true result: upgraded, upgraded, upgraded, upgraded, upgraded |
passed: true, true, true, true result: upgraded, upgraded, upgraded, upgraded |
passed: true, true, true, true, true result: upgraded, upgraded, upgraded, upgraded, upgraded |
passed: true, true, true, true, true result: upgraded, upgraded, upgraded, upgraded, upgraded |
passed: true, true, true, true, true result: upgraded, upgraded, upgraded, upgraded, upgraded |
passed: true, true, true, true, true result: upgraded, upgraded, upgraded, upgraded, upgraded |
passed: true, true, true, true, true result: upgraded, upgraded, upgraded, upgraded, upgraded |
passed: true, true, true, true result: upgraded, upgraded, upgraded, upgraded |
passed: true, true, true, true, true result: upgraded, upgraded, upgraded, upgraded, upgraded |
passed: true, true, true, true, true result: upgraded, upgraded, upgraded, upgraded, upgraded |
passed: true, true, true, true, true result: upgraded, upgraded, upgraded, upgraded, upgraded |
Upgradable script
Checks 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 result: 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: upgraded, upgraded, upgraded, upgraded, upgraded |
passed: true, true, true, true, true result: upgraded, upgraded, upgraded, upgraded, upgraded |
passed: true, true, true, true, true result: blocked, blocked, blocked, blocked, blocked |
passed: true, true, true, true result: blocked, blocked, blocked, blocked |
passed: true, true, true, true, true result: upgraded, upgraded, upgraded, upgraded, upgraded |
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 testsWhich browsers provide additional assorted privacy protections?
This category includes tests for the presence of miscellaneous privacy features |
|||||||||||||
ECH enabled
Encrypted Client Hello (ECH) is a new protocol that hides the website you are visiting from third-party network eavesdroppers. |
SNI_status: encrypted passed: true, true, true, true, true |
SNI_status: plaintext passed: false, false, false, false, false |
SNI_status: encrypted passed: true, true, true, true, true |
SNI_status: plaintext passed: false, false, false, false |
SNI_status: encrypted passed: true, true, true, true, true |
SNI_status: encrypted passed: true, true, true, true, true |
SNI_status: plaintext passed: false, false, false, false, false |
SNI_status: encrypted passed: true, true, true, true, true |
SNI_status: encrypted passed: true, true, false, true, true |
SNI_status: plaintext passed: false, false, false, false |
SNI_status: plaintext passed: false, false, false, false, false |
SNI_status: encrypted passed: true, true, true, true, true |
SNI_status: encrypted passed: true, true, true, true, true |
GPC enabled first-party
The 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: 1 passed: true, true, true, true, true |
header value: 1 passed: true, true, true, true, true |
header value: undefined passed: false, false, false, false, false |
header value: 1 passed: true, true, true, true |
header value: undefined passed: false, false, false, false, false |
header value: 1 passed: true, true, true, true, true |
header value: 1 passed: true, true, true, true, true |
header value: 1 passed: true, true, true, true, true |
header value: undefined passed: false, false, false, false, false |
header value: undefined passed: false, false, false, false |
header value: 1 passed: true, true, true, true, true |
header value: undefined passed: false, false, false, false, false |
header value: undefined passed: false, false, false, false, false |
GPC enabled third-party
The 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. |
sec-gpc: 1 passed: true, true, true, true, true |
sec-gpc: 1 passed: true, true, true, true, true |
passed: false, false, false, false, false |
passed: false, false, false, false |
passed: false, false, false, false, false |
sec-gpc: 1 passed: true, true, true, true, true |
sec-gpc: 1 passed: true, true, true, true, true |
sec-gpc: 1 passed: true, true, true, true, true |
passed: false, false, false, false, false |
passed: false, false, false, false |
sec-gpc: 1 passed: true, true, true, true, true |
passed: false, false, false, false, false |
passed: false, false, false, false, false |
IP address leak
IP 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: true, true, true, true, true |
passed: false, false, false, false, false |
passed: 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 |
passed: true, true, true, true, true |
passed: false, false, false, false, false |
passed: false, false, false, false, false |
Stream isolation
Browsers 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: false, false, false, false, false readSameFirstParty: 45.143.200.32, 192.42.116.210, 45.138.16.42, 171.25.193.40, 185.150.28.13 readDifferentFirstParty: 88.80.26.3, 107.189.5.188, 185.220.101.13, 192.42.116.180, 185.246.188.73 passed: true, true, true, true, true 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 readSameFirstParty: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported readDifferentFirstParty: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported testFailed: 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 readSameFirstParty: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported readDifferentFirstParty: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported testFailed: false, false, false, false |
write: () => { if (!usingTor) { throw new Error("Unsupported"); } } read: async () => { if (usingTor) { return ipAddress; } else { throw new Error("Unsupported"); } } unsupported: false, false, false, false, false readSameFirstParty: 2a0b:f4c2:4::105, 2a0b:f4c2:4::103, 2a0d:bbc7::f816:3eff:fe72:95b6, 2605:6400:20:ff9::1, 163.172.45.102 readDifferentFirstParty: 2001:67c:289c:2::38, 45.66.35.21, 2a0b:f4c2::5, 2a0d:bbc7::f816:3eff:fe12:1851, 2001:67c:e60:c0c:192:42:116:211 passed: true, true, true, true, true 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 enabled
The 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: true, true, true, true, true passed: true, true, true, true, true |
IsTorExit: false, false, false, false, false passed: false, false, false, false, false |
IsTorExit: false, false, false, false passed: 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 passed: false, false, false, false |
IsTorExit: true, true, true, true, true passed: true, true, true, true, true |
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 testsWhich 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').`, |
|||||||||||||
System font detection
Web pages can detect the presence of a font installed on the user's system. The presence or absence of various fonts is commonly used to fingerprint users. |
expression: undefined desired expression: undefined actual value: undefined desired value: undefined passed: true,true,true,true,true |
expression: undefined desired expression: undefined actual value: undefined desired value: undefined passed: true,true,true,true,true |
expression: undefined desired expression: undefined actual value: undefined desired value: undefined passed: false,false,false,false,false |
expression: undefined desired expression: undefined actual value: undefined desired value: undefined passed: false,false,false,false |
expression: undefined desired expression: undefined actual value: undefined desired value: undefined passed: false,false,false,false,false |
expression: undefined desired expression: undefined actual value: undefined desired value: undefined passed: true,true,true,true,true |
expression: undefined desired expression: undefined actual value: undefined desired value: undefined passed: true,true,true,true,true |
expression: undefined desired expression: undefined actual value: undefined desired value: undefined passed: true,true,true,true,true |
expression: undefined desired expression: undefined actual value: undefined desired value: undefined passed: false,false,false,false,false |
expression: undefined desired expression: undefined actual value: undefined desired value: undefined passed: true,true,true,true |
expression: undefined desired expression: undefined actual value: undefined desired value: undefined passed: true,true,true,true,true |
expression: undefined desired expression: undefined actual value: undefined desired value: undefined passed: false,false,false,false,false |
expression: undefined desired expression: undefined actual value: undefined desired value: undefined passed: false,false,false,false,false |
Tracking query parameter testsWhich 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.)` |
|||||||||||||
__hsfp
HubSpot tracking parameter |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
__hssc
HubSpot tracking parameter |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
__hstc
HubSpot tracking parameter |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
__s
Drip.com email address tracking parameter |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
_hsenc
HubSpot tracking parameter |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
_openstat
Yandex tracking parameter |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
dclid
DoubleClick Click ID (Google) |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
fbclid
Facebook Click Identifier |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
gclid
Google Click Identifier |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
hsCtaTracking
HubSpot tracking parameter |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
mc_eid
Mailchimp Email ID (email recipient's address) |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
mkt_tok
Adobe Marketo tracking parameter |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
ml_subscriber
MailerLite email tracking |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
ml_subscriber_hash
MailerLite email tracking |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
msclkid
Microsoft Click ID |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
oly_anon_id
Omeda marketing 'anonymous' customer id |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
oly_enc_id
Omeda marketing 'known' customer id |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
rb_clickid
Unknown high-entropy tracking parameter |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
s_cid
Adobe Site Catalyst tracking parameter |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
vero_conv
Vero tracking parameter |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
vero_id
Vero tracking parameter |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
wickedid
Wicked Reports e-commerce tracking |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
yclid
Yandex Click ID |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
passed: true, true, true, true |
passed: true, true, true, true, true |
value: 8061754823985428 passed: false, false, false, false, false |
value: 8061754823985428 passed: false, false, false, false, false |
Tracker content blocking testsWhich 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.` |
|||||||||||||
Adobe
Tests 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: true, true, true, true, true |
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: 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: true, true, true, true, true |
url: https://munchkin.marketo.net/munchkin.js passed: true, true, true, true, true |
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 |
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 Manager
Tests whether the browser blocks the page from loading the tracker at https://dpm.demdex.net/ibs |
url: https://dpm.demdex.net/ibs passed: true, true, true, true, true |
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: true, true, true, true |
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: true, true, true, true, true |
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 |
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 adsystem
Tests 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: true, true, true, true, true |
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: 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: true, true, true, true, true |
url: https://s.amazon-adsystem.com/dcm passed: true, true, true, true, true |
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 |
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 |
AppNexus
Tests 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: true, true, true, true, true |
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: 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: true, true, true, true, true |
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: 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 |
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 Ads
Tests 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: true, true, true, true, true |
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: 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: true, true, true, true, true |
url: https://bat.bing.com/bat.js passed: true, true, true, true, true |
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 |
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 |
Chartbeat
Tests 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: true, true, true, true, true |
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: 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: true, true, true, true, true |
url: https://static.chartbeat.com/js/chartbeat.js passed: true, true, true, true, true |
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: 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 |
Criteo
Tests 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: true, true, true, true, true |
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: 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: true, true, true, true, true |
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: 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 |
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: true, true, true, true, true |
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: 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: true, true, true, true, true |
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: 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 |
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 tracking
Tests 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: true, true, true, true, true |
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: 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: true, true, true, true, true |
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: 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: 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: true, true, true, true, true |
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: 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: true, true, true, true, true |
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 |
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 Analytics
Tests 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: true, true, true, true, true |
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: 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: true, true, true, true, true |
url: https://google-analytics.com/urchin.js passed: true, true, true, true, true |
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: 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 Manager
Tests 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: true, true, true, true, true |
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: 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: true, true, true, true, true |
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: 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 |
Index Exchange
Tests 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: true, true, true, true, true |
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: 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: true, true, true, true, true |
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: 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: 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 Relic
Tests 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: true, true, true, true, true |
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: 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: true, true, true, true, true |
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: 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 |
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 |
Quantcast
Tests whether the browser blocks the page from loading the tracker at https://pixel.quantserve.com/pixel |
url: https://pixel.quantserve.com/pixel passed: true, true, true, true, true |
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: true, true, true, true |
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: true, true, true, true, true |
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: 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 Beacon
Tests 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: true, true, true, true, true |
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: 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: true, true, true, true, true |
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: 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 |
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 |
Taboola
Tests 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: true, true, true, true, true |
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: 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: true, true, true, true, true |
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: 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 |
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 pixel
Tests whether the browser blocks the page from loading the tracker at https://t.co/i/adsct |
url: https://t.co/i/adsct passed: true, true, true, true, true |
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: true, true, true, true |
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: true, true, true, true, true |
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 |
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 Ads
Tests 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: true, true, true, true, true |
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: 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: true, true, true, true, true |
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 |
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 |
Tracking cookie protection testsWhich browsers block important known tracking cookies?
A large fraction of web pages on the web have hidden third-party trackers that read and write cookies in your browser. These cookies can be used to track your browsing across websites. This section checks to see if a browser stops cross-site tracking by cookies from 20 of the largest trackers listed by https://whotracks.me.`, |
|||||||||||||
Adobe
Tests whether the browser stops cookies from munchkin.marketo.net from tracking users across websites. |
passed: true, true, true, true, true url: https://munchkin.marketo.net/munchkin.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://munchkin.marketo.net/munchkin.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://munchkin.marketo.net/munchkin.js cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://munchkin.marketo.net/munchkin.js cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://munchkin.marketo.net/munchkin.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://munchkin.marketo.net/munchkin.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://munchkin.marketo.net/munchkin.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://munchkin.marketo.net/munchkin.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://munchkin.marketo.net/munchkin.js cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://munchkin.marketo.net/munchkin.js cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://munchkin.marketo.net/munchkin.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://munchkin.marketo.net/munchkin.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://munchkin.marketo.net/munchkin.js cookieFound: false, false, false, false, false |
Adobe Audience Manager
Tests whether the browser stops cookies from dpm.demdex.net from tracking users across websites. |
passed: true, true, true, true, true url: https://dpm.demdex.net/ibs cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://dpm.demdex.net/ibs cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://dpm.demdex.net/ibs cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://dpm.demdex.net/ibs cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://dpm.demdex.net/ibs cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://dpm.demdex.net/ibs cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://dpm.demdex.net/ibs cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://dpm.demdex.net/ibs cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://dpm.demdex.net/ibs cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://dpm.demdex.net/ibs cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://dpm.demdex.net/ibs cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://dpm.demdex.net/ibs cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://dpm.demdex.net/ibs cookieFound: false, false, false, false, false |
Amazon adsystem
Tests whether the browser stops cookies from s.amazon-adsystem.com from tracking users across websites. |
passed: true, true, true, true, true url: https://s.amazon-adsystem.com/dcm cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://s.amazon-adsystem.com/dcm cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://s.amazon-adsystem.com/dcm cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://s.amazon-adsystem.com/dcm cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://s.amazon-adsystem.com/dcm cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://s.amazon-adsystem.com/dcm cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://s.amazon-adsystem.com/dcm cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://s.amazon-adsystem.com/dcm cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://s.amazon-adsystem.com/dcm cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://s.amazon-adsystem.com/dcm cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://s.amazon-adsystem.com/dcm cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://s.amazon-adsystem.com/dcm cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://s.amazon-adsystem.com/dcm cookieFound: false, false, false, false, false |
AppNexus
Tests whether the browser stops cookies from ib.adnxs.com from tracking users across websites. |
passed: true, true, true, true, true url: https://ib.adnxs.com/px?id=178248&t=1 cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://ib.adnxs.com/px?id=178248&t=1 cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://ib.adnxs.com/px?id=178248&t=1 cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://ib.adnxs.com/px?id=178248&t=1 cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://ib.adnxs.com/px?id=178248&t=1 cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://ib.adnxs.com/px?id=178248&t=1 cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://ib.adnxs.com/px?id=178248&t=1 cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://ib.adnxs.com/px?id=178248&t=1 cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://ib.adnxs.com/px?id=178248&t=1 cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://ib.adnxs.com/px?id=178248&t=1 cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://ib.adnxs.com/px?id=178248&t=1 cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://ib.adnxs.com/px?id=178248&t=1 cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://ib.adnxs.com/px?id=178248&t=1 cookieFound: false, false, false, false, false |
Bing Ads
Tests whether the browser stops cookies from bat.bing.com from tracking users across websites. |
passed: true, true, true, true, true url: https://bat.bing.com/bat.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://bat.bing.com/bat.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://bat.bing.com/bat.js cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://bat.bing.com/bat.js cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://bat.bing.com/bat.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://bat.bing.com/bat.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://bat.bing.com/bat.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://bat.bing.com/bat.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://bat.bing.com/bat.js cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://bat.bing.com/bat.js cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://bat.bing.com/bat.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://bat.bing.com/bat.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://bat.bing.com/bat.js cookieFound: false, false, false, false, false |
Chartbeat
Tests whether the browser stops cookies from static.chartbeat.com from tracking users across websites. |
passed: true, true, true, true, true url: https://static.chartbeat.com/js/chartbeat.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://static.chartbeat.com/js/chartbeat.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://static.chartbeat.com/js/chartbeat.js cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://static.chartbeat.com/js/chartbeat.js cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://static.chartbeat.com/js/chartbeat.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://static.chartbeat.com/js/chartbeat.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://static.chartbeat.com/js/chartbeat.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://static.chartbeat.com/js/chartbeat.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://static.chartbeat.com/js/chartbeat.js cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://static.chartbeat.com/js/chartbeat.js cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://static.chartbeat.com/js/chartbeat.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://static.chartbeat.com/js/chartbeat.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://static.chartbeat.com/js/chartbeat.js cookieFound: false, false, false, false, false |
Criteo
Tests whether the browser stops cookies from dis.criteo.com from tracking users across websites. |
passed: true, true, true, true, true url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://dis.criteo.com/dis/rtb/appnexus/cookiematch.aspx cookieFound: false, false, false, false, false |
DoubleClick (Google)
Tests whether the browser stops cookies from securepubads.g.doubleclick.net from tracking users across websites. |
passed: true, true, true, true, true url: https://securepubads.g.doubleclick.net/static/glade.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://securepubads.g.doubleclick.net/static/glade.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://securepubads.g.doubleclick.net/static/glade.js cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://securepubads.g.doubleclick.net/static/glade.js cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://securepubads.g.doubleclick.net/static/glade.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://securepubads.g.doubleclick.net/static/glade.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://securepubads.g.doubleclick.net/static/glade.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://securepubads.g.doubleclick.net/static/glade.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://securepubads.g.doubleclick.net/static/glade.js cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://securepubads.g.doubleclick.net/static/glade.js cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://securepubads.g.doubleclick.net/static/glade.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://securepubads.g.doubleclick.net/static/glade.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://securepubads.g.doubleclick.net/static/glade.js cookieFound: false, false, false, false, false |
Facebook tracking
Tests whether the browser stops cookies from connect.facebook.net from tracking users across websites. |
passed: true, true, true, true, true url: https://connect.facebook.net/en_US/fbevents.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://connect.facebook.net/en_US/fbevents.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://connect.facebook.net/en_US/fbevents.js cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://connect.facebook.net/en_US/fbevents.js cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://connect.facebook.net/en_US/fbevents.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://connect.facebook.net/en_US/fbevents.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://connect.facebook.net/en_US/fbevents.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://connect.facebook.net/en_US/fbevents.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://connect.facebook.net/en_US/fbevents.js cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://connect.facebook.net/en_US/fbevents.js cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://connect.facebook.net/en_US/fbevents.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://connect.facebook.net/en_US/fbevents.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://connect.facebook.net/en_US/fbevents.js cookieFound: false, false, false, false, false |
Google (third-party ad pixel)
Tests whether the browser stops cookies from www.google.com from tracking users across websites. |
passed: true, true, true, true, true url: https://www.google.com/pagead/1p-user-list/ cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://www.google.com/pagead/1p-user-list/ cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://www.google.com/pagead/1p-user-list/ cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://www.google.com/pagead/1p-user-list/ cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://www.google.com/pagead/1p-user-list/ cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://www.google.com/pagead/1p-user-list/ cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://www.google.com/pagead/1p-user-list/ cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://www.google.com/pagead/1p-user-list/ cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://www.google.com/pagead/1p-user-list/ cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://www.google.com/pagead/1p-user-list/ cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://www.google.com/pagead/1p-user-list/ cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://www.google.com/pagead/1p-user-list/ cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://www.google.com/pagead/1p-user-list/ cookieFound: false, false, false, false, false |
Google Analytics
Tests whether the browser stops cookies from google-analytics.com from tracking users across websites. |
passed: true, true, true, true, true url: https://google-analytics.com/urchin.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://google-analytics.com/urchin.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://google-analytics.com/urchin.js cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://google-analytics.com/urchin.js cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://google-analytics.com/urchin.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://google-analytics.com/urchin.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://google-analytics.com/urchin.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://google-analytics.com/urchin.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://google-analytics.com/urchin.js cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://google-analytics.com/urchin.js cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://google-analytics.com/urchin.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://google-analytics.com/urchin.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://google-analytics.com/urchin.js cookieFound: false, false, false, false, false |
Google Tag Manager
Tests whether the browser stops cookies from www.googletagmanager.com from tracking users across websites. |
passed: true, true, true, true, true url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://www.googletagmanager.com/gtag.js?id=GTM-NX4SMZL cookieFound: false, false, false, false, false |
Index Exchange
Tests whether the browser stops cookies from dsum-sec.casalemedia.com from tracking users across websites. |
passed: true, true, true, true, true url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1 cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1 cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1 cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1 cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1 cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1 cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1 cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1 cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1 cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1 cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1 cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1 cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://dsum-sec.casalemedia.com/crum?cm_dsp_id=10&external_user_id=629685505537&C=1 cookieFound: false, false, false, false, false |
New Relic
Tests whether the browser stops cookies from js-agent.newrelic.com from tracking users across websites. |
passed: true, true, true, true, true url: https://js-agent.newrelic.com/nr-1212.min.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://js-agent.newrelic.com/nr-1212.min.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://js-agent.newrelic.com/nr-1212.min.js cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://js-agent.newrelic.com/nr-1212.min.js cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://js-agent.newrelic.com/nr-1212.min.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://js-agent.newrelic.com/nr-1212.min.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://js-agent.newrelic.com/nr-1212.min.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://js-agent.newrelic.com/nr-1212.min.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://js-agent.newrelic.com/nr-1212.min.js cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://js-agent.newrelic.com/nr-1212.min.js cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://js-agent.newrelic.com/nr-1212.min.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://js-agent.newrelic.com/nr-1212.min.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://js-agent.newrelic.com/nr-1212.min.js cookieFound: false, false, false, false, false |
Quantcast
Tests whether the browser stops cookies from pixel.quantserve.com from tracking users across websites. |
passed: true, true, true, true, true url: https://pixel.quantserve.com/pixel cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://pixel.quantserve.com/pixel cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://pixel.quantserve.com/pixel cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://pixel.quantserve.com/pixel cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://pixel.quantserve.com/pixel cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://pixel.quantserve.com/pixel cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://pixel.quantserve.com/pixel cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://pixel.quantserve.com/pixel cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://pixel.quantserve.com/pixel cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://pixel.quantserve.com/pixel cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://pixel.quantserve.com/pixel cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://pixel.quantserve.com/pixel cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://pixel.quantserve.com/pixel cookieFound: false, false, false, false, false |
Scorecard Research Beacon
Tests whether the browser stops cookies from sb.scorecardresearch.com from tracking users across websites. |
passed: true, true, true, true, true url: https://sb.scorecardresearch.com/internal-c2/default/cs.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://sb.scorecardresearch.com/internal-c2/default/cs.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://sb.scorecardresearch.com/internal-c2/default/cs.js cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://sb.scorecardresearch.com/internal-c2/default/cs.js cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://sb.scorecardresearch.com/internal-c2/default/cs.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://sb.scorecardresearch.com/internal-c2/default/cs.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://sb.scorecardresearch.com/internal-c2/default/cs.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://sb.scorecardresearch.com/internal-c2/default/cs.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://sb.scorecardresearch.com/internal-c2/default/cs.js cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://sb.scorecardresearch.com/internal-c2/default/cs.js cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://sb.scorecardresearch.com/internal-c2/default/cs.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://sb.scorecardresearch.com/internal-c2/default/cs.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://sb.scorecardresearch.com/internal-c2/default/cs.js cookieFound: false, false, false, false, false |
Taboola
Tests whether the browser stops cookies from trc.taboola.com from tracking users across websites. |
passed: true, true, true, true, true url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://trc.taboola.com/futureplc-tomsguide/trc/3/json cookieFound: false, false, false, false, false |
Twitter pixel
Tests whether the browser stops cookies from t.co from tracking users across websites. |
passed: true, true, true, true, true url: https://t.co/i/adsct cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://t.co/i/adsct cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://t.co/i/adsct cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://t.co/i/adsct cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://t.co/i/adsct cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://t.co/i/adsct cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://t.co/i/adsct cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://t.co/i/adsct cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://t.co/i/adsct cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://t.co/i/adsct cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://t.co/i/adsct cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://t.co/i/adsct cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://t.co/i/adsct cookieFound: false, false, false, false, false |
Yandex Ads
Tests whether the browser stops cookies from yandex.ru from tracking users across websites. |
passed: true, true, true, true, true url: https://yandex.ru/ads/system/header-bidding.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://yandex.ru/ads/system/header-bidding.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://yandex.ru/ads/system/header-bidding.js cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://yandex.ru/ads/system/header-bidding.js cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://yandex.ru/ads/system/header-bidding.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://yandex.ru/ads/system/header-bidding.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://yandex.ru/ads/system/header-bidding.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://yandex.ru/ads/system/header-bidding.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://yandex.ru/ads/system/header-bidding.js cookieFound: false, false, false, false, false |
passed: true, true, true, true url: https://yandex.ru/ads/system/header-bidding.js cookieFound: false, false, false, false |
passed: true, true, true, true, true url: https://yandex.ru/ads/system/header-bidding.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://yandex.ru/ads/system/header-bidding.js cookieFound: false, false, false, false, false |
passed: true, true, true, true, true url: https://yandex.ru/ads/system/header-bidding.js cookieFound: false, false, false, false, false |
Cross-session first-party tracking testsWhich browsers prevent websites from tracking you across browser sessions?
A common vulnerability of web browsers is that they allow websites ("first parties") to 'tag' your browser with some tracking data. This tag can be used to re-identify you when you return to a website you visited before. This category of leaks can be prevented by browser if they clean or isolate data between browser sessions. (In cases where a user has logged into a website or entered detailed information, it may be justifiable for a browser to retain information across sessions. These tests check when no such justification exists: when you have entered no significant information into a website, will the browser still retain data that allows you to be tracked across sessions?) |
|||||||||||||
Alt-Svc
Alt-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 = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same session: h3, h3, h3, h3, h3 result, different session: h2, h2, h2, h2, h2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
write: async () => { // Clear Alt-Svc caching first. let responseText = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same session: h2, h2, h2, h2, h2 result, different session: 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 = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same session: h3, h3, h3, h3, h3 result, different session: h2, h2, h2, h2, h2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
write: async () => { // Clear Alt-Svc caching first. let responseText = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same session: h3, h2, h3, h2 result, different session: h2, h3, h2, h3 unsupported: false, true, false, true passed: true, true test failed: false, false, false, false |
write: async () => { // Clear Alt-Svc caching first. let responseText = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same session: h3, h3, h3, h3, h3 result, different session: h2, h2, h2, h2, h2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
write: async () => { // Clear Alt-Svc caching first. let responseText = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same session: h3, h3, h3, h3, h3 result, different session: h2, h2, h2, h2, h2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
write: async () => { // Clear Alt-Svc caching first. let responseText = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same session: h3, h3, h3, h3, h3 result, different session: h2, h2, h2, h2, h2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
write: async () => { // Clear Alt-Svc caching first. let responseText = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same session: h3, h3, h3, h3, h3 result, different session: h2, h2, h2, h2, h2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
write: async () => { // Clear Alt-Svc caching first. let responseText = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same session: h3, h3, h3, h3, h3 result, different session: h2, h2, h2, h2, h2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
write: async () => { // Clear Alt-Svc caching first. let responseText = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same session: h2, h2, h2, h2 result, different session: h2, h2, h2, h2 unsupported: true, true, true, true passed: undefined test failed: false, false, false, false |
write: async () => { // Clear Alt-Svc caching first. let responseText = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same session: h2, h2, h2, h2, h2 result, different session: 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 = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same session: h3, h3, h3, h3, h3 result, different session: h2, h2, h2, h2, h2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
write: async () => { // Clear Alt-Svc caching first. let responseText = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same session: h3, h3, h3, h3, h3 result, different session: h2, h2, h2, h2, h2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
CacheStorage
The 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 session: e5519e19-3a86-491c-ad7d-877a716f9039_1p, b490967a-09b6-4321-bb08-182238b4a282_1p, 005d1c84-b923-4777-b2b4-646f0f20ac85_1p, 1c2cc545-57f8-49a4-af3f-da8ab9fcfd4e_1p, 250f3351-9ff0-4d54-b53f-bd9b54354c78_1p result, different session: Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading '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 session: e7bebf0a-9623-4709-b481-47a318b6f037_1p, e4ef1561-018c-4570-b984-47b3c459b7eb_1p, 3c678a65-4546-4a33-a7d6-dcb258964678_1p, 80255f8c-1cdb-4b4d-8935-b12be3c4f16b_1p, 2d52c277-29ba-4fc1-bb25-d9dcb805bd07_1p result, different session: Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading '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 session: daf90757-b1f7-418e-ab53-dbd391820218_1p, d1be8c6c-510b-49ec-aef7-af0dab3c09ed_1p, 1e68e254-000a-45e1-b022-2c599a737ccb_1p, b6dff3a4-a6da-440a-bd7d-652bc0c1c5fe_1p, b9d20250-6980-45c4-91c6-154aa4f0c059_1p result, different session: Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading '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 session: 8d9b75ae-6d01-4ffe-bedb-4aa3d9d44eb3_1p, 81a2c55d-d252-4212-be43-7d64517376bd_1p, 23601d7c-fb58-46da-b073-4d037b065160_1p, 0f10a8af-da07-4a33-aa45-29da6b03cd78_1p result, different session: 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 passed: true, true, true, true test failed: 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 session: aa29142e-96b1-4b0b-bb8d-d330211d46ef_1p, da550f8c-d76f-43c5-b569-cad1c27dd80e_1p, 83d9b3d1-37fa-4ccf-8382-1e5211bfba71_1p, 2889d794-dda8-4e69-9e11-699d711a082a_1p, 09030978-b29b-4401-8d9e-20a51d44dbf6_1p result, different session: Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading '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 session: 2d6c06b3-69f7-4a25-a0e2-d98293c8419d_1p, b4645eec-b868-4ab5-849a-b17fb56c62a9_1p, 66d28c1e-d1e1-4c74-9e22-f23f4af78732_1p, 7ad596ca-c6e2-45d9-8ee7-cc28f4f96ddd_1p, abb50bae-7cfe-4c12-9cfe-ed946879d183_1p result, different session: Error: can't access property "url", cacheKeys[0] is undefined, Error: can't access property "url", cacheKeys[0] is undefined, Error: can't access property "url", cacheKeys[0] is undefined, Error: can't access property "url", cacheKeys[0] is undefined, Error: can't access property "url", cacheKeys[0] is undefined 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 session: ef0aa6ec-38e4-4764-bbd1-82dd11445c24_1p, 7baf3bd2-f78f-4a04-a7df-6ef4243b9518_1p, e991020d-3edf-48c9-bdcc-128c1222f27a_1p, d1773dbb-1a5e-43e5-88dd-bc966d9f9c3d_1p, de547874-ab8b-4bde-a5c5-e795e586e73e_1p result, different session: Error: can't access property "url", cacheKeys[0] is undefined, Error: can't access property "url", cacheKeys[0] is undefined, Error: can't access property "url", cacheKeys[0] is undefined, Error: can't access property "url", cacheKeys[0] is undefined, Error: can't access property "url", cacheKeys[0] is undefined 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 session: fbe3ef70-c9b4-4ecb-bd0f-8b33439ab656_1p, f9315ed5-a4a9-4c27-9eda-378b8f0d3b7c_1p, 82349fff-73dc-4999-be06-bc5ef0f05c9c_1p, f6446da3-cde1-4b2c-9fb6-95cfe0df79b0_1p, b2ca5b88-cb93-40cf-8e19-e396f306d991_1p result, different session: Error: cacheKeys[0] is undefined, Error: cacheKeys[0] is undefined, Error: cacheKeys[0] is undefined, Error: cacheKeys[0] is undefined, Error: cacheKeys[0] is undefined 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 session: 68ee9f0e-bffd-4faf-9d8f-fc06949ec786_1p, ed81b5e3-5587-4800-a244-a0dfd866fb3b_1p, 024116c3-ae0b-4da8-9a6d-8c4163baf033_1p, 565bfeb6-fe62-4ebb-b63c-ab32b0934145_1p, 1158aebf-466f-4e30-a937-f288891de9d5_1p result, different session: Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading '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 session: 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') result, different session: 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: true, true, true, true passed: undefined test failed: 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 session: a2e533c4-2dd6-49e3-8076-8af6c436b065_1p, 6ca7d38b-5b34-4764-89fd-8536e320b15d_1p, 1ee4b4ff-13e0-4529-9be9-279efa210be6_1p, 2bac0ce0-5bdd-46ab-b431-799ca3a6c289_1p, bf77a72a-d400-4c8e-9a49-39df3b1eb054_1p result, different session: Error: cacheKeys[0] is undefined, Error: cacheKeys[0] is undefined, Error: cacheKeys[0] is undefined, Error: cacheKeys[0] is undefined, Error: cacheKeys[0] is undefined 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 session: cefd4548-c20f-4153-8115-7b2d691b42a0_1p, 729070d5-2317-42d2-8b8c-e360175cc24f_1p, 32f5aa48-975c-4a47-baaf-a05c114d096f_1p, 29c2a985-0935-4131-b322-279dc6173e4f_1p, 8d2fa17d-f3d5-4308-8cef-59d1e70a16cd_1p result, different session: Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading '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 session: 9f0b9357-a378-494f-8f86-5d520f418441_1p, 93be6a66-4f73-42b4-af8e-ec08ea3034c0_1p, 51160da8-e7fc-4e5e-85fa-33d923696e92_1p, 4f6b486b-287d-41e2-8204-90f755368ed1_1p, 4f7c170c-eb0f-4d6a-927f-c817033dd4c1_1p result, different session: Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading '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 session: e5519e19-3a86-491c-ad7d-877a716f9039_1p_http, b490967a-09b6-4321-bb08-182238b4a282_1p_http, 005d1c84-b923-4777-b2b4-646f0f20ac85_1p_http, 1c2cc545-57f8-49a4-af3f-da8ab9fcfd4e_1p_http, 250f3351-9ff0-4d54-b53f-bd9b54354c78_1p_http result, different session: , , , , 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 session: e7bebf0a-9623-4709-b481-47a318b6f037_1p_http, e4ef1561-018c-4570-b984-47b3c459b7eb_1p_http, 3c678a65-4546-4a33-a7d6-dcb258964678_1p_http, 80255f8c-1cdb-4b4d-8935-b12be3c4f16b_1p_http, 2d52c277-29ba-4fc1-bb25-d9dcb805bd07_1p_http result, different session: , , , , 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 session: daf90757-b1f7-418e-ab53-dbd391820218_1p_http, d1be8c6c-510b-49ec-aef7-af0dab3c09ed_1p_http, 1e68e254-000a-45e1-b022-2c599a737ccb_1p_http, b6dff3a4-a6da-440a-bd7d-652bc0c1c5fe_1p_http, b9d20250-6980-45c4-91c6-154aa4f0c059_1p_http result, different session: , , , , 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 session: 8d9b75ae-6d01-4ffe-bedb-4aa3d9d44eb3_1p_http, 81a2c55d-d252-4212-be43-7d64517376bd_1p_http, 23601d7c-fb58-46da-b073-4d037b065160_1p_http, 0f10a8af-da07-4a33-aa45-29da6b03cd78_1p_http result, different session: 8d9b75ae-6d01-4ffe-bedb-4aa3d9d44eb3_1p_http, 81a2c55d-d252-4212-be43-7d64517376bd_1p_http, 23601d7c-fb58-46da-b073-4d037b065160_1p_http, 0f10a8af-da07-4a33-aa45-29da6b03cd78_1p_http unsupported: false, false, false, false passed: false, false, false, false test failed: 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 session: aa29142e-96b1-4b0b-bb8d-d330211d46ef_1p_http, da550f8c-d76f-43c5-b569-cad1c27dd80e_1p_http, 83d9b3d1-37fa-4ccf-8382-1e5211bfba71_1p_http, 2889d794-dda8-4e69-9e11-699d711a082a_1p_http, 09030978-b29b-4401-8d9e-20a51d44dbf6_1p_http result, different session: , , , , 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 session: 2d6c06b3-69f7-4a25-a0e2-d98293c8419d_1p_http, b4645eec-b868-4ab5-849a-b17fb56c62a9_1p_http, 66d28c1e-d1e1-4c74-9e22-f23f4af78732_1p_http, 7ad596ca-c6e2-45d9-8ee7-cc28f4f96ddd_1p_http, abb50bae-7cfe-4c12-9cfe-ed946879d183_1p_http result, different session: , , , , 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 session: ef0aa6ec-38e4-4764-bbd1-82dd11445c24_1p_http, 7baf3bd2-f78f-4a04-a7df-6ef4243b9518_1p_http, e991020d-3edf-48c9-bdcc-128c1222f27a_1p_http, d1773dbb-1a5e-43e5-88dd-bc966d9f9c3d_1p_http, de547874-ab8b-4bde-a5c5-e795e586e73e_1p_http result, different session: , , , , 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 session: fbe3ef70-c9b4-4ecb-bd0f-8b33439ab656_1p_http, f9315ed5-a4a9-4c27-9eda-378b8f0d3b7c_1p_http, 82349fff-73dc-4999-be06-bc5ef0f05c9c_1p_http, f6446da3-cde1-4b2c-9fb6-95cfe0df79b0_1p_http, b2ca5b88-cb93-40cf-8e19-e396f306d991_1p_http result, different session: , , , , 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 session: 68ee9f0e-bffd-4faf-9d8f-fc06949ec786_1p_http, ed81b5e3-5587-4800-a244-a0dfd866fb3b_1p_http, 024116c3-ae0b-4da8-9a6d-8c4163baf033_1p_http, 565bfeb6-fe62-4ebb-b63c-ab32b0934145_1p_http, 1158aebf-466f-4e30-a937-f288891de9d5_1p_http result, different session: , , , , 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 session: , , , result, different session: , , , unsupported: true, true, true, true passed: undefined test failed: 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 session: a2e533c4-2dd6-49e3-8076-8af6c436b065_1p_http, 6ca7d38b-5b34-4764-89fd-8536e320b15d_1p_http, 1ee4b4ff-13e0-4529-9be9-279efa210be6_1p_http, 2bac0ce0-5bdd-46ab-b431-799ca3a6c289_1p_http, bf77a72a-d400-4c8e-9a49-39df3b1eb054_1p_http result, different session: , , , , 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 session: cefd4548-c20f-4153-8115-7b2d691b42a0_1p_http, 729070d5-2317-42d2-8b8c-e360175cc24f_1p_http, 32f5aa48-975c-4a47-baaf-a05c114d096f_1p_http, 29c2a985-0935-4131-b322-279dc6173e4f_1p_http, 8d2fa17d-f3d5-4308-8cef-59d1e70a16cd_1p_http result, different session: , , , , 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 session: 9f0b9357-a378-494f-8f86-5d520f418441_1p_http, 93be6a66-4f73-42b4-af8e-ec08ea3034c0_1p_http, 51160da8-e7fc-4e5e-85fa-33d923696e92_1p_http, 4f6b486b-287d-41e2-8204-90f755368ed1_1p_http, 4f7c170c-eb0f-4d6a-927f-c817033dd4c1_1p_http result, different session: , , , , 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; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same session: e5519e19-3a86-491c-ad7d-877a716f9039_1p_js, b490967a-09b6-4321-bb08-182238b4a282_1p_js, 005d1c84-b923-4777-b2b4-646f0f20ac85_1p_js, 1c2cc545-57f8-49a4-af3f-da8ab9fcfd4e_1p_js, 250f3351-9ff0-4d54-b53f-bd9b54354c78_1p_js result, different session: , , , , 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; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same session: e7bebf0a-9623-4709-b481-47a318b6f037_1p_js, e4ef1561-018c-4570-b984-47b3c459b7eb_1p_js, 3c678a65-4546-4a33-a7d6-dcb258964678_1p_js, 80255f8c-1cdb-4b4d-8935-b12be3c4f16b_1p_js, 2d52c277-29ba-4fc1-bb25-d9dcb805bd07_1p_js result, different session: , , , , 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; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same session: daf90757-b1f7-418e-ab53-dbd391820218_1p_js, d1be8c6c-510b-49ec-aef7-af0dab3c09ed_1p_js, 1e68e254-000a-45e1-b022-2c599a737ccb_1p_js, b6dff3a4-a6da-440a-bd7d-652bc0c1c5fe_1p_js, b9d20250-6980-45c4-91c6-154aa4f0c059_1p_js result, different session: , , , , 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; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same session: 8d9b75ae-6d01-4ffe-bedb-4aa3d9d44eb3_1p_js, 81a2c55d-d252-4212-be43-7d64517376bd_1p_js, 23601d7c-fb58-46da-b073-4d037b065160_1p_js, 0f10a8af-da07-4a33-aa45-29da6b03cd78_1p_js result, different session: , , , unsupported: false, false, false, false passed: true, true, true, true test failed: false, false, false, false |
write: (secret) => { document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same session: aa29142e-96b1-4b0b-bb8d-d330211d46ef_1p_js, da550f8c-d76f-43c5-b569-cad1c27dd80e_1p_js, 83d9b3d1-37fa-4ccf-8382-1e5211bfba71_1p_js, 2889d794-dda8-4e69-9e11-699d711a082a_1p_js, 09030978-b29b-4401-8d9e-20a51d44dbf6_1p_js result, different session: , , , , 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; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same session: 2d6c06b3-69f7-4a25-a0e2-d98293c8419d_1p_js, b4645eec-b868-4ab5-849a-b17fb56c62a9_1p_js, 66d28c1e-d1e1-4c74-9e22-f23f4af78732_1p_js, 7ad596ca-c6e2-45d9-8ee7-cc28f4f96ddd_1p_js, abb50bae-7cfe-4c12-9cfe-ed946879d183_1p_js result, different session: , , , , 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; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same session: ef0aa6ec-38e4-4764-bbd1-82dd11445c24_1p_js, 7baf3bd2-f78f-4a04-a7df-6ef4243b9518_1p_js, e991020d-3edf-48c9-bdcc-128c1222f27a_1p_js, d1773dbb-1a5e-43e5-88dd-bc966d9f9c3d_1p_js, de547874-ab8b-4bde-a5c5-e795e586e73e_1p_js result, different session: , , , , 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; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same session: fbe3ef70-c9b4-4ecb-bd0f-8b33439ab656_1p_js, f9315ed5-a4a9-4c27-9eda-378b8f0d3b7c_1p_js, 82349fff-73dc-4999-be06-bc5ef0f05c9c_1p_js, f6446da3-cde1-4b2c-9fb6-95cfe0df79b0_1p_js, b2ca5b88-cb93-40cf-8e19-e396f306d991_1p_js result, different session: , , , , 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; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same session: 68ee9f0e-bffd-4faf-9d8f-fc06949ec786_1p_js, ed81b5e3-5587-4800-a244-a0dfd866fb3b_1p_js, 024116c3-ae0b-4da8-9a6d-8c4163baf033_1p_js, 565bfeb6-fe62-4ebb-b63c-ab32b0934145_1p_js, 1158aebf-466f-4e30-a937-f288891de9d5_1p_js result, different session: , , , , 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; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same session: , , , result, different session: , , , unsupported: true, true, true, true passed: undefined test failed: false, false, false, false |
write: (secret) => { document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same session: a2e533c4-2dd6-49e3-8076-8af6c436b065_1p_js, 6ca7d38b-5b34-4764-89fd-8536e320b15d_1p_js, 1ee4b4ff-13e0-4529-9be9-279efa210be6_1p_js, 2bac0ce0-5bdd-46ab-b431-799ca3a6c289_1p_js, bf77a72a-d400-4c8e-9a49-39df3b1eb054_1p_js result, different session: , , , , 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; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same session: cefd4548-c20f-4153-8115-7b2d691b42a0_1p_js, 729070d5-2317-42d2-8b8c-e360175cc24f_1p_js, 32f5aa48-975c-4a47-baaf-a05c114d096f_1p_js, 29c2a985-0935-4131-b322-279dc6173e4f_1p_js, 8d2fa17d-f3d5-4308-8cef-59d1e70a16cd_1p_js result, different session: , , , , 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; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same session: 9f0b9357-a378-494f-8f86-5d520f418441_1p_js, 93be6a66-4f73-42b4-af8e-ec08ea3034c0_1p_js, 51160da8-e7fc-4e5e-85fa-33d923696e92_1p_js, 4f6b486b-287d-41e2-8204-90f755368ed1_1p_js, 4f7c170c-eb0f-4d6a-927f-c817033dd4c1_1p_js result, different session: , , , , unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
CookieStore
The 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 session: e5519e19-3a86-491c-ad7d-877a716f9039_1p, b490967a-09b6-4321-bb08-182238b4a282_1p, 005d1c84-b923-4777-b2b4-646f0f20ac85_1p, 1c2cc545-57f8-49a4-af3f-da8ab9fcfd4e_1p, 250f3351-9ff0-4d54-b53f-bd9b54354c78_1p result, different session: , , , , unsupported: false, false, false, false, false passed: true, true, true, true, true 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 session: e7bebf0a-9623-4709-b481-47a318b6f037_1p, e4ef1561-018c-4570-b984-47b3c459b7eb_1p, 3c678a65-4546-4a33-a7d6-dcb258964678_1p, 80255f8c-1cdb-4b4d-8935-b12be3c4f16b_1p, 2d52c277-29ba-4fc1-bb25-d9dcb805bd07_1p result, different session: , , , , unsupported: false, false, false, false, false passed: true, true, true, true, true 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 session: daf90757-b1f7-418e-ab53-dbd391820218_1p, d1be8c6c-510b-49ec-aef7-af0dab3c09ed_1p, 1e68e254-000a-45e1-b022-2c599a737ccb_1p, b6dff3a4-a6da-440a-bd7d-652bc0c1c5fe_1p, b9d20250-6980-45c4-91c6-154aa4f0c059_1p result, different session: , , , , unsupported: false, false, false, false, false passed: true, true, true, true, true 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 session: 8d9b75ae-6d01-4ffe-bedb-4aa3d9d44eb3_1p, 81a2c55d-d252-4212-be43-7d64517376bd_1p, 23601d7c-fb58-46da-b073-4d037b065160_1p, 0f10a8af-da07-4a33-aa45-29da6b03cd78_1p result, different session: , , , unsupported: false, false, false, false passed: true, true, true, true test failed: 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 session: aa29142e-96b1-4b0b-bb8d-d330211d46ef_1p, da550f8c-d76f-43c5-b569-cad1c27dd80e_1p, 83d9b3d1-37fa-4ccf-8382-1e5211bfba71_1p, 2889d794-dda8-4e69-9e11-699d711a082a_1p, 09030978-b29b-4401-8d9e-20a51d44dbf6_1p result, different session: , , , , unsupported: false, false, false, false, false passed: true, true, true, true, true 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 session: 2d6c06b3-69f7-4a25-a0e2-d98293c8419d_1p, b4645eec-b868-4ab5-849a-b17fb56c62a9_1p, 66d28c1e-d1e1-4c74-9e22-f23f4af78732_1p, 7ad596ca-c6e2-45d9-8ee7-cc28f4f96ddd_1p, abb50bae-7cfe-4c12-9cfe-ed946879d183_1p result, different session: , , , , unsupported: false, false, false, false, false passed: true, true, true, true, true 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 session: ef0aa6ec-38e4-4764-bbd1-82dd11445c24_1p, 7baf3bd2-f78f-4a04-a7df-6ef4243b9518_1p, e991020d-3edf-48c9-bdcc-128c1222f27a_1p, d1773dbb-1a5e-43e5-88dd-bc966d9f9c3d_1p, de547874-ab8b-4bde-a5c5-e795e586e73e_1p result, different session: , , , , unsupported: false, false, false, false, false passed: true, true, true, true, true 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 session: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported result, different session: 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 session: 68ee9f0e-bffd-4faf-9d8f-fc06949ec786_1p, ed81b5e3-5587-4800-a244-a0dfd866fb3b_1p, 024116c3-ae0b-4da8-9a6d-8c4163baf033_1p, 565bfeb6-fe62-4ebb-b63c-ab32b0934145_1p, 1158aebf-466f-4e30-a937-f288891de9d5_1p result, different session: , , , , unsupported: false, false, false, false, false passed: true, true, true, true, true 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 session: , , , result, different session: , , , unsupported: true, true, true, true passed: undefined test failed: 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 session: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported result, different session: 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 session: cefd4548-c20f-4153-8115-7b2d691b42a0_1p, 729070d5-2317-42d2-8b8c-e360175cc24f_1p, 32f5aa48-975c-4a47-baaf-a05c114d096f_1p, 29c2a985-0935-4131-b322-279dc6173e4f_1p, 8d2fa17d-f3d5-4308-8cef-59d1e70a16cd_1p result, different session: , , , , unsupported: false, false, false, false, false passed: true, true, true, true, true 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 session: 9f0b9357-a378-494f-8f86-5d520f418441_1p, 93be6a66-4f73-42b4-af8e-ec08ea3034c0_1p, 51160da8-e7fc-4e5e-85fa-33d923696e92_1p, 4f6b486b-287d-41e2-8204-90f755368ed1_1p, 4f7c170c-eb0f-4d6a-927f-c817033dd4c1_1p result, different session: , , , , unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
CSS cache
CSS 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 session: fake_3344589203344348, fake_524802988653241, fake_545441136223737, fake_4101086318357796, fake_9869568720486954 result, different session: fake_3118229375543793, fake_19649261295094123, fake_5096391348376006, fake_10377458621376912, fake_29826082391501796 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 session: fake_15836548180826893, fake_015452541038015966, fake_48755171549831444, fake_4009576063188862, fake_05531973037211557 result, different session: fake_10349920366061438, fake_802566957967046, fake_6185929674891923, fake_5922059839238336, fake_40517915956083983 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 session: fake_15850658185537458, fake_6601324765613383, fake_003377323407235844, fake_28121520884147744, fake_2936739571655813 result, different session: fake_3985400857798034, fake_4463168743374746, fake_7140976544169344, fake_6151549229607762, fake_8548650974064163 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 session: fake_17487258959539864, fake_8821461176961627, fake_9070457275583008, fake_7293338618546221 result, different session: fake_17487258959539864, fake_8821461176961627, fake_9070457275583008, fake_7293338618546221 unsupported: false, false, false, false passed: false, false, false, false test failed: 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 session: fake_7317540911416007, fake_44801071022046535, fake_18592763918150035, fake_8977142568908429, fake_41141612474385036 result, different session: fake_5162168359161432, fake_2135069078348466, fake_7375997059330694, fake_09625456718394809, fake_0623735218708561 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 session: fake_8413129345251034, fake_4341377378676876, fake_13864647909390082, fake_5998003867746888, fake_9545473794114459 result, different session: fake_6015099213298387, fake_009128473197928866, fake_08421864521581135, fake_34952363807794584, fake_04003346632627558 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 session: fake_5707128685221485, fake_47906578356636365, fake_242170336247302, fake_4436163063659033, fake_6080846039913963 result, different session: fake_6596140593699618, fake_32001560781575367, fake_38422124451345185, fake_7890807213926356, fake_293077587190145 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 session: fake_05256865827307822, fake_3930947105391671, fake_26101533820183365, fake_4750789229153889, fake_19481368253608555 result, different session: fake_0704332252852018, fake_9564217348598052, fake_5469686187021967, fake_6737179312397421, fake_9621820180310192 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 session: fake_47563099131653575, fake_9868502917978874, fake_06184186411827941, fake_8329917746950914, fake_1325327672228318 result, different session: fake_6344451183065902, fake_1634638520153162, fake_39829145375668973, fake_2970495588372908, fake_13782512951121229 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 session: fake_6504682752723998, fake_3500668933829296, fake_28674103413459284, fake_970120907180889 result, different session: fake_10166753819404284, fake_24115149352373355, fake_9576802949259138, fake_19671611054045446 unsupported: false, false, false, false passed: true, true, true, true test failed: 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 session: fake_8910284698288997, fake_5572529110142634, fake_6890630427051907, fake_5163629504276208, fake_5553918023332134 result, different session: fake_9249585991776181, fake_8737907929547393, fake_24353187682545463, fake_07327188490785663, fake_8163407291877074 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 session: fake_6672813215066558, fake_8075299164225629, fake_23289868615735498, fake_3635681945038691, fake_7113360235806412 result, different session: fake_2917046675683421, fake_5220755407079802, fake_7553518034271618, fake_31561520226939765, fake_8550277835288749 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 session: fake_127425289868619, fake_4665625064554333, fake_030159730924834705, fake_694158137474306, fake_7733545189370878 result, different session: fake_7520959407198768, fake_7628518160779489, fake_2234171867268362, fake_9215608525278902, fake_4961788254627184 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
favicon cache
A 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(2000); 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 session: 1, 1, 1, 1, 1 result, different session: 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(2000); 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 session: 1, 1, 1, 1, 1 result, different session: 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(2000); 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 session: 1, 1, 1, 1, 1 result, different session: 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(2000); 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 session: 1, 1, 1, 1 result, different session: 1, 1, 1, 1 unsupported: false, false, false, false passed: false, false, false, false test failed: false, false, false, false |
write: (key) => key read: async (key) => { // Wait for the favicon to load (defined in supercookies.html) await sleepMs(2000); 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 session: 1, 1, 1, 1, 1 result, different session: 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(2000); 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 session: 1, 1, 1, 1, 1 result, different session: 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(2000); 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 session: 1, 1, 1, 1, 1 result, different session: 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(2000); 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 session: 1, 1, 1, 1, 1 result, different session: 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(2000); 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 session: 1, 1, 1, 1, 1 result, different session: 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(2000); 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 session: 1, 1, 1, 1 result, different session: 2, 2, 2, 2 unsupported: false, false, false, false passed: true, true, true, true test failed: false, false, false, false |
write: (key) => key read: async (key) => { // Wait for the favicon to load (defined in supercookies.html) await sleepMs(2000); 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 session: 1, 1, 1, 1, 1 result, different session: 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(2000); 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 session: 1, 1, 1, 1, 1 result, different session: 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(2000); 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 session: 2, 2, 2, 2, 2 result, different session: 4, 4, 4, 4, 4 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
fetch cache
When 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1 result, different session: 1, 1, 1, 1 unsupported: false, false, false, false passed: false, false, false, false test failed: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 2, 2, 2, 2 result, different session: 3, 3, 3, 3 unsupported: false, false, false, false passed: true, true, true, true test failed: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 cache
Web 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1 result, different session: 1, 1, 1, 1 unsupported: false, false, false, false passed: false, false, false, false test failed: 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 2, 2, 2, 2 result, different session: 3, 3, 3, 3 unsupported: false, false, false, false passed: true, true, true, true test failed: 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 2, 2, 2, 2, 2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
iframe cache
An 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1 result, different session: 1, 1, 1, 1 unsupported: false, false, false, false passed: false, false, false, false test failed: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 2, 2, 2, 2 result, different session: 3, 3, 3, 3 unsupported: false, false, false, false passed: true, true, true, true test failed: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 cache
Caching 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: 1, 1, 1, 1 result, different session: 1, 1, 1, 1 unsupported: false, false, false, false passed: false, false, false, false test failed: 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: 2, 2, 2, 2 result, different session: 3, 3, 3, 3 unsupported: false, false, false, false passed: true, true, true, true test failed: 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: 1, 1, 1, 1, 1 result, different session: 2, 2, 2, 2, 2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
indexedDB
The 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 session: e5519e19-3a86-491c-ad7d-877a716f9039_1p, b490967a-09b6-4321-bb08-182238b4a282_1p, 005d1c84-b923-4777-b2b4-646f0f20ac85_1p, 1c2cc545-57f8-49a4-af3f-da8ab9fcfd4e_1p, 250f3351-9ff0-4d54-b53f-bd9b54354c78_1p result, different session: 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 session: e7bebf0a-9623-4709-b481-47a318b6f037_1p, e4ef1561-018c-4570-b984-47b3c459b7eb_1p, 3c678a65-4546-4a33-a7d6-dcb258964678_1p, 80255f8c-1cdb-4b4d-8935-b12be3c4f16b_1p, 2d52c277-29ba-4fc1-bb25-d9dcb805bd07_1p result, different session: 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 session: daf90757-b1f7-418e-ab53-dbd391820218_1p, d1be8c6c-510b-49ec-aef7-af0dab3c09ed_1p, 1e68e254-000a-45e1-b022-2c599a737ccb_1p, b6dff3a4-a6da-440a-bd7d-652bc0c1c5fe_1p, b9d20250-6980-45c4-91c6-154aa4f0c059_1p result, different session: 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 session: 8d9b75ae-6d01-4ffe-bedb-4aa3d9d44eb3_1p, 81a2c55d-d252-4212-be43-7d64517376bd_1p, 23601d7c-fb58-46da-b073-4d037b065160_1p, 0f10a8af-da07-4a33-aa45-29da6b03cd78_1p result, different session: undefined unsupported: false, false, false, false passed: true, true, true, true test failed: 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 session: aa29142e-96b1-4b0b-bb8d-d330211d46ef_1p, da550f8c-d76f-43c5-b569-cad1c27dd80e_1p, 83d9b3d1-37fa-4ccf-8382-1e5211bfba71_1p, 2889d794-dda8-4e69-9e11-699d711a082a_1p, 09030978-b29b-4401-8d9e-20a51d44dbf6_1p result, different session: 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 session: 2d6c06b3-69f7-4a25-a0e2-d98293c8419d_1p, b4645eec-b868-4ab5-849a-b17fb56c62a9_1p, 66d28c1e-d1e1-4c74-9e22-f23f4af78732_1p, 7ad596ca-c6e2-45d9-8ee7-cc28f4f96ddd_1p, abb50bae-7cfe-4c12-9cfe-ed946879d183_1p result, different session: 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 session: ef0aa6ec-38e4-4764-bbd1-82dd11445c24_1p, 7baf3bd2-f78f-4a04-a7df-6ef4243b9518_1p, e991020d-3edf-48c9-bdcc-128c1222f27a_1p, d1773dbb-1a5e-43e5-88dd-bc966d9f9c3d_1p, de547874-ab8b-4bde-a5c5-e795e586e73e_1p result, different session: 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 session: fbe3ef70-c9b4-4ecb-bd0f-8b33439ab656_1p, f9315ed5-a4a9-4c27-9eda-378b8f0d3b7c_1p, 82349fff-73dc-4999-be06-bc5ef0f05c9c_1p, f6446da3-cde1-4b2c-9fb6-95cfe0df79b0_1p, b2ca5b88-cb93-40cf-8e19-e396f306d991_1p result, different session: 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 session: 68ee9f0e-bffd-4faf-9d8f-fc06949ec786_1p, ed81b5e3-5587-4800-a244-a0dfd866fb3b_1p, 024116c3-ae0b-4da8-9a6d-8c4163baf033_1p, 565bfeb6-fe62-4ebb-b63c-ab32b0934145_1p, 1158aebf-466f-4e30-a937-f288891de9d5_1p result, different session: 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 session: undefined result, different session: undefined unsupported: true, true, true, true passed: undefined test failed: 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 session: a2e533c4-2dd6-49e3-8076-8af6c436b065_1p, 6ca7d38b-5b34-4764-89fd-8536e320b15d_1p, 1ee4b4ff-13e0-4529-9be9-279efa210be6_1p, 2bac0ce0-5bdd-46ab-b431-799ca3a6c289_1p, bf77a72a-d400-4c8e-9a49-39df3b1eb054_1p result, different session: 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 session: cefd4548-c20f-4153-8115-7b2d691b42a0_1p, 729070d5-2317-42d2-8b8c-e360175cc24f_1p, 32f5aa48-975c-4a47-baaf-a05c114d096f_1p, 29c2a985-0935-4131-b322-279dc6173e4f_1p, 8d2fa17d-f3d5-4308-8cef-59d1e70a16cd_1p result, different session: 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 session: 9f0b9357-a378-494f-8f86-5d520f418441_1p, 93be6a66-4f73-42b4-af8e-ec08ea3034c0_1p, 51160da8-e7fc-4e5e-85fa-33d923696e92_1p, 4f6b486b-287d-41e2-8204-90f755368ed1_1p, 4f7c170c-eb0f-4d6a-927f-c817033dd4c1_1p result, different session: undefined unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
localStorage
The 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 session: e5519e19-3a86-491c-ad7d-877a716f9039_1p, b490967a-09b6-4321-bb08-182238b4a282_1p, 005d1c84-b923-4777-b2b4-646f0f20ac85_1p, 1c2cc545-57f8-49a4-af3f-da8ab9fcfd4e_1p, 250f3351-9ff0-4d54-b53f-bd9b54354c78_1p result, different session: , , , , 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 session: e7bebf0a-9623-4709-b481-47a318b6f037_1p, e4ef1561-018c-4570-b984-47b3c459b7eb_1p, 3c678a65-4546-4a33-a7d6-dcb258964678_1p, 80255f8c-1cdb-4b4d-8935-b12be3c4f16b_1p, 2d52c277-29ba-4fc1-bb25-d9dcb805bd07_1p result, different session: , , , , 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 session: daf90757-b1f7-418e-ab53-dbd391820218_1p, d1be8c6c-510b-49ec-aef7-af0dab3c09ed_1p, 1e68e254-000a-45e1-b022-2c599a737ccb_1p, b6dff3a4-a6da-440a-bd7d-652bc0c1c5fe_1p, b9d20250-6980-45c4-91c6-154aa4f0c059_1p result, different session: , , , , 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 session: 8d9b75ae-6d01-4ffe-bedb-4aa3d9d44eb3_1p, 81a2c55d-d252-4212-be43-7d64517376bd_1p, 23601d7c-fb58-46da-b073-4d037b065160_1p, 0f10a8af-da07-4a33-aa45-29da6b03cd78_1p result, different session: , , , unsupported: false, false, false, false passed: true, true, true, true test failed: false, false, false, false |
write: (secret) => localStorage.setItem("secret", secret) read: () => localStorage.getItem("secret") result, same session: aa29142e-96b1-4b0b-bb8d-d330211d46ef_1p, da550f8c-d76f-43c5-b569-cad1c27dd80e_1p, 83d9b3d1-37fa-4ccf-8382-1e5211bfba71_1p, 2889d794-dda8-4e69-9e11-699d711a082a_1p, 09030978-b29b-4401-8d9e-20a51d44dbf6_1p result, different session: , , , , 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 session: 2d6c06b3-69f7-4a25-a0e2-d98293c8419d_1p, b4645eec-b868-4ab5-849a-b17fb56c62a9_1p, 66d28c1e-d1e1-4c74-9e22-f23f4af78732_1p, 7ad596ca-c6e2-45d9-8ee7-cc28f4f96ddd_1p, abb50bae-7cfe-4c12-9cfe-ed946879d183_1p result, different session: , , , , 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 session: ef0aa6ec-38e4-4764-bbd1-82dd11445c24_1p, 7baf3bd2-f78f-4a04-a7df-6ef4243b9518_1p, e991020d-3edf-48c9-bdcc-128c1222f27a_1p, d1773dbb-1a5e-43e5-88dd-bc966d9f9c3d_1p, de547874-ab8b-4bde-a5c5-e795e586e73e_1p result, different session: , , , , 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 session: fbe3ef70-c9b4-4ecb-bd0f-8b33439ab656_1p, f9315ed5-a4a9-4c27-9eda-378b8f0d3b7c_1p, 82349fff-73dc-4999-be06-bc5ef0f05c9c_1p, f6446da3-cde1-4b2c-9fb6-95cfe0df79b0_1p, b2ca5b88-cb93-40cf-8e19-e396f306d991_1p result, different session: , , , , 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 session: 68ee9f0e-bffd-4faf-9d8f-fc06949ec786_1p, ed81b5e3-5587-4800-a244-a0dfd866fb3b_1p, 024116c3-ae0b-4da8-9a6d-8c4163baf033_1p, 565bfeb6-fe62-4ebb-b63c-ab32b0934145_1p, 1158aebf-466f-4e30-a937-f288891de9d5_1p result, different session: , , , , 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 session: , , , result, different session: , , , unsupported: true, true, true, true passed: undefined test failed: false, false, false, false |
write: (secret) => localStorage.setItem("secret", secret) read: () => localStorage.getItem("secret") result, same session: a2e533c4-2dd6-49e3-8076-8af6c436b065_1p, 6ca7d38b-5b34-4764-89fd-8536e320b15d_1p, 1ee4b4ff-13e0-4529-9be9-279efa210be6_1p, 2bac0ce0-5bdd-46ab-b431-799ca3a6c289_1p, bf77a72a-d400-4c8e-9a49-39df3b1eb054_1p result, different session: , , , , 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 session: cefd4548-c20f-4153-8115-7b2d691b42a0_1p, 729070d5-2317-42d2-8b8c-e360175cc24f_1p, 32f5aa48-975c-4a47-baaf-a05c114d096f_1p, 29c2a985-0935-4131-b322-279dc6173e4f_1p, 8d2fa17d-f3d5-4308-8cef-59d1e70a16cd_1p result, different session: , , , , 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 session: 9f0b9357-a378-494f-8f86-5d520f418441_1p, 93be6a66-4f73-42b4-af8e-ec08ea3034c0_1p, 51160da8-e7fc-4e5e-85fa-33d923696e92_1p, 4f6b486b-287d-41e2-8204-90f755368ed1_1p, 4f7c170c-eb0f-4d6a-927f-c817033dd4c1_1p result, different session: , , , , unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
prefetch cache
A <link rel='prefetch'...> 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received result, different session: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received unsupported: true, true, true, true passed: undefined test failed: 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received result, different session: 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 session: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received result, different session: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received unsupported: true, true, true, true passed: undefined test failed: 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 session: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: 1, 1, 1, 1, 1 result, different session: 2, 2, 2, 2, 2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
script cache
Caching of scripts 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1 result, different session: 1, 1, 1, 1 unsupported: false, false, false, false passed: false, false, false, false test failed: false, false, false, false |
write: (key) => new Promise((resolve, reject) => { let script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 2, 2, 2, 2 result, different session: 3, 3, 3, 3 unsupported: false, false, false, false passed: true, true, true, true test failed: false, false, false, false |
write: (key) => new Promise((resolve, reject) => { let script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 2, 2, 2, 2, 2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
XMLHttpRequest cache
Similar 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1 result, different session: 1, 1, 1, 1 unsupported: false, false, false, false passed: false, false, false, false test failed: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 2, 2, 2, 2 result, different session: 3, 3, 3, 3 unsupported: false, false, false, false passed: true, true, true, true test failed: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 2, 2, 2, 2, 2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
Cross-session third-party tracking testsWhich browsers prevent third-party trackers from tracking you across browser sessions?
A common vulnerability of web browsers is that they allow third-party trackers to 'tag' your browser with some tracking data. This tag can be used to re-identify you when you return to a website you visited before. This category of leaks can be prevented by browser if they clean or isolate data between browser sessions. (In cases where a user has logged into a website or entered detailed information, it may be justifiable for a browser to retain information across sessions. These tests check when no such justification exists: when you have entered no significant information into a website, will the browser still retain data that allows you to be tracked across sessions?) |
|||||||||||||
Alt-Svc
Alt-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 = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same session: h3, h3, h3, h3, h3 result, different session: h2, h2, h2, h2, h2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
write: async () => { // Clear Alt-Svc caching first. let responseText = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same session: h2, h2, h2, h2, h2 result, different session: 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 = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same session: h3, h3, h3, h3, h3 result, different session: h2, h2, h2, h2, h2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
write: async () => { // Clear Alt-Svc caching first. let responseText = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same session: h3, h2, h2, h2 result, different session: h2, h3, h3, h3 unsupported: false, true, true, true passed: true test failed: false, false, false, false |
write: async () => { // Clear Alt-Svc caching first. let responseText = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same session: h3, h3, h3, h3, h3 result, different session: h2, h2, h2, h2, h2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
write: async () => { // Clear Alt-Svc caching first. let responseText = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same session: h3, h3, h3, h3, h3 result, different session: h2, h2, h2, h2, h2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
write: async () => { // Clear Alt-Svc caching first. let responseText = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same session: h3, h3, h3, h3, h3 result, different session: h2, h2, h2, h2, h2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
write: async () => { // Clear Alt-Svc caching first. let responseText = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same session: h3, h3, h3, h3, h3 result, different session: h2, h2, h2, h2, h2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
write: async () => { // Clear Alt-Svc caching first. let responseText = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same session: h3, h3, h3, h3, h3 result, different session: h2, h2, h2, h2, h2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
write: async () => { // Clear Alt-Svc caching first. let responseText = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same session: h2, h2, h2, h2 result, different session: h2, h2, h2, h2 unsupported: true, true, true, true passed: undefined test failed: false, false, false, false |
write: async () => { // Clear Alt-Svc caching first. let responseText = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same session: h2, h2, h2, h2, h2 result, different session: 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 = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same session: h3, h3, h3, h3, h3 result, different session: h2, h2, h2, h2, h2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
write: async () => { // Clear Alt-Svc caching first. let responseText = ""; for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/clear"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after clear:", responseText); // Store "h3" state in Alt-Svc cache for (let i = 0; i < 3; ++i) { await fetch(altSvcOrigin + "/set"); await sleepMs(100); } responseText = await fetchText(altSvcOrigin + "/protocol"); console.log("after set:", responseText); } read: async () => { const protocol = await fetchText(altSvcOrigin + "/protocol"); if ((new URL(location)).searchParams.get("thirdparty") === "same") { if (protocol !== "h3") { throw new Error("Unsupported"); } } return protocol; } result, same session: h3, h3, h3, h3, h3 result, different session: h2, h2, h2, h2, h2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
CacheStorage
The 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 session: e5519e19-3a86-491c-ad7d-877a716f9039_3p, b490967a-09b6-4321-bb08-182238b4a282_3p, 005d1c84-b923-4777-b2b4-646f0f20ac85_3p, 1c2cc545-57f8-49a4-af3f-da8ab9fcfd4e_3p, 250f3351-9ff0-4d54-b53f-bd9b54354c78_3p result, different session: Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading '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 session: e7bebf0a-9623-4709-b481-47a318b6f037_3p, e4ef1561-018c-4570-b984-47b3c459b7eb_3p, 3c678a65-4546-4a33-a7d6-dcb258964678_3p, 80255f8c-1cdb-4b4d-8935-b12be3c4f16b_3p, 2d52c277-29ba-4fc1-bb25-d9dcb805bd07_3p result, different session: Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading '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 session: daf90757-b1f7-418e-ab53-dbd391820218_3p, d1be8c6c-510b-49ec-aef7-af0dab3c09ed_3p, 1e68e254-000a-45e1-b022-2c599a737ccb_3p, b6dff3a4-a6da-440a-bd7d-652bc0c1c5fe_3p, b9d20250-6980-45c4-91c6-154aa4f0c059_3p result, different session: Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading '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 session: 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') result, different session: 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: true, true, true, true passed: undefined test failed: 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 session: aa29142e-96b1-4b0b-bb8d-d330211d46ef_3p, da550f8c-d76f-43c5-b569-cad1c27dd80e_3p, 83d9b3d1-37fa-4ccf-8382-1e5211bfba71_3p, 2889d794-dda8-4e69-9e11-699d711a082a_3p, 09030978-b29b-4401-8d9e-20a51d44dbf6_3p result, different session: Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading '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 session: 2d6c06b3-69f7-4a25-a0e2-d98293c8419d_3p, b4645eec-b868-4ab5-849a-b17fb56c62a9_3p, 66d28c1e-d1e1-4c74-9e22-f23f4af78732_3p, 7ad596ca-c6e2-45d9-8ee7-cc28f4f96ddd_3p, abb50bae-7cfe-4c12-9cfe-ed946879d183_3p result, different session: Error: can't access property "url", cacheKeys[0] is undefined, Error: can't access property "url", cacheKeys[0] is undefined, Error: can't access property "url", cacheKeys[0] is undefined, Error: can't access property "url", cacheKeys[0] is undefined, Error: can't access property "url", cacheKeys[0] is undefined 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 session: ef0aa6ec-38e4-4764-bbd1-82dd11445c24_3p, 7baf3bd2-f78f-4a04-a7df-6ef4243b9518_3p, e991020d-3edf-48c9-bdcc-128c1222f27a_3p, d1773dbb-1a5e-43e5-88dd-bc966d9f9c3d_3p, de547874-ab8b-4bde-a5c5-e795e586e73e_3p result, different session: Error: can't access property "url", cacheKeys[0] is undefined, Error: can't access property "url", cacheKeys[0] is undefined, Error: can't access property "url", cacheKeys[0] is undefined, Error: can't access property "url", cacheKeys[0] is undefined, Error: can't access property "url", cacheKeys[0] is undefined 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 session: Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure. result, different session: Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure. unsupported: true, true, true, true, true passed: undefined 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 session: 68ee9f0e-bffd-4faf-9d8f-fc06949ec786_3p, ed81b5e3-5587-4800-a244-a0dfd866fb3b_3p, 024116c3-ae0b-4da8-9a6d-8c4163baf033_3p, 565bfeb6-fe62-4ebb-b63c-ab32b0934145_3p, 1158aebf-466f-4e30-a937-f288891de9d5_3p result, different session: Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading '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 session: 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') result, different session: 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: true, true, true, true passed: undefined test failed: 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 session: Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure. result, different session: Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure. unsupported: true, true, true, true, true passed: undefined 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 session: cefd4548-c20f-4153-8115-7b2d691b42a0_3p, 729070d5-2317-42d2-8b8c-e360175cc24f_3p, 32f5aa48-975c-4a47-baaf-a05c114d096f_3p, 29c2a985-0935-4131-b322-279dc6173e4f_3p, 8d2fa17d-f3d5-4308-8cef-59d1e70a16cd_3p result, different session: Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading '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 session: 9f0b9357-a378-494f-8f86-5d520f418441_3p, 93be6a66-4f73-42b4-af8e-ec08ea3034c0_3p, 51160da8-e7fc-4e5e-85fa-33d923696e92_3p, 4f6b486b-287d-41e2-8204-90f755368ed1_3p, 4f7c170c-eb0f-4d6a-927f-c817033dd4c1_3p result, different session: Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading 'url'), Error: Cannot read properties of undefined (reading '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 session: e5519e19-3a86-491c-ad7d-877a716f9039_3p_http, b490967a-09b6-4321-bb08-182238b4a282_3p_http, 005d1c84-b923-4777-b2b4-646f0f20ac85_3p_http, 1c2cc545-57f8-49a4-af3f-da8ab9fcfd4e_3p_http, 250f3351-9ff0-4d54-b53f-bd9b54354c78_3p_http result, different session: , , , , 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 session: e7bebf0a-9623-4709-b481-47a318b6f037_3p_http, e4ef1561-018c-4570-b984-47b3c459b7eb_3p_http, 3c678a65-4546-4a33-a7d6-dcb258964678_3p_http, 80255f8c-1cdb-4b4d-8935-b12be3c4f16b_3p_http, 2d52c277-29ba-4fc1-bb25-d9dcb805bd07_3p_http result, different session: , , , , 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 session: , , , , result, different session: , , , , unsupported: true, true, true, true, true passed: undefined 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 session: , , , result, different session: , , , unsupported: true, true, true, true passed: undefined test failed: 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 session: , , , , result, different session: , , , , unsupported: true, true, true, true, true passed: undefined 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 session: 2d6c06b3-69f7-4a25-a0e2-d98293c8419d_3p_http, b4645eec-b868-4ab5-849a-b17fb56c62a9_3p_http, 66d28c1e-d1e1-4c74-9e22-f23f4af78732_3p_http, 7ad596ca-c6e2-45d9-8ee7-cc28f4f96ddd_3p_http, abb50bae-7cfe-4c12-9cfe-ed946879d183_3p_http result, different session: , , , , 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 session: , , , , result, different session: , , , , unsupported: true, true, true, true, true passed: undefined 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 session: , , , , result, different session: , , , , unsupported: true, true, true, true, true passed: undefined 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 session: , , , , result, different session: , , , , unsupported: true, true, true, true, true passed: undefined 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 session: , , , result, different session: , , , unsupported: true, true, true, true passed: undefined test failed: 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 session: , , , , result, different session: , , , , unsupported: true, true, true, true, true passed: undefined 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 session: , , , , result, different session: , , , , unsupported: true, true, true, true, true passed: undefined 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 session: , , , , result, different session: , , , , unsupported: true, true, true, true, true passed: undefined 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; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same session: e5519e19-3a86-491c-ad7d-877a716f9039_3p_js, b490967a-09b6-4321-bb08-182238b4a282_3p_js, 005d1c84-b923-4777-b2b4-646f0f20ac85_3p_js, 1c2cc545-57f8-49a4-af3f-da8ab9fcfd4e_3p_js, 250f3351-9ff0-4d54-b53f-bd9b54354c78_3p_js result, different session: , , , , 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; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same session: e7bebf0a-9623-4709-b481-47a318b6f037_3p_js, e4ef1561-018c-4570-b984-47b3c459b7eb_3p_js, 3c678a65-4546-4a33-a7d6-dcb258964678_3p_js, 80255f8c-1cdb-4b4d-8935-b12be3c4f16b_3p_js, 2d52c277-29ba-4fc1-bb25-d9dcb805bd07_3p_js result, different session: , , , , 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; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same session: , , , , result, different session: , , , , unsupported: true, true, true, true, true passed: undefined test failed: false, false, false, false, false |
write: (secret) => { document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same session: , , , result, different session: , , , unsupported: true, true, true, true passed: undefined test failed: false, false, false, false |
write: (secret) => { document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same session: , , , , result, different session: , , , , unsupported: true, true, true, true, true passed: undefined test failed: false, false, false, false, false |
write: (secret) => { document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same session: 2d6c06b3-69f7-4a25-a0e2-d98293c8419d_3p_js, b4645eec-b868-4ab5-849a-b17fb56c62a9_3p_js, 66d28c1e-d1e1-4c74-9e22-f23f4af78732_3p_js, 7ad596ca-c6e2-45d9-8ee7-cc28f4f96ddd_3p_js, abb50bae-7cfe-4c12-9cfe-ed946879d183_3p_js result, different session: , , , , 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; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same session: , , , , result, different session: , , , , unsupported: true, true, true, true, true passed: undefined test failed: false, false, false, false, false |
write: (secret) => { document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same session: , , , , result, different session: , , , , unsupported: true, true, true, true, true passed: undefined test failed: false, false, false, false, false |
write: (secret) => { document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same session: , , , , result, different session: , , , , unsupported: true, true, true, true, true passed: undefined test failed: false, false, false, false, false |
write: (secret) => { document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same session: , , , result, different session: , , , unsupported: true, true, true, true passed: undefined test failed: false, false, false, false |
write: (secret) => { document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same session: , , , , result, different session: , , , , unsupported: true, true, true, true, true passed: undefined test failed: false, false, false, false, false |
write: (secret) => { document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same session: , , , , result, different session: , , , , unsupported: true, true, true, true, true passed: undefined test failed: false, false, false, false, false |
write: (secret) => { document.cookie = `secret=${secret}_js; max-age=3600; SameSite=None; Secure`; } read: () => document.cookie ? document.cookie.match(/secret=([\w-]+)/)[1] : null result, same session: , , , , result, different session: , , , , unsupported: true, true, true, true, true passed: undefined test failed: false, false, false, false, false |
CookieStore
The 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 session: e5519e19-3a86-491c-ad7d-877a716f9039_3p, b490967a-09b6-4321-bb08-182238b4a282_3p, 005d1c84-b923-4777-b2b4-646f0f20ac85_3p, 1c2cc545-57f8-49a4-af3f-da8ab9fcfd4e_3p, 250f3351-9ff0-4d54-b53f-bd9b54354c78_3p result, different session: , , , , unsupported: false, false, false, false, false passed: true, true, true, true, true 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 session: e7bebf0a-9623-4709-b481-47a318b6f037_3p, e4ef1561-018c-4570-b984-47b3c459b7eb_3p, 3c678a65-4546-4a33-a7d6-dcb258964678_3p, 80255f8c-1cdb-4b4d-8935-b12be3c4f16b_3p, 2d52c277-29ba-4fc1-bb25-d9dcb805bd07_3p result, different session: , , , , unsupported: false, false, false, false, false passed: true, true, true, true, true 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 session: , , , , result, different session: , , , , 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 session: Error: Type error, Error: Type error, Error: Type error, Error: Type error result, different session: Error: Type error, Error: Type error, Error: Type error, Error: Type error unsupported: true, true, true, true passed: undefined test failed: 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 session: , , , , result, different session: , , , , 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 session: 2d6c06b3-69f7-4a25-a0e2-d98293c8419d_3p, b4645eec-b868-4ab5-849a-b17fb56c62a9_3p, 66d28c1e-d1e1-4c74-9e22-f23f4af78732_3p, 7ad596ca-c6e2-45d9-8ee7-cc28f4f96ddd_3p, abb50bae-7cfe-4c12-9cfe-ed946879d183_3p result, different session: , , , , unsupported: false, false, false, false, false passed: true, true, true, true, true 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 session: , , , , result, different session: , , , , 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 session: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported result, different session: 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 session: , , , , result, different session: , , , , 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 session: Error: Type error, Error: Type error, Error: Type error, Error: Type error result, different session: Error: Type error, Error: Type error, Error: Type error, Error: Type error unsupported: true, true, true, true passed: undefined test failed: 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 session: Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported, Error: Unsupported result, different session: 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 session: , , , , result, different session: , , , , 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 session: , , , , result, different session: , , , , unsupported: true, true, true, true, true passed: undefined test failed: false, false, false, false, false |
CSS cache
CSS 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 session: fake_007228480101660217, fake_9641281487422313, fake_6232515191490913, fake_2358561940577122, fake_27296278752769876 result, different session: fake_3749053108994207, fake_8039802514371521, fake_41711112732010136, fake_7563905629251704, fake_8257893872657991 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 session: fake_06740240658863272, fake_4201819421220301, fake_904953443890719, fake_9697411904338189, fake_7982332718541305 result, different session: fake_05281724981359903, fake_32875564522119216, fake_09119707911267239, fake_17002328736128325, fake_8433544611883241 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 session: fake_20172938979863186, fake_47209157369310817, fake_038418902357428175, fake_9328474127682527, fake_05984560134201522 result, different session: fake_8731980667372508, fake_2555520838948224, fake_7977824365520718, fake_17133192423073873, fake_844016478781145 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 session: fake_7401559433966751, fake_5132304432978412, fake_19938405998514774, fake_0027404528233136993 result, different session: fake_7401559433966751, fake_5132304432978412, fake_19938405998514774, fake_0027404528233136993 unsupported: false, false, false, false passed: false, false, false, false test failed: 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 session: fake_19354698838338358, fake_7888914884384945, fake_44083555955096454, fake_7017422079742872, fake_9201638855861598 result, different session: fake_9410980272144742, fake_23374661758652793, fake_9608919162758527, fake_5741740498285341, fake_6208064914496507 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 session: fake_2450734704119859, fake_04571829931664384, fake_5584682623043635, fake_891527318744608, fake_9148931984703765 result, different session: fake_14894070813246962, fake_2827998826500644, fake_2681609392580737, fake_7333677970270385, fake_5827068832716382 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 session: fake_142542678735609, fake_38120089902263343, fake_8157644780162481, fake_5031352510080891, fake_38854561239140306 result, different session: fake_7256001543221977, fake_2584937905930025, fake_15204670672428366, fake_5377381302916067, fake_2550697544250986 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 session: fake_6669666430614927, fake_5930150878212481, fake_44382554010890973, fake_7314441285472915, fake_9580075500641412 result, different session: fake_031221928869079818, fake_20175467115178325, fake_6967825808820436, fake_9028327766578077, fake_5819487652870134 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 session: fake_8231883226449412, fake_8515480700431437, fake_19349566366238613, fake_4446216410736574, fake_7268970623263946 result, different session: fake_26079792213325925, fake_9739956794787064, fake_23630751435670772, fake_9029635457481662, fake_9787933278715724 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 session: fake_2902331106609315, fake_91321628012906, fake_8780261226129098, fake_790665989698961 result, different session: fake_09296913800355955, fake_5641529965542458, fake_8828192971448672, fake_783386530276255 unsupported: false, false, false, false passed: true, true, true, true test failed: 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 session: fake_6444011877722995, fake_8731653566060513, fake_4564624041109946, fake_28137338145437685, fake_26240577533746 result, different session: fake_07079342889969165, fake_24505739639403012, fake_9883047611169775, fake_5322728475933298, fake_007649993971549973 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 session: fake_8223413102909958, fake_2981319140417096, fake_7913911750835354, fake_06967918941757145, fake_319300724366814 result, different session: fake_19049297089431594, fake_8642836537757894, fake_6424092532567174, fake_7431322781065204, fake_7930343239685325 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 session: fake_9589767182089144, fake_8903275012459579, fake_7587629097341027, fake_3973250653894025, fake_4876266233782025 result, different session: fake_6323734591449732, fake_774922512657884, fake_8260605236261287, fake_12380627399796262, fake_22003084359955927 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
favicon cache
A 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(2000); 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 session: 1, 1, 1, 1, 1 result, different session: 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(2000); 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 session: 1, 1, 1, 1, 1 result, different session: 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(2000); 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 session: 1, 1, 1, 1, 1 result, different session: 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(2000); 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 session: 1, 1, 1, 1 result, different session: 1, 1, 1, 1 unsupported: false, false, false, false passed: false, false, false, false test failed: false, false, false, false |
write: (key) => key read: async (key) => { // Wait for the favicon to load (defined in supercookies.html) await sleepMs(2000); 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 session: 1, 1, 1, 1, 1 result, different session: 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(2000); 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 session: 1, 1, 1, 1, 1 result, different session: 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(2000); 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 session: 1, 1, 1, 1, 1 result, different session: 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(2000); 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 session: 1, 1, 1, 1, 1 result, different session: 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(2000); 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 session: 1, 1, 1, 1, 1 result, different session: 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(2000); 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 session: 2, 2, 2, 2 result, different session: 3, 3, 3, 3 unsupported: false, false, false, false passed: true, true, true, true test failed: false, false, false, false |
write: (key) => key read: async (key) => { // Wait for the favicon to load (defined in supercookies.html) await sleepMs(2000); 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 session: 1, 1, 1, 1, 1 result, different session: 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(2000); 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 session: 1, 1, 1, 1, 1 result, different session: 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(2000); 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 session: 2, 2, 2, 2, 2 result, different session: 4, 4, 4, 4, 4 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
fetch cache
When 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1 result, different session: 1, 1, 1, 1 unsupported: false, false, false, false passed: false, false, false, false test failed: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 2, 2, 2, 2 result, different session: 3, 3, 3, 3 unsupported: false, false, false, false passed: true, true, true, true test failed: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 cache
Web 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1 result, different session: 1, 1, 1, 1 unsupported: false, false, false, false passed: false, false, false, false test failed: 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 2, 2, 2, 2 result, different session: 3, 3, 3, 3 unsupported: false, false, false, false passed: true, true, true, true test failed: 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 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) => { const text = document.createElement("span"); text.id = "text"; text.innerText = "test"; document.body.appendChild(text); const originalWidth = text.getBoundingClientRect().width; 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}"); } #text { font-family: "myFont" }`; document.getElementsByTagName("head")[0].appendChild(style); let newWidth; do { await sleepMs(100); newWidth = text.getBoundingClientRect().width; } while (newWidth < 0 || newWidth === originalWidth) let response = await fetch( testURI("ctr", "font", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 2, 2, 2, 2, 2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
iframe cache
An 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1 result, different session: 1, 1, 1, 1 unsupported: false, false, false, false passed: false, false, false, false test failed: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 2, 2, 2, 2 result, different session: 3, 3, 3, 3 unsupported: false, false, false, false passed: true, true, true, true test failed: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 cache
Caching 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: 1, 1, 1, 1 result, different session: 1, 1, 1, 1 unsupported: false, false, false, false passed: false, false, false, false test failed: 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: 2, 2, 2, 2 result, different session: 3, 3, 3, 3 unsupported: false, false, false, false passed: true, true, true, true test failed: 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: 1, 1, 1, 1, 1 result, different session: 2, 2, 2, 2, 2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
indexedDB
The 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 session: e5519e19-3a86-491c-ad7d-877a716f9039_3p, b490967a-09b6-4321-bb08-182238b4a282_3p, 005d1c84-b923-4777-b2b4-646f0f20ac85_3p, 1c2cc545-57f8-49a4-af3f-da8ab9fcfd4e_3p, 250f3351-9ff0-4d54-b53f-bd9b54354c78_3p result, different session: 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 session: e7bebf0a-9623-4709-b481-47a318b6f037_3p, e4ef1561-018c-4570-b984-47b3c459b7eb_3p, 3c678a65-4546-4a33-a7d6-dcb258964678_3p, 80255f8c-1cdb-4b4d-8935-b12be3c4f16b_3p, 2d52c277-29ba-4fc1-bb25-d9dcb805bd07_3p result, different session: 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 session: daf90757-b1f7-418e-ab53-dbd391820218_3p, d1be8c6c-510b-49ec-aef7-af0dab3c09ed_3p, 1e68e254-000a-45e1-b022-2c599a737ccb_3p, b6dff3a4-a6da-440a-bd7d-652bc0c1c5fe_3p, b9d20250-6980-45c4-91c6-154aa4f0c059_3p result, different session: 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 session: undefined result, different session: undefined unsupported: true, true, true, true passed: undefined test failed: 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 session: aa29142e-96b1-4b0b-bb8d-d330211d46ef_3p, da550f8c-d76f-43c5-b569-cad1c27dd80e_3p, 83d9b3d1-37fa-4ccf-8382-1e5211bfba71_3p, 2889d794-dda8-4e69-9e11-699d711a082a_3p, 09030978-b29b-4401-8d9e-20a51d44dbf6_3p result, different session: 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 session: 2d6c06b3-69f7-4a25-a0e2-d98293c8419d_3p, b4645eec-b868-4ab5-849a-b17fb56c62a9_3p, 66d28c1e-d1e1-4c74-9e22-f23f4af78732_3p, 7ad596ca-c6e2-45d9-8ee7-cc28f4f96ddd_3p, abb50bae-7cfe-4c12-9cfe-ed946879d183_3p result, different session: 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 session: ef0aa6ec-38e4-4764-bbd1-82dd11445c24_3p, 7baf3bd2-f78f-4a04-a7df-6ef4243b9518_3p, e991020d-3edf-48c9-bdcc-128c1222f27a_3p, d1773dbb-1a5e-43e5-88dd-bc966d9f9c3d_3p, de547874-ab8b-4bde-a5c5-e795e586e73e_3p result, different session: 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 session: Error: IDBFactory.open: The operation is insecure, Error: IDBFactory.open: The operation is insecure, Error: IDBFactory.open: The operation is insecure, Error: IDBFactory.open: The operation is insecure, Error: IDBFactory.open: The operation is insecure result, different session: Error: IDBFactory.open: The operation is insecure, Error: IDBFactory.open: The operation is insecure, Error: IDBFactory.open: The operation is insecure, Error: IDBFactory.open: The operation is insecure, Error: IDBFactory.open: The operation is insecure unsupported: true, true, true, true, true passed: undefined 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 session: 68ee9f0e-bffd-4faf-9d8f-fc06949ec786_3p, ed81b5e3-5587-4800-a244-a0dfd866fb3b_3p, 024116c3-ae0b-4da8-9a6d-8c4163baf033_3p, 565bfeb6-fe62-4ebb-b63c-ab32b0934145_3p, 1158aebf-466f-4e30-a937-f288891de9d5_3p result, different session: 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 session: undefined result, different session: undefined unsupported: true, true, true, true passed: undefined test failed: 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 session: Error: IDBFactory.open: The operation is insecure, Error: IDBFactory.open: The operation is insecure, Error: IDBFactory.open: The operation is insecure, Error: IDBFactory.open: The operation is insecure, Error: IDBFactory.open: The operation is insecure result, different session: Error: IDBFactory.open: The operation is insecure, Error: IDBFactory.open: The operation is insecure, Error: IDBFactory.open: The operation is insecure, Error: IDBFactory.open: The operation is insecure, Error: IDBFactory.open: The operation is insecure unsupported: true, true, true, true, true passed: undefined 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 session: cefd4548-c20f-4153-8115-7b2d691b42a0_3p, 729070d5-2317-42d2-8b8c-e360175cc24f_3p, 32f5aa48-975c-4a47-baaf-a05c114d096f_3p, 29c2a985-0935-4131-b322-279dc6173e4f_3p, 8d2fa17d-f3d5-4308-8cef-59d1e70a16cd_3p result, different session: 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 session: 9f0b9357-a378-494f-8f86-5d520f418441_3p, 93be6a66-4f73-42b4-af8e-ec08ea3034c0_3p, 51160da8-e7fc-4e5e-85fa-33d923696e92_3p, 4f6b486b-287d-41e2-8204-90f755368ed1_3p, 4f7c170c-eb0f-4d6a-927f-c817033dd4c1_3p result, different session: undefined unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
localStorage
The 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 session: e5519e19-3a86-491c-ad7d-877a716f9039_3p, b490967a-09b6-4321-bb08-182238b4a282_3p, 005d1c84-b923-4777-b2b4-646f0f20ac85_3p, 1c2cc545-57f8-49a4-af3f-da8ab9fcfd4e_3p, 250f3351-9ff0-4d54-b53f-bd9b54354c78_3p result, different session: , , , , 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 session: e7bebf0a-9623-4709-b481-47a318b6f037_3p, e4ef1561-018c-4570-b984-47b3c459b7eb_3p, 3c678a65-4546-4a33-a7d6-dcb258964678_3p, 80255f8c-1cdb-4b4d-8935-b12be3c4f16b_3p, 2d52c277-29ba-4fc1-bb25-d9dcb805bd07_3p result, different session: , , , , 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 session: daf90757-b1f7-418e-ab53-dbd391820218_3p, d1be8c6c-510b-49ec-aef7-af0dab3c09ed_3p, 1e68e254-000a-45e1-b022-2c599a737ccb_3p, b6dff3a4-a6da-440a-bd7d-652bc0c1c5fe_3p, b9d20250-6980-45c4-91c6-154aa4f0c059_3p result, different session: , , , , 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 session: , , , result, different session: , , , unsupported: true, true, true, true passed: undefined test failed: false, false, false, false |
write: (secret) => localStorage.setItem("secret", secret) read: () => localStorage.getItem("secret") result, same session: aa29142e-96b1-4b0b-bb8d-d330211d46ef_3p, da550f8c-d76f-43c5-b569-cad1c27dd80e_3p, 83d9b3d1-37fa-4ccf-8382-1e5211bfba71_3p, 2889d794-dda8-4e69-9e11-699d711a082a_3p, 09030978-b29b-4401-8d9e-20a51d44dbf6_3p result, different session: , , , , 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 session: 2d6c06b3-69f7-4a25-a0e2-d98293c8419d_3p, b4645eec-b868-4ab5-849a-b17fb56c62a9_3p, 66d28c1e-d1e1-4c74-9e22-f23f4af78732_3p, 7ad596ca-c6e2-45d9-8ee7-cc28f4f96ddd_3p, abb50bae-7cfe-4c12-9cfe-ed946879d183_3p result, different session: , , , , 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 session: ef0aa6ec-38e4-4764-bbd1-82dd11445c24_3p, 7baf3bd2-f78f-4a04-a7df-6ef4243b9518_3p, e991020d-3edf-48c9-bdcc-128c1222f27a_3p, d1773dbb-1a5e-43e5-88dd-bc966d9f9c3d_3p, de547874-ab8b-4bde-a5c5-e795e586e73e_3p result, different session: , , , , 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 session: Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure. result, different session: Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure. unsupported: true, true, true, true, true passed: undefined test failed: false, false, false, false, false |
write: (secret) => localStorage.setItem("secret", secret) read: () => localStorage.getItem("secret") result, same session: 68ee9f0e-bffd-4faf-9d8f-fc06949ec786_3p, ed81b5e3-5587-4800-a244-a0dfd866fb3b_3p, 024116c3-ae0b-4da8-9a6d-8c4163baf033_3p, 565bfeb6-fe62-4ebb-b63c-ab32b0934145_3p, 1158aebf-466f-4e30-a937-f288891de9d5_3p result, different session: , , , , 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 session: , , , result, different session: , , , unsupported: true, true, true, true passed: undefined test failed: false, false, false, false |
write: (secret) => localStorage.setItem("secret", secret) read: () => localStorage.getItem("secret") result, same session: Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure. result, different session: Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure., Error: The operation is insecure. unsupported: true, true, true, true, true passed: undefined test failed: false, false, false, false, false |
write: (secret) => localStorage.setItem("secret", secret) read: () => localStorage.getItem("secret") result, same session: cefd4548-c20f-4153-8115-7b2d691b42a0_3p, 729070d5-2317-42d2-8b8c-e360175cc24f_3p, 32f5aa48-975c-4a47-baaf-a05c114d096f_3p, 29c2a985-0935-4131-b322-279dc6173e4f_3p, 8d2fa17d-f3d5-4308-8cef-59d1e70a16cd_3p result, different session: , , , , 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 session: 9f0b9357-a378-494f-8f86-5d520f418441_3p, 93be6a66-4f73-42b4-af8e-ec08ea3034c0_3p, 51160da8-e7fc-4e5e-85fa-33d923696e92_3p, 4f6b486b-287d-41e2-8204-90f755368ed1_3p, 4f7c170c-eb0f-4d6a-927f-c817033dd4c1_3p result, different session: , , , , unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
prefetch cache
A <link rel='prefetch'...> 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received result, different session: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received unsupported: true, true, true, true passed: undefined test failed: 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received result, different session: 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 session: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received result, different session: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received unsupported: true, true, true, true passed: undefined test failed: 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 session: Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received, Error: No requests received result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 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 session: 1, 1, 1, 1, 1 result, different session: 2, 2, 2, 2, 2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
script cache
Caching of scripts 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1 result, different session: 1, 1, 1, 1 unsupported: false, false, false, false passed: false, false, false, false test failed: false, false, false, false |
write: (key) => new Promise((resolve, reject) => { let script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 2, 2, 2, 2 result, different session: 3, 3, 3, 3 unsupported: false, false, false, false passed: true, true, true, true test failed: false, false, false, false |
write: (key) => new Promise((resolve, reject) => { let script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 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 script = document.createElement("script"); document.body.appendChild(script); script.addEventListener("load", () => resolve(key), {once: true}); script.src = testURI("resource", "script", key); }) read: async (key) => { let script = document.createElement("script"); document.body.appendChild(script); let scriptLoadPromise = new Promise((resolve, reject) => { script.addEventListener("load", resolve, {once: true}); }); script.src = testURI("resource", "script", key); await scriptLoadPromise; let response = await fetch( testURI("ctr", "script", key), {"cache": "reload"}); return (await response.text()).trim(); } result, same session: 1, 1, 1, 1, 1 result, different session: 2, 2, 2, 2, 2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
XMLHttpRequest cache
Similar 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1 result, different session: 1, 1, 1, 1 unsupported: false, false, false, false passed: false, false, false, false test failed: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 2, 2, 2, 2 result, different session: 3, 3, 3, 3 unsupported: false, false, false, false passed: true, true, true, true test failed: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 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 session: 1, 1, 1, 1, 1 result, different session: 2, 2, 2, 2, 2 unsupported: false, false, false, false, false passed: true, true, true, true, true test failed: false, false, false, false, false |
DNS privacy testsWhich browsers keep their DNS queries encrypted?
The Domain Name System (DNS) is the method by which web browsers look up the IP address for each website you visit. In a DNS query, a web browser will ask a DNS resolver (somewhere on the internet) for the IP address corresponding to a domain name (such as nytimes.com) for a website you want to visit. Traditionally, most web browsers have sent their DNS queries unencrypted, which means your ISP or anyone else on the network between your computer and the DNS resolver can eavesdrop on the websites you visit. In recent years, web browsers and operating systems have begun to introduce encrypted DNS, including the DNS over HTTPS (DoH) protocol, to encrypt the DNS request from your browser and the response from the resolver to keep your browsing history from leaking. These tests check whether a browser is still protecting its DNS requests by sending them encrypted. |
|||||||||||||
Location: Brazil
Checks whether the browser decides to use encrypted DNS if the computer is located in Brazil. |
passed: false, true, false, false, false leak detected: true, false, true, true, true |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: false, true, false, false, false leak detected: true, false, true, true, true |
passed: true, false, false, false leak detected: false, true, true, true |
passed: false, true, false, false, false leak detected: true, false, true, true, true |
passed: true, false, false, false, true leak detected: false, true, true, true, false |
passed: true, false, false, false, true leak detected: false, true, true, true, false |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: false, true, false, false, false leak detected: true, false, true, true, true |
passed: false, true, false, true leak detected: true, false, true, false |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: false, true, false, false, false leak detected: true, false, true, true, true |
passed: false, true, false, false, false leak detected: true, false, true, true, true |
Location: China
Checks whether the browser decides to use encrypted DNS if the computer is located in China. |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: false, false, false, false leak detected: true, true, true, true |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: true, true, true, true leak detected: false, false, false, false |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
Location: Germany
Checks whether the browser decides to use encrypted DNS if the computer is located in Germany. |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: false, false, false, false leak detected: true, true, true, true |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: true, true, false, true leak detected: false, false, true, false |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
Location: India
Checks whether the browser decides to use encrypted DNS if the computer is located in India. |
passed: true, false, false, false, false leak detected: false, true, true, true, true |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: true, false, false, false, false leak detected: false, true, true, true, true |
passed: false, false, false, false leak detected: true, true, true, true |
passed: true, false, false, false, false leak detected: false, true, true, true, true |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: true, false, false, false, false leak detected: false, true, true, true, true |
passed: true, true, true, true leak detected: false, false, false, false |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: true, false, false, false, false leak detected: false, true, true, true, true |
passed: true, false, false, false, false leak detected: false, true, true, true, true |
Location: Nigeria
Checks whether the browser decides to use encrypted DNS if the computer is located in Nigeria. |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: false, false, false, false leak detected: true, true, true, true |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: false, false, true, false leak detected: true, true, false, true |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
Location: Russia
Checks whether the browser decides to use encrypted DNS if the computer is located in Russia. |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: true, false, false, false leak detected: false, true, true, true |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: true, false, false, false, false leak detected: false, true, true, true, true |
passed: true, false, false, false, false leak detected: false, true, true, true, true |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: true, true, false, true leak detected: false, false, true, false |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: false, false, false, false, true leak detected: true, true, true, true, false |
Location: United States
Checks whether the browser decides to use encrypted DNS if the computer is located in United States. |
passed: false, false, false, false, true leak detected: true, true, true, true, false |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: false, false, false, false, true leak detected: true, true, true, true, false |
passed: true, false, false, false leak detected: false, true, true, true |
passed: false, false, false, false, true leak detected: true, true, true, true, false |
passed: true, false, false, false, false leak detected: false, true, true, true, true |
passed: true, false, false, false, false leak detected: false, true, true, true, true |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: false, false, false, false, true leak detected: true, true, true, true, false |
passed: true, false, true, true leak detected: false, true, false, false |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: false, false, false, false, true leak detected: true, true, true, true, false |
passed: false, false, false, false, true leak detected: true, true, true, true, false |
OS DNS: Cloudflare
Checks whether the browser decides to use encrypted DNS if the operating system's default DNS provider is Cloudflare. |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: true, true, true, true leak detected: false, false, false, false |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: true, true, true, true leak detected: false, false, false, false |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
OS DNS: Comodo
Checks whether the browser decides to use encrypted DNS if the operating system's default DNS provider is Comodo. |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: false, false, false, false leak detected: true, true, true, true |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: false, false, false, false leak detected: true, true, true, true |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
OS DNS: Google
Checks whether the browser decides to use encrypted DNS if the operating system's default DNS provider is Google. |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: true, true, true, true leak detected: false, false, false, false |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: true, true, true, true leak detected: false, false, false, false |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
OS DNS: Quad9
Checks whether the browser decides to use encrypted DNS if the operating system's default DNS provider is Quad9. |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: true, true, true, true leak detected: false, false, false, false |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: true, true, true, true leak detected: false, false, false, false |
passed: true, true, true, true, true leak detected: false, false, false, false, false |
passed: false, false, false, false, false leak detected: true, true, true, true, true |
passed: false, false, false, false, false leak detected: true, true, true, true, true |