mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-21 15:48:08 +00:00
fix example0*, skip autodetect if keyspace enabled, update help and changes.txt
This commit is contained in:
parent
b8ae1444de
commit
1106e163ca
@ -21,6 +21,12 @@
|
||||
- Added hash-mode: sha384($salt.utf16le($pass))
|
||||
- Added hash-mode: sha384(utf16le($pass).$salt)
|
||||
|
||||
##
|
||||
## Features
|
||||
##
|
||||
|
||||
- Autodetect hash-type: performs an automatic analysis of the input hash(es), associating compatible algorithms, or executing the attack if only one compatible format is found.
|
||||
|
||||
##
|
||||
## Bugs
|
||||
##
|
||||
@ -41,7 +47,6 @@
|
||||
- RC4 Kernels: Improved performance by 20%+ for hash-modes Kerberos 5 (etype 23), MS Office (<= 2003) and PDF (<= 1.6) by using new RC4 code
|
||||
- Status Screen: Show currently running kernel type (pure, optimized) and generator type (host, device)
|
||||
- UTF8-to-UTF16: Replaced naive UTF8 to UTF16 conversion with true conversion for RAR3, AES Crypt, MultiBit HD (scrypt) and Umbraco HMAC-SHA1
|
||||
- Autodetect hash-type: performs an automatic analysis of the hashlist, associating compatible algorithms, or executing the attack if only one compatible format is found.
|
||||
|
||||
##
|
||||
## Technical
|
||||
|
@ -1,2 +1,2 @@
|
||||
hashcat.exe -t 32 -a 7 example0.hash ?a?a?a?a example.dict
|
||||
hashcat.exe -m 0 -t 32 -a 7 example0.hash ?a?a?a?a example.dict
|
||||
pause
|
||||
|
@ -1 +1 @@
|
||||
./hashcat -t 32 -a 7 example0.hash ?a?a?a?a example.dict
|
||||
./hashcat -m 0 -t 32 -a 7 example0.hash ?a?a?a?a example.dict
|
||||
|
@ -26,7 +26,7 @@ static const char *const USAGE_BIG_PRE_HASHMODES[] =
|
||||
"",
|
||||
" Options Short / Long | Type | Description | Example",
|
||||
"================================+======+======================================================+=======================",
|
||||
" -m, --hash-type | Num | Hash-type, see references below | -m 1000",
|
||||
" -m, --hash-type | Num | Hash-type, references below (otherwise autodetect) | -m 1000",
|
||||
" -a, --attack-mode | Num | Attack-mode, see references below | -a 3",
|
||||
" -V, --version | | Print version |",
|
||||
" -h, --help | | Print help |",
|
||||
|
@ -1894,7 +1894,7 @@ void user_options_preprocess (hashcat_ctx_t *hashcat_ctx)
|
||||
user_options->potfile_disable = true;
|
||||
}
|
||||
|
||||
if (user_options->stdout_flag == false && user_options->benchmark == false)
|
||||
if (user_options->stdout_flag == false && user_options->benchmark == false && user_options->keyspace == false)
|
||||
{
|
||||
if (user_options->hash_mode == 0 && user_options->hash_mode_chgd == false)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user