description: Client-side web security (XSS/DOM XSS, CSP, CSRF, clickjacking, XS-Leaks, third-party JS)
languages:
- c
- html
- javascript
- php
- typescript
- vlang
alwaysApply: false
rule_id: codeguard-0-client-side-web-security
Client‑side Web Security
Protect browser clients against code injection, request forgery, UI redress, cross‑site leaks, and unsafe third‑party scripts with layered, context‑aware controls.
XSS Prevention (Context‑Aware)
- HTML context: prefer
textContent. If HTML is required, sanitize with a vetted library (e.g., DOMPurify) and strict allow‑lists.
- Attribute context: always quote attributes and encode values.
- JavaScript context: do not build JS from untrusted strings; avoid inline event handlers; use
addEventListener.
- URL context: validate protocol/domain and encode; block
javascript: and data URLs where inappropriate.
- Redirects/forwards: never use user input directly for destinations; use server-side mapping (ID→URL) or validate against trusted domain allowlists.
- CSS context: allow‑list values; never inject raw style text from users.
Example sanitization:
const clean = DOMPurify.sanitize(userHtml, {
ALLOWED_TAGS: ['b','i','p','a','ul','li'],
ALLOWED_ATTR: ['href','target','rel'],
ALLOW_DATA_ATTR: false
});
DOM‑based XSS and Dangerous Sinks
- Prohibit
innerHTML, outerHTML, document.write with untrusted data.
- Prohibit
eval, new Function, string‑based setTimeout/Interval.
- Validate and encode data before assigning to
location or event handler properties.
- Use strict mode and explicit variable declarations to prevent global namespace pollution from DOM clobbering.
- Adopt Trusted Types and enforce strict CSP to prevent DOM sinks exploitation.
Trusted Types + CSP:
Content-Security-Policy: script-src 'self' 'nonce-{random}'; object-src 'none'; base-uri 'self'; require-trusted-types-for 'script'
Content Security Policy (CSP)
- Prefer nonce‑based or hash‑based CSP over domain allow‑lists.
- Start with Report‑Only mode; collect violations; then enforce.
- Baseline to aim for:
default-src 'self'; style-src 'self' 'unsafe-inline'; frame-ancestors 'self'; form-action 'self'; object-src 'none'; base-uri 'none'; upgrade-insecure-requests.
CSRF Defense
- Fix XSS first; then layer CSRF defenses.
- Use framework‑native CSRF protections and synchronizer tokens on all state‑changing requests.
- Cookie settings:
SameSite=Lax or Strict; sessions Secure and HttpOnly; use __Host- prefix when possible.
- Validate Origin/Referer; require custom headers for API mutations in SPA token models.
- Never use GET for state changes; validate tokens on POST/PUT/DELETE/PATCH only. Enforce HTTPS for all token transmission.
Clickjacking Defense
- Primary:
Content-Security-Policy: frame-ancestors 'none' or a specific allow‑list.
- Fallback for legacy browsers:
X-Frame-Options: DENY or SAMEORIGIN.
- Consider UX confirmations for sensitive actions when framing is required.
Cross‑Site Leaks (XS‑Leaks) Controls
- Use
SameSite cookies appropriately; prefer Strict for sensitive actions.
- Adopt Fetch Metadata protections to block suspicious cross‑site requests.
- Isolate browsing contexts: COOP/COEP and CORP where applicable.
- Disable caching and add user‑unique tokens for sensitive responses to prevent cache probing.
Third‑Party JavaScript
- Minimize and isolate: prefer sandboxed iframes with
sandbox and postMessage origin checks.
- Use Subresource Integrity (SRI) for external scripts and monitor for changes.
- Provide a first‑party, sanitized data layer; deny direct DOM access from tags where possible.
- Govern via tag manager controls and vendor contracts; keep libraries updated.
SRI example:
<script src="https://cdn.vendor.com/app.js"
integrity="sha384-..." crossorigin="anonymous"></script>
HTML5, CORS, WebSockets, Storage
- postMessage: always specify exact target origin; verify
event.origin on receive.
- CORS: avoid
*; allow‑list origins; validate preflights; do not rely on CORS for authz.
- WebSockets: require
wss://, origin checks, auth, message size limits, and safe JSON parsing.
- Client storage: never store secrets in
localStorage/sessionStorage; prefer HttpOnly cookies; if unavoidable, isolate via Web Workers.
- Links: add
rel="noopener noreferrer" to external target=_blank links.
HTTP Security Headers (Client Impact)
- HSTS: enforce HTTPS everywhere.
- X‑Content‑Type‑Options:
nosniff.
- Referrer‑Policy and Permissions‑Policy: restrict sensitive signals and capabilities.
AJAX and Safe DOM APIs
- Avoid dynamic code execution; use function callbacks, not strings.
- Build JSON with
JSON.stringify; never via string concatenation.
- Prefer creating elements and setting
textContent/safe attributes over raw HTML insertion.
Implementation Checklist
- Contextual encoding/sanitization for every sink; no dangerous APIs without guards.
- Strict CSP with nonces and Trusted Types; violations monitored.
- CSRF tokens on all state‑changing requests; secure cookie attributes.
- Frame protections set; XS‑Leak mitigations enabled (Fetch Metadata, COOP/COEP/CORP).
- Third‑party JS isolated with SRI and sandbox; vetted data layer only.
- HTML5/CORS/WebSocket usage hardened; no secrets in web storage.
- Security headers enabled and validated.
Test Plan
- Automated checks for dangerous DOM/API patterns.
- E2E tests for CSRF and clickjacking; CSP report monitoring.
- Manual probes for XS‑Leaks (frame count, timing, cache) and open redirect behavior.
1---2name: 382-control-set-05-client-side-44068fc63description: <!-- Threat Modeling Skill | Version 3.0.3 (20260209a) | https://github.com/fr33d3m0n/threat-modeling | License: BSD-3-Clause -->4---5<!-- Threat Modeling Skill | Version 3.0.3 (20260209a) | https://github.com/fr33d3m0n/threat-modeling | License: BSD-3-Clause -->67---8description: Client-side web security (XSS/DOM XSS, CSP, CSRF, clickjacking, XS-Leaks, third-party JS)9languages:10- c11- html12- javascript13- php14- typescript15- vlang16alwaysApply: false17---1819rule_id: codeguard-0-client-side-web-security2021## Client‑side Web Security2223Protect browser clients against code injection, request forgery, UI redress, cross‑site leaks, and unsafe third‑party scripts with layered, context‑aware controls.2425### XSS Prevention (Context‑Aware)26- HTML context: prefer `textContent`. If HTML is required, sanitize with a vetted library (e.g., DOMPurify) and strict allow‑lists.27- Attribute context: always quote attributes and encode values.28- JavaScript context: do not build JS from untrusted strings; avoid inline event handlers; use `addEventListener`.29- URL context: validate protocol/domain and encode; block `javascript:` and data URLs where inappropriate.30- Redirects/forwards: never use user input directly for destinations; use server-side mapping (ID→URL) or validate against trusted domain allowlists.31- CSS context: allow‑list values; never inject raw style text from users.3233Example sanitization:34```javascript35const clean = DOMPurify.sanitize(userHtml, {36 ALLOWED_TAGS: ['b','i','p','a','ul','li'],37 ALLOWED_ATTR: ['href','target','rel'],38 ALLOW_DATA_ATTR: false39});40```4142### DOM‑based XSS and Dangerous Sinks43- Prohibit `innerHTML`, `outerHTML`, `document.write` with untrusted data.44- Prohibit `eval`, `new Function`, string‑based `setTimeout/Interval`.45- Validate and encode data before assigning to `location` or event handler properties.46- Use strict mode and explicit variable declarations to prevent global namespace pollution from DOM clobbering.47- Adopt Trusted Types and enforce strict CSP to prevent DOM sinks exploitation.4849Trusted Types + CSP:50```http51Content-Security-Policy: script-src 'self' 'nonce-{random}'; object-src 'none'; base-uri 'self'; require-trusted-types-for 'script'52```5354### Content Security Policy (CSP)55- Prefer nonce‑based or hash‑based CSP over domain allow‑lists.56- Start with Report‑Only mode; collect violations; then enforce.57- Baseline to aim for: `default-src 'self'; style-src 'self' 'unsafe-inline'; frame-ancestors 'self'; form-action 'self'; object-src 'none'; base-uri 'none'; upgrade-insecure-requests`.5859### CSRF Defense60- Fix XSS first; then layer CSRF defenses.61- Use framework‑native CSRF protections and synchronizer tokens on all state‑changing requests.62- Cookie settings: `SameSite=Lax` or `Strict`; sessions `Secure` and `HttpOnly`; use `__Host-` prefix when possible.63- Validate Origin/Referer; require custom headers for API mutations in SPA token models.64- Never use GET for state changes; validate tokens on POST/PUT/DELETE/PATCH only. Enforce HTTPS for all token transmission.6566### Clickjacking Defense67- Primary: `Content-Security-Policy: frame-ancestors 'none'` or a specific allow‑list.68- Fallback for legacy browsers: `X-Frame-Options: DENY` or `SAMEORIGIN`.69- Consider UX confirmations for sensitive actions when framing is required.7071### Cross‑Site Leaks (XS‑Leaks) Controls72- Use `SameSite` cookies appropriately; prefer `Strict` for sensitive actions.73- Adopt Fetch Metadata protections to block suspicious cross‑site requests.74- Isolate browsing contexts: COOP/COEP and CORP where applicable.75- Disable caching and add user‑unique tokens for sensitive responses to prevent cache probing.7677### Third‑Party JavaScript78- Minimize and isolate: prefer sandboxed iframes with `sandbox` and postMessage origin checks.79- Use Subresource Integrity (SRI) for external scripts and monitor for changes.80- Provide a first‑party, sanitized data layer; deny direct DOM access from tags where possible.81- Govern via tag manager controls and vendor contracts; keep libraries updated.8283SRI example:84```html85<script src="https://cdn.vendor.com/app.js"86 integrity="sha384-..." crossorigin="anonymous"></script>87```8889### HTML5, CORS, WebSockets, Storage90- postMessage: always specify exact target origin; verify `event.origin` on receive.91- CORS: avoid `*`; allow‑list origins; validate preflights; do not rely on CORS for authz.92- WebSockets: require `wss://`, origin checks, auth, message size limits, and safe JSON parsing.93- Client storage: never store secrets in `localStorage`/`sessionStorage`; prefer HttpOnly cookies; if unavoidable, isolate via Web Workers.94- Links: add `rel="noopener noreferrer"` to external `target=_blank` links.9596### HTTP Security Headers (Client Impact)97- HSTS: enforce HTTPS everywhere.98- X‑Content‑Type‑Options: `nosniff`.99- Referrer‑Policy and Permissions‑Policy: restrict sensitive signals and capabilities.100101### AJAX and Safe DOM APIs102- Avoid dynamic code execution; use function callbacks, not strings.103- Build JSON with `JSON.stringify`; never via string concatenation.104- Prefer creating elements and setting `textContent`/safe attributes over raw HTML insertion.105106### Implementation Checklist107- Contextual encoding/sanitization for every sink; no dangerous APIs without guards.108- Strict CSP with nonces and Trusted Types; violations monitored.109- CSRF tokens on all state‑changing requests; secure cookie attributes.110- Frame protections set; XS‑Leak mitigations enabled (Fetch Metadata, COOP/COEP/CORP).111- Third‑party JS isolated with SRI and sandbox; vetted data layer only.112- HTML5/CORS/WebSocket usage hardened; no secrets in web storage.113- Security headers enabled and validated.114115### Test Plan116- Automated checks for dangerous DOM/API patterns.117- E2E tests for CSRF and clickjacking; CSP report monitoring.118- Manual probes for XS‑Leaks (frame count, timing, cache) and open redirect behavior.