Using hashcat with maskprocessor - here: veracrypt - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat-utils, maskprocessor, statsprocessor, md5stress, wikistrip (https://hashcat.net/forum/forum-28.html) +--- Thread: Using hashcat with maskprocessor - here: veracrypt (/thread-8575.html) Pages:
1
2
|
RE: Using hashcat with maskprocessor - here: veracrypt - undeath - 08-19-2019 I don't think the mask 'part_I_remember?d?s' does what you want. It tries candidates that start with "part_I_remember" followed by exactly one digit followed by exactly one special character. I guess it should be something like -1 ?d?s part_I_remember?1?1?1?1?1?1 your increment-min/max values are calculated for the whole mask, including your prefix. You may achieve better speed for your specific attack by using -S RE: Using hashcat with maskprocessor - here: veracrypt - Snoop - 08-19-2019 (08-19-2019, 05:09 PM)undeath Wrote: I don't think the mask 'part_I_remember?d?s' does what you want. It tries candidates that start with "part_I_remember" followed by exactly one digit followed by exactly one special character.Good evening undeath , thank you for the hint. You're completely right I think. The error messages seems it. Now my code is Code: hashcat -a 3 -m 13711 -1 ?a?s part_I_remember?!?1?1?1?1?1 So I'm looking for how to specify a mask now . ...hmmm immediately I read about it and I'm of the opinion, that ai just have created a mask with my command... I've found another mistake: Code: Hash 'part_I_remember?a?s': Hash-file exception A few posts ago you asked me, why I wrote Code: --increment 4:6 (17:19) Code: Increment: RE: Using hashcat with maskprocessor - here: veracrypt - philsmd - 08-19-2019 ?1 is not the same as ?l and ?! is completely wrong you need to be more careful about what you see and what you type. ?1 is dollar ONE and ?l is dollar lower-case ELL maskprocessor is not the same as hashcat. the syntax differ The error above with "Hash 'part_I_remember?a?s': Hash-file exception" happened because you totally forgot to specify the hash file. Please don't change the command line completely in some random manner if you do not know what the different parts mean. You for instance can't crack a hash file without specifying the hash file. It should be very obvious. RE: Using hashcat with maskprocessor - here: veracrypt - Snoop - 08-19-2019 (08-19-2019, 07:50 PM)philsmd Wrote: ?1 is not the same as ?l Thank you phil, for your hints. I'm really sorry. Of course I know, that there are differences between ?1 and ?l. The problem really is, that I have mistyped and I really haven't seen it, because I have a massive lower vision problem, so it's hard for me to differ this characters, when I have typed the wrong ones. But your hint is worthfull, that maskprocessor and hashcat have different syntaxes. I'm going to read about and tell again about what happened. Best Snoop |