server icon indicating copy to clipboard operation
server copied to clipboard

[FEATURE] Mock Hashcat client

Open zyronix opened this issue 3 years ago • 0 comments

For testing with github actions it is required to create a hashcat mocker. The should be a simple python application that takes all the arguments of hashcat and takes a config file and does the same thing as hashcat would do:

$ hashcat_mock -a3 ?l?l?l?l --keyspace
5000

hashcat_mock.conf

keyspace=5000
$ hashcat_mock -a3 ?l?l?l?l --progress-only
5000:1

hashcat_mock.conf

benchmark=5000:1
$ hashcat_mock -a3 ?l?l?l?l <hash>
5000:1

hashcat_mock.conf

crack=password
status=1

zyronix avatar Feb 27 '23 14:02 zyronix