Exit status code
#2
here we just need to distinguish between the process exit code ($? variable) and the status that hashcat internally uses:
1. if you check the process exit code, you need to follow this list: https://github.com/hashcat/hashcat/blob/..._codes.txt
2. if you look into the file hashcat.log instead, you will see entries with "status-after-work" and it should follow this list: https://github.com/hashcat/hashcat/blob/...#L199-L211

as you can see the internal state is more detailed and there are more possibilities. Not all of them make sense to expose into the $? process exit code, therefore the lists are different.
Reply


Messages In This Thread
Exit status code - by BadWood17 - 07-16-2020, 09:43 AM
RE: Exit status code - by philsmd - 07-16-2020, 11:27 AM
RE: Exit status code - by BadWood17 - 07-16-2020, 12:01 PM
RE: Exit status code - by philsmd - 07-16-2020, 01:57 PM