![]() |
new to hashcat trying to learn - 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: new to hashcat trying to learn (/thread-8162.html) |
new to hashcat trying to learn - ciccio17 - 02-17-2019 hi everyone, i 'm reading around and not finding any help.i have this situation: hashcat -a 3 -m 2500 prova.hccapx -1 ?l?d ?1?1?1?1?1?1?1?1 . i know my password is lower alpha numeric 8 char long. i also know that the 2 and 4 char are equal . so now how i can set hashcat to use the same letter or number at position 2 and 4 ? i know i can do it manualy but that way i need start hashcat 36 time. RE: new to hashcat trying to learn - winxp5421 - 02-17-2019 One possible solution would be to create a Maskfile hashcat -a 3 -m 2500 Prova.hccapx -1 ?l?d masks.hcmask cat masks.hcmask ?1a?1a?1?1?1?1 ?1b?1b?1?1?1?1 ?1c?1c?1?1?1?1 ... RE: new to hashcat trying to learn - philsmd - 02-17-2019 please remember that the custom charsets must be set within the hashcat mask file: Code: hashcat -m 2500 -a 3 -w 3 Prova.hccapx masks.hcmask the masks.hcmask file is this one: Code: ?l?d,?1a?1a?1?1?1?1 RE: new to hashcat trying to learn - ciccio17 - 02-17-2019 thanks guys, working good! |