Add stolen credentials sourced from other threat intelligence feeds within your organization.
Security
x-api-key
A list of stolen credentials
Array []
Plain text password. Note that uploading hashes will never match and only plain text passwords can be used.
Example:"myAm@z!ngP4$$w0rdTh4tUcantGu3$$"
POST
curl -i -X POST \
https://api.pushsecurity.com/v1/controls/stolenCredentials \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '[
{
"email": "john.hill@example.com",
"password": "myAm@z!ngP4$$w0rdTh4tUcantGu3$$",
"metadata": {
"key": "value"
}
}
]'Response
{ "result": [ { "email": "john.hill@example.com", "password": "myAm@z!ngP4$$w0rdTh4tUcantGu3$$", "metadata": {} } ] }