Audit HTTP Cache-Control headers to ensure sensitive customer pages are never cached by shared proxies.
Validates Cache-Control: no-store, private on authenticated APIs and dynamic dashboards to prevent CDN cache leaks of personal data.
Canonical test payload dispatched during security surface audits.
GET /api/user/billing Cache-Control: public, max-age=3600Watch the probe engine test this signature in an isolated sandbox.
No-Store on User Endpoints
res.setHeader('Cache-Control', 'public, max-age=300');res.setHeader('Cache-Control', 'no-store, no-cache, must-revalidate, private');Ensure authenticated routes use private, no-store headers to prevent intermediate CDN caching.
Copy and paste into your editor to refactor this issue automatically.
Test your public domain specifically for Cache-Control & Data Privacy Scanner.
Checks commonly evaluated alongside Cache-Control & Data Privacy Scanner during surface discovery.
Verify anti-CSRF tokens, SameSite cookie policies, and origin validation on sensitive state-changing routes.
Detect sensitive tokens, passwords, or PII stored in unencrypted localStorage or sessionStorage.
Detect web cache poisoning, password reset link poisoning, and server-side routing hijack via spoofed Host headers.
Audit your site across all 41 vectors automatically on every deploy.