Fingerprinting
A technique for identifying visitors by combining browser and device characteristics like screen resolution, timezone, and browser version, without using cookies.
Fingerprinting creates a unique identifier for visitors by combining multiple browser and device attributes. Unlike cookies which store an explicit ID, fingerprinting derives identification from characteristics the browser naturally exposes.
Privacy-safe fingerprinting for analytics typically uses a limited set of attributes (IP address, user agent, screen size) combined with daily-rotating salts. This allows session identification without creating persistent tracking profiles.
The key distinction is between privacy-invasive fingerprinting (used by ad trackers to follow users across the web) and privacy-safe fingerprinting (used by analytics tools for aggregate statistics). The latter typically hashes data, rotates identifiers, and doesn't share data across sites.
When implemented responsibly, fingerprinting enables useful analytics features like session tracking and returning visitor recognition while respecting user privacy and avoiding the need for cookie consent.
Frequently asked questions
Is fingerprinting legal?
Fingerprinting legality depends on implementation and jurisdiction. Privacy-safe fingerprinting that doesn't create persistent profiles or share data across sites is generally acceptable. Invasive cross-site fingerprinting may violate privacy regulations.
How is privacy-safe fingerprinting different from tracking fingerprinting?
Privacy-safe fingerprinting uses limited attributes, rotates identifiers daily, hashes all data, and only identifies visitors within a single site. Tracking fingerprinting creates persistent profiles to follow users across the web.
Can fingerprinting identify individual users?
Privacy-safe fingerprinting identifies browser sessions, not individuals. The combination of hashing, daily rotation, and limited attributes means the same person using different browsers or devices appears as different visitors.