runJohnTheRipper
Crack password hashes using John the Ripper on Pentest MCP. Input hash data and specify command-line options to perform brute-force or dictionary attacks for penetration testing.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hashData | Yes | String containing the password hashes, one per line. | |
options | No | Array of command-line options for JtR. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"hashData": {
"description": "String containing the password hashes, one per line.",
"type": "string"
},
"options": {
"description": "Array of command-line options for JtR.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"hashData"
],
"type": "object"
}