Xss csrf
Security skills for AI coding agents. Install once, write secure code every time.
npx -y skills add hereshecodes/secureskills --skill xss-csrfAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use when rendering user content, building forms, or handling POST requests
SKILL.md
2.7 KB, as published. Nobody here has run it
XSS & CSRF Prevention
Never render unsanitized user content. Always include anti-forgery tokens on state-changing requests.
Related: input-validation, security-headers, security-context
Rule 1: Never Insert Raw User Content Into HTML
Use your framework's auto-escaping. If you bypass it, sanitize first.
// WRONG — innerHTML with user content
element.innerHTML = userComment;
// RIGHT — use textContent (auto-escapes)
element.textContent = userComment;
// If you MUST render HTML, sanitize first
import DOMPurify from 'dompurify';
element.innerHTML = DOMPurify.sanitize(userComment);
# WRONG — marking user input as safe in Jinja2
{{ user_comment | safe }}
# RIGHT — auto-escaped by default
{{ user_comment }}
Rule 2: Escape Output Based on Context
HTML context, attribute context, JavaScript context, and URL context all need different escaping.
// WRONG — user input in an attribute without escaping
`<img src="${userUrl}" alt="${userName}">`
// RIGHT — encode for HTML attributes
`<img src="${encodeURI(userUrl)}" alt="${escapeHtml(userName)}">`
Rule 3: Include Anti-Forgery Tokens on All Forms
Every POST, PUT, DELETE request must include a CSRF token.
<!-- WRONG — form without CSRF token -->
<form method="POST" action="/delete">
<button type="submit">Delete</button>
</form>
<!-- RIGHT — CSRF token included -->
<form method="POST" action="/delete">
<input type="hidden" name="_csrf" value="{{csrfToken}}">
<button type="submit">Delete</button>
</form>
Rule 4: Set SameSite on Cookies
Prevent CSRF by restricting cookie behavior.
// WRONG — no SameSite attribute
res.cookie('session', token);
// RIGHT — SameSite restricts cross-origin requests
res.cookie('session', token, {
sameSite: 'strict',
httpOnly: true,
secure: true
});
Rule 5: Set Content Security Policy
CSP is your last line of defense against XSS. It blocks inline scripts and unauthorized sources.
// WRONG — no CSP header (any script can run)
// RIGHT — restrictive CSP
Content-Security-Policy: default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:;
Quick Reference
| Do | Don't |
|---|---|
| Use framework auto-escaping | Insert raw user content with innerHTML |
| Sanitize with DOMPurify if rendering HTML | Mark user input as "safe" in templates |
| Include CSRF tokens on all forms | Submit state-changing requests without tokens |
Set SameSite: strict on cookies | Leave cookies without SameSite attribute |
| Set Content Security Policy header | Allow inline scripts from any source |