Hashcat-util to split plains in half for use with combinator - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Ancient Versions (https://hashcat.net/forum/forum-46.html) +--- Forum: Feature Requests (https://hashcat.net/forum/forum-7.html) +--- Thread: Hashcat-util to split plains in half for use with combinator (/thread-828.html) |
Hashcat-util to split plains in half for use with combinator - chort - 01-15-2012 I noticed that many passwords consist of <word><number> or (less common) <word><word>. I think it would be possible to find a lot more plains by splitting the existing plains in half and recombining them with a combinator attack (I got a large number of a recent dump by hybrid len4 + 4 char mask). Here is what I'm thinking for features: 1.) Creates two output files 2.) Splits plains in half by default, odd-length plains round up for first half and round down for second half (i.e. "apple1234" is split into "apple" and "1234") 3.) Can specify exact length of first half (i.e. --prefix 3 means "apple1234" becomes "app" and "le1234") 4.) Maybe allow for processing of specific lengths only (i.e. --req-length 8 will ignore "apple1234" and "theman" but will split "fastcars") Maybe there are other useful aspects I haven't thought of. RE: Hashcat-util to split plains in half for use with combinator - chort - 01-16-2012 atom implemented it in one evening! Here's the documentation: http://hashcat.net/wiki/hashcat_utils#cutb RE: Hashcat-util to split plains in half for use with combinator - atom - 01-16-2012 finished in beta |