Merge branch 'master' into SolarWinds2
This commit is contained in:
+45
-9
@@ -4,29 +4,61 @@
|
||||
## Algorithms
|
||||
##
|
||||
|
||||
- Added hash-mode: Bitwarden
|
||||
- Added hash-mode: BestCrypt v3 Volume Encryption
|
||||
- Added hash-mode: Apple iWork
|
||||
- Added hash-mode: AxCrypt 2 AES-128
|
||||
- Added hash-mode: AxCrypt 2 AES-256
|
||||
- Added hash-mode: BestCrypt v3 Volume Encryption
|
||||
- Added hash-mode: Bitwarden
|
||||
- Added hash-mode: Dahua Authentication MD5
|
||||
- Added hash-mode: MongoDB ServerKey SCRAM-SHA-1
|
||||
- Added hash-mode: MongoDB ServerKey SCRAM-SHA-256
|
||||
- Added hash-mode: Mozilla key3.db
|
||||
- Added hash-mode: Mozilla key4.db
|
||||
- Added hash-mode: MS Office 2016 - SheetProtection
|
||||
- Added hash-mode: PDF 1.4 - 1.6 (Acrobat 5 - 8) - edit password
|
||||
- Added hash-mode: PKCS#8 Private Keys
|
||||
- Added hash-mode: RAR3-p (Compressed)
|
||||
- Added hash-mode: RAR3-p (Uncompressed)
|
||||
- Added hash-mode: RSA/DSA/EC/OPENSSH Private Keys
|
||||
- Added hash-mode: SQLCipher
|
||||
- Added hash-mode: Stargazer Stellar Wallet XLM
|
||||
- Added hash-mode: Stuffit5
|
||||
- Added hash-mode: Telegram Desktop >= v2.1.14 (PBKDF2-HMAC-SHA512)
|
||||
- Added hash-mode: Umbraco HMAC-SHA1
|
||||
- Added hash-mode: sha1($salt.sha1($pass.$salt))
|
||||
- Added hash-mode: sha1(sha1($pass).$salt)
|
||||
- Added hash-mode: SolarWinds Orion v2
|
||||
- Added hash-mode: SolarWinds Serv-U
|
||||
|
||||
##
|
||||
## Features
|
||||
##
|
||||
|
||||
- Added support for true UTF8 to UTF16 conversion in kernel crypto library
|
||||
- Added option --hash-info to show generic information for each hash-mode
|
||||
- Removed option --example-hashes, now is an alias of --hash-info
|
||||
|
||||
##
|
||||
## Bugs
|
||||
##
|
||||
|
||||
- Fixed too early execution of some module functions which could make use of non-final values opts_type and opti_type
|
||||
- Fixed internal access on module option attribute OPTS_TYPE_SUGGEST_KG with the result that it was unused
|
||||
- Fixed race condition resulting in out of memory error on startup if multiple hashcat instances are started at the same time
|
||||
- Fixed unexpected non-unique salts in multi-hash cracking in Bitcoin/Litecoin wallet.dat module which lead to false negatives
|
||||
- Fixed rare case of misalignment of the status prompt when other user warnings are shown within the hashcat output
|
||||
- Fixed password reassembling for cracked hashes on host for slow hashes in optimized mode that are longer than 32 characters
|
||||
- Fixed access to filename which is a null-pointer in benchmark mode
|
||||
- Fixed both false negative and false positive result in -m 3000 in -a 3 (affected only NVIDIA GPU)
|
||||
- Fixed buffer overflow in -m 1800 in -O mode which is optimized to handle only password candidates up to length 15
|
||||
- Fixed buffer overflow in -m 4710 in -P mode and only in single hash mode if salt length was larger than 32 byte
|
||||
- Fixed incorrect maximum password length support for -m 400 in optimized mode (reduced from 55 to 39)
|
||||
- Fixed internal access on module option attribute OPTS_TYPE_SUGGEST_KG with the result that it was unused
|
||||
- Fixed invalid handling of outfile folder entries for -m 22000
|
||||
- Fixed memory leak causing problems in sessions with many iterations. for instance, --benchmark-all or large mask files
|
||||
- Fixed out-of-boundary reads in case user activates -S for fast but pure hashes in -a 1 or -a 3 mode
|
||||
- Fixed password reassembling for cracked hashes on host for slow hashes in optimized mode that are longer than 32 characters
|
||||
- Fixed race condition in potfile check during removal of empty hashes
|
||||
- Fixed race condition resulting in out of memory error on startup if multiple hashcat instances are started at the same time
|
||||
- Fixed rare case of misalignment of the status prompt when other user warnings are shown within the hashcat output
|
||||
- Fixed too early execution of some module functions which could make use of non-final values opts_type and opti_type
|
||||
- Fixed tuning database search if a device was not assigned an alias it couldn't be found in general
|
||||
- Fixed unexpected non-unique salts in multi-hash cracking in Bitcoin/Litecoin wallet.dat module which lead to false negatives
|
||||
- Fixed vector datatype support in -m 21100 only -P mode and only -a 3 mode were affected
|
||||
|
||||
##
|
||||
## Improvements
|
||||
@@ -36,8 +68,10 @@
|
||||
- CUDA Backend: Give detailed warning if either the NVIDIA CUDA or the NVIDIA RTC library cannot be initialized
|
||||
- CUDA Backend: Do not warn about missing CUDA SDK installation if --backend-ignore-cuda is used
|
||||
- CUDA Backend: Use blocking events to avoid 100% CPU core usage (per GPU)
|
||||
- OpenCL Runtime: Workaround JiT compiler deadlock on NVIDIA driver >= 465.89
|
||||
- RAR3 Kernels: Improved loop code, improving performance by 23%
|
||||
- Startup time: Improved the startup time by avoiding some time intensive operations for skipped devices
|
||||
- Scrypt Kernels: Reduced kernel wait times by making it a true split kernel where iteration count = N value
|
||||
|
||||
##
|
||||
## Technical
|
||||
@@ -48,7 +82,9 @@
|
||||
- Hash-Mode 11600 (7-Zip): Improved memory handling (alloc and free) for the hook function
|
||||
- Hash-Mode 13200 (AxCrypt): Changed the name to AxCrypt 1 to avoid confusion
|
||||
- Hash-Mode 13300 (AxCrypt in-memory SHA1): Changed the name to AxCrypt 1 in-memory SHA1
|
||||
- OpenCL Runtime: Switched default OpenCL device type on macOS from GPU to CPU. Use -D 2 to enable GPU devices.
|
||||
- Kernel Crypto Library: Removed unnecessary utf16 conversion functions which would apply on HMAC data portion
|
||||
- Kernel Development: Kernel cache is disabled automatically in case hashcat is compiled with DEBUG=1
|
||||
- OpenCL Runtime: Switched default OpenCL device type on macOS from GPU to CPU. Use -D 2 to enable GPU devices
|
||||
- Unit tests: Added Python 3 support for all of the Python code in our test framework
|
||||
- Unit tests: Fixed the packaging of test (-p) feature
|
||||
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2015-2020 Jens Steube
|
||||
Copyright (c) 2015-2021 Jens Steube
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
||||
+16
-2
@@ -98,6 +98,7 @@ NVIDIA GPUs require "NVIDIA Driver" (440.64 or later) and "CUDA Toolkit" (9.0 or
|
||||
- sha1(md5(md5($pass)))
|
||||
- sha1(sha1($pass))
|
||||
- sha1(sha1($pass).$salt)
|
||||
- sha1($salt.sha1($pass.$salt))
|
||||
- sha1(utf16le($pass).$salt)
|
||||
- sha256($pass.$salt)
|
||||
- sha256($salt.$pass)
|
||||
@@ -160,10 +161,13 @@ NVIDIA GPUs require "NVIDIA Driver" (440.64 or later) and "CUDA Toolkit" (9.0 or
|
||||
- NetNTLMv1 / NetNTLMv1+ESS
|
||||
- NetNTLMv2
|
||||
- Skype
|
||||
- Telegram Desktop App Passcode (PBKDF2-HMAC-SHA1)
|
||||
- Telegram Desktop < v2.1.14 (PBKDF2-HMAC-SHA1)
|
||||
- Telegram Desktop >= v2.1.14 (PBKDF2-HMAC-SHA512)
|
||||
- Telegram Mobile App Passcode (SHA256)
|
||||
- PostgreSQL CRAM (MD5)
|
||||
- MongoDB ServerKey SCRAM-SHA-1
|
||||
- MongoDB ServerKey SCRAM-SHA-256
|
||||
- MySQL CRAM (SHA1)
|
||||
- PostgreSQL CRAM (MD5)
|
||||
- XMPP SCRAM
|
||||
- RACF
|
||||
- AIX {smd5}
|
||||
@@ -216,6 +220,7 @@ NVIDIA GPUs require "NVIDIA Driver" (440.64 or later) and "CUDA Toolkit" (9.0 or
|
||||
- MySQL4.1/MySQL5
|
||||
- MySQL $A$ (sha256crypt)
|
||||
- Sybase ASE
|
||||
- SQLCipher
|
||||
- hMailServer
|
||||
- DNSSEC (NSEC3)
|
||||
- CRAM-MD5 Dovecot
|
||||
@@ -238,6 +243,7 @@ NVIDIA GPUs require "NVIDIA Driver" (440.64 or later) and "CUDA Toolkit" (9.0 or
|
||||
- PeopleSoft PS_TOKEN
|
||||
- SolarWinds Orion
|
||||
- SolarWinds Orion v2
|
||||
- SolarWinds Serv-U
|
||||
- Lotus Notes/Domino 5
|
||||
- Lotus Notes/Domino 6
|
||||
- Lotus Notes/Domino 8
|
||||
@@ -260,12 +266,14 @@ NVIDIA GPUs require "NVIDIA Driver" (440.64 or later) and "CUDA Toolkit" (9.0 or
|
||||
- PDF 1.1 - 1.3 (Acrobat 2 - 4), collider #1
|
||||
- PDF 1.1 - 1.3 (Acrobat 2 - 4), collider #2
|
||||
- PDF 1.4 - 1.6 (Acrobat 5 - 8)
|
||||
- PDF 1.4 - 1.6 (Acrobat 5 - 8) - edit password
|
||||
- PDF 1.7 Level 3 (Acrobat 9)
|
||||
- PDF 1.7 Level 8 (Acrobat 10 - 11)
|
||||
- Apple iWork
|
||||
- MS Office 2007
|
||||
- MS Office 2010
|
||||
- MS Office 2013
|
||||
- MS Office 2016 - SheetProtection
|
||||
- MS Office <= 2003 $0/$1, MD5 + RC4
|
||||
- MS Office <= 2003 $0/$1, MD5 + RC4, collider #1
|
||||
- MS Office <= 2003 $0/$1, MD5 + RC4, collider #2
|
||||
@@ -291,6 +299,9 @@ NVIDIA GPUs require "NVIDIA Driver" (440.64 or later) and "CUDA Toolkit" (9.0 or
|
||||
- Blockchain, My Wallet
|
||||
- Blockchain, My Wallet, V2
|
||||
- Blockchain, My Wallet, Second Password (SHA256)
|
||||
- Mozilla key3.db
|
||||
- Mozilla key4.db
|
||||
- Stargazer Stellar Wallet XLM
|
||||
- Ethereum Pre-Sale Wallet, PBKDF2-HMAC-SHA256
|
||||
- Ethereum Wallet, PBKDF2-HMAC-SHA256
|
||||
- Ethereum Wallet, SCRYPT
|
||||
@@ -314,6 +325,7 @@ NVIDIA GPUs require "NVIDIA Driver" (440.64 or later) and "CUDA Toolkit" (9.0 or
|
||||
- iTunes backup >= 10.0
|
||||
- WinZip
|
||||
- Android Backup
|
||||
- Stuffit5
|
||||
- AxCrypt 1
|
||||
- AxCrypt 1 in-memory SHA1
|
||||
- AxCrypt 2 AES-128
|
||||
@@ -325,6 +337,7 @@ NVIDIA GPUs require "NVIDIA Driver" (440.64 or later) and "CUDA Toolkit" (9.0 or
|
||||
- SMF (Simple Machines Forum) > v1.1
|
||||
- MediaWiki B type
|
||||
- Redmine
|
||||
- Umbraco HMAC-SHA1
|
||||
- Joomla < 2.5.18
|
||||
- OpenCart
|
||||
- PrestaShop
|
||||
@@ -337,6 +350,7 @@ NVIDIA GPUs require "NVIDIA Driver" (440.64 or later) and "CUDA Toolkit" (9.0 or
|
||||
- Django (SHA-1)
|
||||
- Web2py pbkdf2-sha512
|
||||
- TOTP (HMAC-SHA1)
|
||||
- Dahua Authentication MD5
|
||||
|
||||
##
|
||||
## Attack-Modes
|
||||
|
||||
Reference in New Issue
Block a user