Listicle Privacy ๐Ÿ“… June 2026 โฑ 8 min read

10 Ways Websites Track You Without Cookies (2026)

You cleared your cookies. You opened an incognito window. You clicked "Reject All" on every cookie banner. And yet โ€” you're still being tracked. The cookie era is ending, but tracking has simply moved to harder-to-detect methods. Here are the 10 main ways sites identify you without a single cookie in sight.

1โ€“4: Fingerprinting Methods (Stateless)

These methods require no storage โ€” they reconstruct an identifier from your browser's properties on every visit.

Method #1
Canvas Fingerprinting HIGH RISK

A hidden <canvas> element renders text and shapes. Your GPU, OS, and display driver render the image with pixel-perfect uniqueness. The pixel data is hashed into your canvas fingerprint โ€” stable across browser restarts and incognito mode.

Who uses it: Advertising networks, analytics platforms, fraud detection services, paywall bypass detection.

Defense: Brave Browser (adds random noise), Firefox with RFP, Canvas Blocker extension.

Method #2
WebGL Fingerprinting HIGH RISK

The WebGL API exposes your exact GPU model via WEBGL_debug_renderer_info: e.g., "NVIDIA GeForce RTX 4090 / PCIe / SSE2". Combined with shader precision and supported extensions, it creates a hardware fingerprint that identifies your specific machine.

Defense: Brave shields (blocks WebGL debug info), Firefox RFP.

Method #3
Audio Fingerprinting HIGH RISK

Using OfflineAudioContext, a site processes a silent audio buffer through a DynamicsCompressor. The floating-point output differs minutely based on your OS, CPU, and audio hardware โ€” imperceptible but unique and stable across sessions.

Defense: Brave shields, Firefox RFP (both add noise to audio API output).

Method #4
Font Enumeration MEDIUM RISK

JavaScript probes hundreds of font names by measuring text width with canvas.measureText(). If a font is installed, the measured width differs from the fallback. The list of installed fonts is specific to your device and becomes more unique with each design tool or app you install.

Defense: Brave shields, Firefox RFP, limiting installed fonts.

5โ€“7: Storage-Based "Supercookies"

These methods use browser storage mechanisms other than HTTP cookies โ€” many of which survive cookie clearing.

Method #5
localStorage / IndexedDB Tracking HIGH RISK

localStorage and IndexedDB can store large amounts of data that persist independently of HTTP cookies. A tracker writes a unique ID to localStorage โ€” it survives "Clear Cookies" operations if the user doesn't explicitly clear Site Data.

Defense: Clear "All Site Data" (not just cookies), use Firefox Container Tabs, or use a browser that isolates site storage by default.

Method #6
ETag Tracking MEDIUM RISK

HTTP ETags are cache validation tokens. A server sends a unique ETag with a cached resource. On the next visit, the browser sends back that ETag in an If-None-Match header โ€” identifying you even after cookie clearing. The browser cache is used as a persistent identifier.

Defense: Clearing cache + cookies together, Private Browsing (prevents ETag caching).

Method #7
HSTS Supercookie MEDIUM RISK

HTTP Strict Transport Security (HSTS) entries are stored in the browser and persist across cookie clearing. A tracker creates a unique pattern of HSTS entries across subdomains. When you return, the tracker checks which subdomains have HSTS cached โ€” reconstructing your identifier.

Defense: Private/incognito mode (HSTS cleared on session end), Firefox with network.stricttransportsecurity.preloadlist enabled.

8โ€“10: Network-Level Tracking

Method #8
CNAME Cloaking HIGH RISK

CNAME cloaking disguises third-party trackers as first-party resources. A site points a subdomain like metrics.example.com via DNS CNAME to a tracker's servers. Browsers treat it as first-party, bypassing third-party cookie blocking and many ad blockers. The tracker can then set first-party cookies that survive restrictions.

Defense: Brave and Firefox 86+ perform CNAME uncloaking, blocking these requests. Most Chrome extensions cannot detect CNAME-cloaked trackers.

Method #9
IP Address + Network Fingerprint MEDIUM RISK

Your IP address, combined with ASN (internet service provider), geolocation, and latency probes, creates a "network fingerprint." Sites ping Cloudflare and Google servers and measure RTT โ€” revealing VPN usage, corporate networks, and geographic inconsistencies even when IP is masked.

Defense: VPN (changes IP) + Brave (limits latency probe accuracy via timing API restrictions).

Method #10
WebRTC IP Leak HIGH RISK

WebRTC's STUN protocol exposes your local network IP and real public IP even through a VPN. A single JavaScript call can reveal your actual IP address to any website, regardless of the proxy or VPN you're using. This is one of the most common and overlooked privacy leaks.

Defense: Disable non-proxied WebRTC in browser settings or use the WebRTC leak fix guide.

Test all of these right now
UNDETECT.CLUB tests for canvas fingerprinting, WebGL, audio, fonts, WebRTC leaks, and network signals simultaneously โ€” showing you exactly which methods expose you and how to fix each one.

Frequently Asked Questions

Can websites track me without cookies in incognito mode?
Yes. Incognito mode only prevents cookies from being saved after the session ends. Browser fingerprinting, stateless canvas/WebGL/audio hashing, network probes, and WebRTC IP leaks all work identically in incognito mode.
What is a supercookie?
A supercookie is a tracking identifier stored outside HTTP cookie storage โ€” in localStorage, IndexedDB, ETags, HSTS, service worker cache, or other persistent browser mechanisms. They often survive "Clear Cookies" unless you also clear Site Data or browser cache.
Which of these methods is hardest to defend against?
CNAME cloaking (because it bypasses most content blockers), browser fingerprinting (because the APIs used are legitimate and can't be blocked outright), and WebRTC leaks (because many users don't know their VPN doesn't prevent them). All three require specific browser-level protections, not just cookie blocking.

See Which Methods Expose You Right Now

UNDETECT.CLUB tests canvas, WebGL, audio, fonts, WebRTC, and network signals. 100% free, no signup.

[ RUN FREE SCAN ]

Related Guides

Comparison
Browser Fingerprinting vs Cookies โ€” Which Is Worse?
How-To Guide
How to Fix a WebRTC Leak in Chrome, Firefox & Brave