1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-01-27 16:11:06 +00:00

Clarified the --help of test.pl: passthrough and potthrough generate a new salt on each invocation, and verify parses the salt.

This commit is contained in:
Your Name 2021-06-30 22:09:27 +02:00
parent d22c599c98
commit 0a2245959f

View File

@ -599,16 +599,19 @@ sub usage_exit
. "\n" . "\n"
. "Passthrough:\n" . "Passthrough:\n"
. " Generates hashes for strings entered via stdin and prints them to stdout.\n" . " Generates hashes for strings entered via stdin and prints them to stdout.\n"
. " Each call generates a hash with a new random salt.\n"
. "\n" . "\n"
. "Potthrough:\n" . "Potthrough:\n"
. " Like passthrough, but includes both the hash and the plain in hash:plain format,\n" . " Like passthrough, but includes both the hash and the plain in hash:plain format,\n"
. " similar to the classic potfile format, yet this only works for unsalted hashes.\n" . " similar to the classic potfile format. Each call generates a hash wit a new \n"
. " random salt.\n"
. "\n" . "\n"
. "Verify:\n" . "Verify:\n"
. " Reads a list of hashes from <hashfile> and a list of hash:password pairs from\n" . " Reads a list of hashes from <hashfile> and a list of hash:password pairs from\n"
. " <cracksfile>. Hashes every password and compares the hash to the corresponding\n" . " <cracksfile>. Hashes every password and compares the hash to the corresponding\n"
. " entry in the <cracksfile>. If the hashes match and the hash is present in the\n" . " entry in the <cracksfile>. If the hashes match and the hash is present in the\n"
. " list from <hashfile>, it will be written to the <outfile>.\n" . " list from <hashfile>, it will be written to the <outfile>. The salt of the hash\n"
. " is ignored in the comparison.\n"
. "\n"; . "\n";
exit 1; exit 1;