Comprehensive rule listing? - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html) +--- Forum: General Help (https://hashcat.net/forum/forum-8.html) +--- Thread: Comprehensive rule listing? (/thread-352.html) |
Comprehensive rule listing? - Kgx Pnqvhm - 04-02-2011 Is there a comprehensive listing of hashcat's rule, like john has at http://www.openwall.com/john/doc/RULES.shtml? "Rule-Fu: The art of word mangling" by d3ad0ne at http://ob-security.info/?p=31 is the only thing I've seen like that, but what is needed is a comparison of john's rules to hashcat's. I'm aware that there is no preprocessor, but are there character classes and commands that can be used to not waste time by trying to uppercase words beginning with punctuation and symbols? Also, hints as to whether "^" for prepending or "i" for inserting multiple characters is faster? RE: Comprehensive rule listing? - atom - 04-02-2011 there is no direct comparisation but i tried to make it 100% compatible. there are some hashcat only commands and some jtr only command but these that both have should do exactly the same RE: Comprehensive rule listing? - atom - 04-02-2011 i would say ^ is faster, but why dont try it for yourself? RE: Comprehensive rule listing? - Kgx Pnqvhm - 04-03-2011 So, of the john "character class commands" hashcat only has the single character rules, sXY, @X, !X, /X, (X, )X, and no character class commands? E.g., trying john's !?X in hashcat got a syntax error, while john's (?a didn't work. RE: Comprehensive rule listing? - atom - 04-06-2011 maybe this helps: Code: #define RULE_OP_MANGLE_NOOP1 ':' RE: Comprehensive rule listing? - Xanadrel - 04-06-2011 lol source code :p RE: Comprehensive rule listing? - Kgx Pnqvhm - 04-07-2011 Code: #define RULE_OP_MANGLE_DUPEWORD_TIMES 'p' Thanks. |