Password Policy Compliance Audit
Audit password policy compliance: generate test passwords at different strengths and verify against policy requirements.
何时使用此配方
Test your password policy with various password strengths. Ensure your system correctly rejects weak passwords and accepts strong ones, meeting compliance requirements.
步骤
Password Generator
试用此工具 →Test weak password
Password Strength Checker
试用此工具 →Verify weak rejection
Password Generator
试用此工具 →Test strong password
Password Strength Checker
试用此工具 →Verify strong acceptance
Hash Calculator
试用此工具 →Demonstrate proper storage
常见问题
What does NIST say about password policies?
NIST 800-63B: minimum 8 characters, no composition rules (no forced special chars), check against breached password lists, no periodic rotation requirements. Focus on length over complexity.
Should I require special characters?
NIST says no — it leads to predictable patterns (P@ssw0rd!). Instead, require minimum length (12+), check against breach databases, and support passphrases.
相关配方
Secure Password Workflow
Generate a strong password, verify its strength, and hash it for storage — a complete password security pipeline.
Web Security Header Audit
Audit your website's security headers, generate a CSP policy, evaluate it, and configure CORS.
JWT Authentication Setup
Set up JWT-based authentication: generate tokens, create signing keys, and implement TOTP for 2FA.
API Security Hardening
Harden your API with HMAC request signing, secure secrets, and SRI for client-side integrity.