Dev Tools

MCP

Security Tools

Draft CSP and CORS headers, test password strength locally, and read HTTP security references. This is not a pentest of your site.

11 tools · 100% browser-based · No uploads · No signup

About these Security tools

Security tools help you draft CSP and CORS headers, test password strength locally, look up HTTP status codes, and walk through headers, OWASP Top 10, misconfig patterns, and password storage recommendations. They are references and builders, not a pentest of your site.

CSP and CORS mistakes cause either XSS holes or broken production. Password tester uses entropy and dictionary heuristics in the browser; it does not submit the password. Header snippets are starting points for NGINX, Apache, and Node. Threat model is a STRIDE worksheet, not an automated scanner of your repo.

Tools in this category

How these tools run in your browser

Header generators concatenate directives from checkboxes. Password scoring is local zxcvbn-style analysis. Misconfig detector matches patterns in headers or config text you paste. OWASP and header checklists are editorial content with copy-paste snippets.

Common Use Cases

  • Draft a Content-Security-Policy and see which directives are unsafe
  • Build Access-Control-Allow-* headers for a specific origin
  • Check a password you are about to use on a throwaway account (still never reuse production passwords in a webpage if you can avoid it)
  • Look up what 425 or 451 means
  • Walk an OWASP checklist before a release

Common Mistakes

CSP unsafe-inline and unsafe-eval undo most of the policy's value.
CORS * with credentials is invalid and browsers will reject it.
Password strength meters cannot see if the password was in a breach dump.
Copy-pasting security headers without understanding them can break your app or give a false sense of safety.

Frequently Asked Questions

Is the password sent anywhere?

No. Strength analysis runs in the tab. Use a password manager for real secrets.

Will a CSP you generate be production-ready?

It is a draft. You still need to add your real script hashes or nonces and test in report-only mode.

Is this a substitute for a security review?

No. Use it as a checklist and a header builder. Hire review for anything that handles money, health, or large PII.