From a5818facf22cee1a8edbe103abf962fcd32e5c1f Mon Sep 17 00:00:00 2001 From: Jens Steube Date: Sun, 11 Nov 2018 10:13:38 +0100 Subject: [PATCH] Brain: Set --brain-client-features default from 3 to 2 --- docs/changes.txt | 38 ++++++++++++++++++++++---------------- include/types.h | 2 +- 2 files changed, 23 insertions(+), 17 deletions(-) diff --git a/docs/changes.txt b/docs/changes.txt index 1a453d676..dc9c0c726 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -27,6 +27,28 @@ ## Improvements ## +- xxHash: Added support for using system-wide installation + +## +## Bugs +## + +- Fixed automated calculation of brain-session when not using all hashes in the hashlist +- Fixed calculation of brain-attack if a given wordlist has the size zero +- Fixed checking the length of the last token in a hash if it was given the attribute TOKEN_ATTR_FIXED_LENGTH +- Fixed endianness and invalid separator character in outfile format for hash-mode 16801 (WPA-PMKID-PMK) +- Fixed ignoring --brain-client-features configuration when brain-server has attack positions information from a previous run +- Fixed invalid warnings about throttling in case --hwmon-disable was used +- Fixed missing call to WSACleanup() to cleanly shutdown windows sockets system +- Fixed missing call to WSAStartup() and client indexing in order to start the brain server on Windows +- Fixed out-of-bounds write in short-term memory of the brain-server +- Fixed status output of progress value in case -S and -l used in combination + +## +## Technical +## + +- Brain: Set --brain-client-features default from 3 to 2 - Depencies: Added xxHash and OpenCL-Headers to deps/ in order to allow building hashcat from GitHub source release package - Depencies: Removed gitmodules xxHash and OpenCL-Headers - Hardware Monitor: Renamed --gpu-temp-abort to --hwmon-temp-abort @@ -54,22 +76,6 @@ - Tests: Added hash-mode 13771 (VeraCrypt PBKDF2-HMAC-Streebog-512 + XTS 512 bit) - Tests: Added hash-mode 13772 (VeraCrypt PBKDF2-HMAC-Streebog-512 + XTS 1024 bit) - Tests: Added hash-mode 13773 (VeraCrypt PBKDF2-HMAC-Streebog-512 + XTS 1536 bit) -- xxHash: Added support for using system-wide installation - -## -## Bugs -## - -- Fixed automated calculation of brain-session when not using all hashes in the hashlist -- Fixed calculation of brain-attack if a given wordlist has the size zero -- Fixed checking the length of the last token in a hash if it was given the attribute TOKEN_ATTR_FIXED_LENGTH -- Fixed endianness and invalid separator character in outfile format for hash-mode 16801 (WPA-PMKID-PMK) -- Fixed ignoring --brain-client-features configuration when brain-server has attack positions information from a previous run -- Fixed invalid warnings about throttling in case --hwmon-disable was used -- Fixed missing call to WSACleanup() to cleanly shutdown windows sockets system -- Fixed missing call to WSAStartup() and client indexing in order to start the brain server on Windows -- Fixed out-of-bounds write in short-term memory of the brain-server -- Fixed status output of progress value in case -S and -l used in combination * changes v4.2.1 -> v5.0.0 diff --git a/include/types.h b/include/types.h index 415c33984..8fc302ab1 100644 --- a/include/types.h +++ b/include/types.h @@ -539,7 +539,7 @@ typedef enum user_options_defaults BITMAP_MIN = 16, #ifdef WITH_BRAIN BRAIN_CLIENT = false, - BRAIN_CLIENT_FEATURES = 3, + BRAIN_CLIENT_FEATURES = 2, BRAIN_PORT = 6863, BRAIN_SERVER = false, BRAIN_SESSION = 0,