1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-15 20:39:17 +00:00
hashcat/tools/test_modules
2018-12-28 21:04:31 +01:00
..
m00000.pm Bring back comparison of hashlist in crackfile 2018-12-27 15:49:18 +01:00
m00010.pm Bring back comparison of hashlist in crackfile 2018-12-27 15:49:18 +01:00
m00011.pm Bring back comparison of hashlist in crackfile 2018-12-27 15:49:18 +01:00
m00012.pm Fix random_number() and -m 12 contraints 2018-12-28 12:30:57 +01:00
m00020.pm Bring back comparison of hashlist in crackfile 2018-12-27 15:49:18 +01:00
m00021.pm Bring back comparison of hashlist in crackfile 2018-12-27 15:49:18 +01:00
m00023.pm Fix maximum password and salt length in -m 23 2018-12-28 13:20:20 +01:00
m00050.pm Fix test_modules 2018-12-27 19:43:51 +01:00
m00060.pm Fix test_modules 2018-12-27 19:43:51 +01:00
m00100.pm Bring back comparison of hashlist in crackfile 2018-12-27 15:49:18 +01:00
m00110.pm Bring back comparison of hashlist in crackfile 2018-12-27 15:49:18 +01:00
m00120.pm Bring back comparison of hashlist in crackfile 2018-12-27 15:49:18 +01:00
m00200.pm Added test_module for -m 200 2018-12-28 21:04:31 +01:00
m01000.pm Make sure word length in test.pl single mode only increases or stays equal to previous one 2018-12-28 00:09:25 +01:00
m01500.pm Bring back comparison of hashlist in crackfile 2018-12-27 15:49:18 +01:00
m05600.pm Fix test_modules 2018-12-27 19:43:51 +01:00
m18400.pm Fix test_modules 2018-12-27 19:43:51 +01:00
m18500.pm Bring back comparison of hashlist in crackfile 2018-12-27 15:49:18 +01:00
m18600.pm Fix test_modules 2018-12-27 19:43:51 +01:00
README.md Update test_modules and test.pl to respect valid password and salt length ranges per hash mode 2018-12-23 18:15:53 +01:00

Hashcat test modules

Each module provides the functions module_constraints, module_generate_hash and module_verify_hash. The module_constraints function should return the minimum and maximum length of the password, salt and the combination of password and salt in following order: password (pure), salt (pure), password (optimized), salt (optimized) and combination (optimized). The combination pair should be set to -1 if the hash mode is not concatinating the password and the salt in the same buffer in the kernel (typically raw hashes only). The first parameter to module_generate_hash is the password, which can be either in ASCII or binary (packed) form. The second parameter is the salt *which can be undefined for unsalted hash modes). The module_verify_hash function accepts a line from the cracks file, without the newline characters.

During single and passthrough tests the module_generate_hash function must provide random values (e.g. salt) for hash generation if necessary. The test.pl script offers a few handy functions like random_hex_string, random_numeric_string and random_bytes. You can implement your own salt generation functions, if your mode has specific requirements.

During verify tests the module_verify_hash function must parse the hash:password line and calculate a hash by passing all necessary data to module_generate_hash. How you pass it is up to you, as long as the first parameter is the password.

Important: You have to call pack_if_HEX_notation as soon as you have parsed the password, or your tests will fail on passwords in the $HEX[...] format.

If the algorithm has ambiguous hashes (e.g. partial case-insensetivity), the test module can provide an optional function module_preprocess_hashlist. It recieves a reference to the hashlist array and can unify the hashes in a way that guarantees the match with the output of module_verify_hash.

Examples

  • For the most basic test modules, see m00000.pm and m00100.pm
  • For the basic salted hash tests, see m00110.pm and m00120.pm
  • For some sligthly more complex modules with PBKDF2 and encryption, see m18400.pm and m18600.pm
  • For a test module with hashlist preprocessing and a custom salt generation algorithm, see m05600.pm

NOTE:

In order to not have double work while migrating existing code to test modules, here's a work sheet for everyone who wants to contribute. Simply put your name to reserve a particular mode here:

https://docs.google.com/spreadsheets/d/14uxfwDiq316Qad0ILavWD2eeYSVr4vn2HD58hdlL35g/edit#gid=0