combinator attack : empty dic - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Ancient Versions (https://hashcat.net/forum/forum-46.html) +--- Forum: Very old oclHashcat-plus Support (https://hashcat.net/forum/forum-23.html) +--- Thread: combinator attack : empty dic (/thread-2027.html) |
combinator attack : empty dic - /milzo - 02-02-2013 When trying to append $- to first dictionary, hashcat claims it's empty, prepend ^ working fine. eg. Code: ./oclHashcat-plus64.bin -a 1 -j $- -m 0 -o /outfile.txt /infile.txt /rockyou.dic /dic2.dic --remove either a bug or user error, what you think? RE: combinator attack : empty dic - undeath - 02-02-2013 you need to escape RE: combinator attack : empty dic - splash_ - 04-19-2013 (02-02-2013, 02:41 PM)undeath Wrote: you need to escape What about when there is nothing to be escaped? Thoughts? Quote:$ ./oclHashcat-plus64.bin -m 3100 -a1 ../hashes/hash_test -j rule -k rule1 dic1 dic2 $ cat rule1 ] c u $ cat rule i02i13 i12i23 i22i33 i32i43 i42i53 i52i63 i62i73 i72i83 i82i93 i92iA3 iA2iB3 iA2iB3 iB2iC3 $ cat dic1 qw we er rt ty yu as sd df fg $ cat dic2 ioj lkj pqj rej sdj RE: combinator attack : empty dic - epixoip - 04-19-2013 -j and -k do not work with rules files. they only work with single rules. if you want to use the append rule then you need to escape it, else your shell will attempt to interpret it as a variable. RE: combinator attack : empty dic - splash_ - 04-24-2013 (04-19-2013, 01:31 PM)epixoip Wrote: -j and -k do not work with rules files. they only work with single rules. I was aware of escaping but only now I understand the *single rule* line on --help meaning "not a rules file". Thanks. |