Security & Compliance Matrix
Detailed verification of our client-side data boundaries, local PII sanitization filters, and regulatory accessibility compliance mappings.
1. Local Client-Side Sandbox Architecture
Unlike legacy scanners that upload page DOM trees or visual layout screenshots to distant remote servers for auditing, A11yEngine operates entirely inside your local browser context.
- Zero DOM Retention: The extension audits the active page DOM elements using locally-injected JavaScript routines. No HTML components, page source files, or layout frames are copied, cataloged, or transmitted.
- Secure Settings Storage: Custom options and scanner states are saved locally inside the browser's sandboxed storage layer (
chrome.storage.local). They are never shared, synced across devices, or exposed to third-party scripts. - HIPAA & GDPR Compatibility: By running all audit scans entirely client-side, customer user-data remains sealed inside your active session boundary, supporting organizational HIPAA and GDPR compliance requirements.
2. Local PII Regex Redaction Scrubber
When requesting AI-powered remediation patches, A11yEngine automatically intercepts raw HTML snippets to redact sensitive fields before sending payloads to LLM endpoints. Our regex-scrubber monitors attributes matching keywords like **password, card, cvv, cc, pin, and email**:
cleanHtml = cleanHtml.replace(
/(password|card|cvv|cc|pin|email)\s*=\s*"[^"]*"/gi,
'$1="[REDACTED_PII]"'
);This rule runs in the browser content script and sanitizes attributes inside form controls, input placeholders, and button definitions locally, ensuring credentials never leave the user's browser during AI repairs.
3. Regulatory Compliance Alignment
A11yEngine helps product development teams satisfy international legal and digital accessibility standards, protecting organizations from litigation risks:
| Compliance Standard | Regulatory Impact | A11yEngine Capability |
|---|---|---|
| WCAG 2.1 / 2.2 AA | Global base benchmark for digital accessibility. Required by governments and private enterprises worldwide. | Checks for contrast, heading structures, image alt labels, focus accessibility, and media captions using axe-core and custom heuristics. |
| ADA Title III (US) | Prohibits discrimination on public accommodation sites. Dominant legal driver for US business website accessibility lawsuits. | Flags high-priority transaction blocker elements ("Revenue Path Blockers") on forms, buttons, checkouts, and navigation paths. |
| Section 508 (US) | Requires federal agencies and organizations contracting with them to build accessible procurement technology. | Generates automated compliance reports (HTML and Markdown format) detailing section-by-section digital audits. |
| EAA / EN 301 549 (EU) | European Accessibility Act. Enforces strict digital accessibility rules on private products, services, and e-commerce sites starting June 2025. | Integrates visual overlay boundaries and code remediation templates locally to speed up EAA development sprints. |