check_password
Verify if a password has been exposed in data breaches using k-anonymity via the Have I Been Pwned API. Ensure account security by identifying compromised passwords.
Instructions
Check if a password has been exposed in data breaches (using k-anonymity)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
password | Yes | Password to check |
Input Schema (JSON Schema)
{
"properties": {
"password": {
"description": "Password to check",
"type": "string"
}
},
"required": [
"password"
],
"type": "object"
}