Hashcat command - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: Hashcat command (/thread-11379.html) |
Hashcat command - congnv225 - 04-04-2023 I want to find the original string when I know its MD5 hash ( e0XX723aa2ca3XXXX44fde6fXXXXd7fb ).The original string has the format of 'X'-md:'Y', where X is an 8-character string consisting of uppercase letters and digits from 0 to 9, and Y is one of the three strings: 'Cung', 'Kiem', 'Gay'. How do I use the command in Hashcat? RE: Hashcat command - royce - 04-04-2023 Make a file to contain the three strings, then: hashcat -m 0 -a 7 [targethash] -1 ?u?d ?1?1?1?1?1?1?1?1 threestringsfile.txt RE: Hashcat command - congnv225 - 04-04-2023 have a bug Hash '[targethash]': Token length exception * Token length exception: 1/1 hashes This error happens if the wrong hash type is specified, if the hashes are malformed, or if input is otherwise not as expected (for example, if the --username option is used but no username is present) |