AI Weekly Malaysia

Back to items Summaries

AliExpress accused of fingerprinting shoppers with silent audio trick that also muted a dev's headphones

ID
17202
Status
summarized
Published
24 Aug 2026, 8:32 PM
Fetched
24 Aug 2026, 8:50 PM
Provider
The Register
Category
technology
Original URL
https://www.theregister.com/security/2026/08/24/aliexpress-accused-of-fingerprinting-shoppers-with-silent-audio-trick-that-also-muted-a-devs-headphones/5291662
Source URL
https://www.theregister.com/headlines.atom

Summary

Score
6.0
Created
24 Aug 2026, 8:51 PM
Tags
Audience
developersvibe_coders

What happened

Developer Matt Callaghan discovered AliExpress uses obfuscated WebAudio scripts to fingerprint browsers by generating silent sawtooth waveforms, measuring the resulting frequency data through the browser's audio implementation, and combining it with screen dimensions, device memory, WebGL rendering, and mouse event data into an encrypted telemetry payload. The zero-gain audio is inaudible but still activates the browser's audio path, which caused his multipoint Bluetooth headphones to stop playing phone audio whenever an AliExpress page loaded. Firefox and Brave reportedly have protections against this technique.

Why it matters

If you build web apps that use the WebAudio API, understand that zero-gain audio graphs still engage OS-level audio paths and can interfere with user hardware like Bluetooth multipoint devices—a real UX bug vector. If you care about user privacy, this is a concrete example of how browser fingerprinting goes beyond cookies and canvas, combining audio hardware characteristics with device telemetry; check whether your browser's anti-fingerprinting settings (Firefox/Brave) are enabled if you serve users in SEA where AliExpress traffic is high.

Discussion angle

How WebAudio fingerprinting works technically—sawtooth oscillator + analyzer node reading frequency data at zero gain—and whether your own apps' use of WebAudio could unintentionally cause the same Bluetooth multipoint headphone conflict Callaghan experienced.

Top