Many organizations rely on a “cookie scanner” to inventory trackers and prove compliance. It’s a helpful starting point—but it can create a false sense of security. Modern tracking and personalization often happens outside traditional cookies, using localStorage, IndexedDB, service workers, and increasingly fingerprinting. If your governance program only looks for cookies, you can miss what matters most: what the site actually does, and whether users—including users with disabilities—can understand, consent to, and control it.
This isn’t just a privacy issue. Under WCAG and inclusive design principles, consent and privacy controls are part of the user journey. If the banner, preferences center, or “do not sell/share” mechanisms are confusing, keyboard-trapping, or not readable by assistive technology, users can’t exercise meaningful choice.
Traditional cookie scanners typically detect HTTP cookies set by the browser and sometimes identify common third-party scripts. But several widely used tracking patterns don’t show up as “cookies” at all:
From an accessibility perspective, what matters is the user impact: are people being tracked before they can consent, and can they actually interact with the consent interface? If the consent UI is inaccessible, some users may be tracked by default simply because they can’t opt out.
localStorage stores key/value pairs that persist until cleared. It’s commonly used for:
The accessibility risk isn’t localStorage itself—it’s how teams use it. For example, a consent banner may visually appear “rejected,” but the underlying stored value might still enable non-essential scripts. Or the site may store the “banner dismissed” state, meaning users never see the consent prompt again—even if they didn’t make a clear choice.
Inclusive design means ensuring consent states are transparent and reversible. If your preference center is behind a tiny icon, lacks a clear name, or isn’t keyboard reachable, users who rely on keyboard-only navigation or screen readers may never find it. For WCAG-aligned guidance on the user interface itself, see How to Make Your Cookie Banner Accessible: WCAG 2.2 Requirements for Consent.

IndexedDB is a browser database designed for complex web apps (offline support, caching, large datasets). Because it’s not a cookie, many scanners and compliance checklists overlook it. But it can store:
What’s the accessibility angle? Two common scenarios:
A good practice is to treat any client-side storage used for tracking as part of your consent scope, and validate behavior with real interaction testing—not only automated scans.

Fingerprinting can identify or single out users based on signals such as installed fonts, canvas rendering, audio processing, device memory, language settings, or screen characteristics. Some approaches store minimal data locally, which means a cookie-only audit may show “nothing.”
From a compliance and accessibility standpoint, fingerprinting introduces two major issues:
This is where consent implementation details matter. Platforms adopting consent frameworks should consider how their setup impacts assistive technology users. For example, Google Consent Mode v2: Basic vs Advanced, and Why the Difference Matters for Accessibility explores how configuration choices affect user experience and clarity.
WCAG doesn’t “ban tracking,” but it does require that interactive controls be perceivable, operable, and understandable for everyone. Cookie banners and privacy centers often fail common success criteria, such as:
It’s also important to plan for renewal and record keeping in a way users can understand and revisit. Consent shouldn’t be a one-time, hard-to-find moment; it’s an ongoing control. For timing and retention considerations, see How Long Does Cookie Consent Last? Renewal Periods and Record Keeping.
If you want to know what your scanner missed, combine technical inspection with accessibility checks:
Consent interfaces change often (new vendors, updated CMP scripts, redesigns). Ongoing monitoring helps prevent accessibility regressions that lock users out of privacy controls. Corpowid (corpowid.ai) can support this with automated accessibility audits and monitoring that flag common WCAG issues in modals, dialogs, and interactive controls—areas where consent banners frequently fail.
When privacy controls are inaccessible, the impact is real: users who can’t perceive or operate the consent UI lose agency. That’s a product failure, not just a legal risk. The same mindset that drives accessibility in other regulated experiences applies here too—clear disclosures, usable controls, and consistent behavior. For example, expectations around disclosure show up across digital products, as discussed in Movie Ticket Apps Must Disclose Accessibility Features for People with Disabilities; transparency and usability go hand in hand.

Cookie scanners are a useful baseline, but they’re not the full map. By auditing localStorage, IndexedDB, and fingerprinting—and ensuring consent experiences meet WCAG expectations—you reduce compliance risk and build a more trustworthy, inclusive experience. Tools like Corpowid (corpowid.ai) can help teams catch accessibility failures early and keep consent and preference interfaces usable as the site evolves.