KatzKatz: parse txt files containing Mimikatz output
KatzKatz
KatzKatz is a python tool to parse text files containing output from Mimikatz sekurlsa::logonpasswords module. When performing an internal network pentest sometimes you found yourself gathering many lsass.exe process dumps, open them using Mimikatz in order to extract clear text passwords and\or NTLM password hashes. Once you getter many of those (and usually some of them contain many credential sets) it becomes a bit cumbersome to track and understand which users you compromised. KatzKatz will parse those for you and will output a CSV file containing only valid* sets so you can filter more easily and get the ones you need.
Specific features
The tool will only parse valid* sets of credentials and will omit the ‘null’ ones. In addition, it will compare the output and will save only unique sets of credentials.
KatzKatz will save results that containing at least username + password and\or NTLM password hash.
Install
git clone https://github.com/xFreed0m/KatzKatz.git
pip install -r requirments.txt
Use
python KatzKatz.py -f [FILENAME]
Copyright (C) 2019 xFreed0m
Source: https://github.com/xFreed0m/