This shows you the differences between two versions of the page.
|
hashcat_utils [2012/06/28 14:14] atom [Download] |
hashcat_utils [2013/03/07 12:25] (current) atom |
||
|---|---|---|---|
| Line 21: | Line 21: | ||
| As long as hashcat-utils does not have a dedicated homepage, here is a download link to the latest version: | As long as hashcat-utils does not have a dedicated homepage, here is a download link to the latest version: | ||
| - | * [[http://www.hashcat.net/files/hashcat-utils-0.9-32.7z|hashcat-utils v0.09 32bit]] | + | * [[http://hashcat.net/files/hashcat-utils-0.9-32.7z|hashcat-utils v0.09 32bit]] |
| - | * [[http://www.hashcat.net/files/hashcat-utils-0.9-64.7z|hashcat-utils v0.09 64bit]] | + | * [[http://hashcat.net/files/hashcat-utils-0.9-64.7z|hashcat-utils v0.09 64bit]] |
| ===== List of Utilities ===== | ===== List of Utilities ===== | ||
| Line 263: | Line 263: | ||
| ==== morph ==== | ==== morph ==== | ||
| - | // TODO // | + | Basically morph generates insertion rules for the most frequent chains of characters from the dictionary that you provide **and that, per position**. |
| + | |||
| + | Syntax: | ||
| + | |||
| + | <code> | ||
| + | usage: ./morph.bin dictionary depth width pos_min pos_max | ||
| + | </code> | ||
| + | |||
| + | - Dictionary = Wordlist used for frequency analysis. | ||
| + | |||
| + | - Depth = Determines what "top" chains that you want. For example 10 would give you the top 10 (in fact, it seems to start with value 0 so that 10 would give the top 11). | ||
| + | |||
| + | - Width = Max length of the chain. With 3 for example, you will get up to 3 rules per line for the most frequent 3 letter chains. | ||
| + | |||
| + | - pos_min = Minimum position where the insertion rule will be generated. For example 5 would mean that it will make rule to insert the string only from position 5 and up. | ||
| + | |||
| + | -pos_max = Maximum position where the insertion rule will be generated. For example 10 would mean that it will make rule to insert the string so that it's end finishes at a maximum of position 10. | ||
| ==== permute ==== | ==== permute ==== | ||