ToolypetMCP
intermediate4 minutessecurity

Password Policy Compliance Audit

Audit password policy compliance: generate test passwords at different strengths and verify against policy requirements.

passwordpolicycompliancestrengthaudit

何时使用此配方

Test your password policy with various password strengths. Ensure your system correctly rejects weak passwords and accepts strong ones, meeting compliance requirements.

步骤

1

Password Generator

试用此工具

Test weak password

提示词:Generate a weak 8-character lowercase-only password for testing
2

Password Strength Checker

试用此工具

Verify weak rejection

提示词:Check the weak password — should be rejected by policy
3

Password Generator

试用此工具

Test strong password

提示词:Generate a strong 16-character password with all character types
4

Password Strength Checker

试用此工具

Verify strong acceptance

提示词:Check the strong password — should pass all policy requirements
5

Hash Calculator

试用此工具

Demonstrate proper storage

提示词:Hash the accepted password with bcrypt to 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.

相关配方