philsmd
5df743cb85
fixes #2410 : added -m 2300x = SecureZIP
2020-05-31 10:36:41 +02:00
philsmd
ea6eab29f8
added OpenCL kernel code for AES-192
2020-05-31 10:30:19 +02:00
Jens Steube
6c0dc7493e
Fix modules where salt->salt_buf[] is used but salt->salt_len was not set
2020-05-29 11:19:49 +02:00
Jens Steube
84d3981e7b
Add returncode PARSER_HAVE_ERRNO as a valid returncode from module_hash_binary_count() and module_hash_binary_parse() module hooks. You can use this in case fopen() fails and you want to transport back the original error from the OS
2020-05-27 15:23:02 +02:00
Jens Steube
bb19c9cf1b
Merge pull request #2373 from mpalmer/more-error-messages
...
Add some more generic error messages
2020-05-26 13:25:36 +02:00
Jens Steube
9b64a405d1
Fixed cleanup of password candidate buffers on GPU set from autotune in case -n was used
2020-05-20 12:44:04 +02:00
Jens Steube
1dc3469f6e
Merge pull request #2372 from mpalmer/binary-parse-report-error
...
Allow module_hash_binary_parse to report a fatal error
2020-05-18 15:14:49 +02:00
Jens Steube
109fa01a54
Merge pull request #2395 from s3inlc/patch-2
...
Adding escaping for --status-json
2020-05-14 09:44:10 +02:00
Sein Coray
d91a25027b
minor adjustments to code style and explanatory comment added
2020-05-13 13:37:30 +02:00
Jens Steube
ff37264c36
Use special type for hashlist sorting in brain_compute_session()
2020-05-12 08:54:26 +02:00
Sein Coray
4a0757e251
added escaping to --status-json output
2020-05-11 23:22:47 +02:00
Jens Steube
f9e4dc0db1
Remove sort_by_string(), no longer needed
2020-05-11 12:00:26 +02:00
Jens Steube
d5cd0a0030
Fix invalid brain session id calculation and move sorting functions to shared.c
2020-05-11 11:52:36 +02:00
Jens Steube
08ea00020a
Fixed calculation of brain-session ID, only the first hash of the hashset was taken into account
2020-05-10 10:05:14 +02:00
Jens Steube
d34381680d
Merge pull request #2389 from philsmd/multibit_22500_fix
...
fixes possible off-by-one verification problem with -m 22500 = MultiBit Classic
2020-05-08 11:41:54 +02:00
Jens Steube
89b75fe16e
Merge pull request #2388 from philsmd/master
...
fixes #2383 : added -m 22700 = MultiBit HD (scrypt)
2020-05-08 11:40:41 +02:00
philsmd
e15e0e7b71
fixes possible off-by-one verification problem with -m 22500 = MultiBit Classic
2020-05-08 11:11:47 +02:00
philsmd
b7e5216cf1
fixes #2383 : added -m 22700 = MultiBit HD (scrypt)
2020-05-08 10:57:32 +02:00
Jens Steube
33579ae3db
Add new option for modules OPTS_TYPE_SELF_TEST_DISABLE to disable self-test functionality from hash-mode directly
2020-05-08 10:18:17 +02:00
Jens Steube
c7da6357ff
suppress some handpicked control characters from being printed to console
2020-04-30 13:29:51 +02:00
Jens Steube
d22a9a0978
Merge branch 'master' of https://github.com/hashcat/hashcat
2020-04-30 12:58:46 +02:00
Matt Palmer
b25c8d9a5a
Add some more generic error messages
...
These are almost all taken from error messages that are specific to one
particular module, and turned into generic errors that can be used for any
module. It seemed like a better idea to provide generic messages than to
encourage infinite proliferation of error codes (which would probably end up
blowing the 255 value threshold sooner or later). It doesn't seem necessary
to provide module-specific error messages for things like "Invalid <X>
filesize", since users should already know what sort of file they're asking
to be parsed.
2020-04-23 12:36:15 +10:00
Matt Palmer
b4204d265d
Allow module_hash_binary_parse to report a fatal error
...
If module_hash_binary_parse is completely unable to successfully parse out
any hashes, up until now the output has been
```
Hashfile 'foo': Success
```
which is less than helpful.
This patch allows (but does not require) m_h_binary_parse to report a useful
error response, by returning a negative value. Modules which continue to
return '0 hashes' will get the same less-than-useful behaviour they always
hace.
I've also modified the LUKS module to report a useful error, as a proof of
concept.
Further expansions on this could include:
* Applying similar behaviour to module_hash_binary_count, so it too can
report errors when trying to count hashes. This would require more
co-ordinated change, because m_h_binary_count already uses -1 to indicate
a system error.
* Allow and encourage modules to print their own errors and warnings during
parsing. This would allow for situations where a single hash in a
multi-hash file could be reported as malformed, without having to fail the
whole parse. However, implementing this would, I expect, require modules
to have access to `hashcat_ctx`, which... yeah. Not so straightforward.
2020-04-23 12:05:41 +10:00
Jens Steube
c5d2d5396f
Merge pull request #2366 from philsmd/patch-1
...
fixes #2361 : add note about --force when using -u / -n
2020-04-20 11:54:56 +02:00
Jens Steube
e542b4bd85
Merge pull request #2364 from mpalmer/fix-build-warning-in-debug-mode
...
Fix build warning in DEBUG mode
2020-04-20 11:54:28 +02:00
philsmd
01d378a744
fixes #2361 : add note about --force when using -u / -n
2020-04-19 05:11:52 +02:00
Matt Palmer
240d35976a
Fix build warning in DEBUG mode
...
Just a tiny cleanup to avoid an 'unused variable' warning when building
with DEBUG=1.
2020-04-18 12:18:18 +10:00
Jens Steube
f96594ef87
Merge pull request #2355 from philsmd/master
...
Added -m 22600 = Telegram Desktop App Passcode (PBKDF2-HMAC-SHA1)
2020-04-08 16:14:59 +02:00
philsmd
688d904aa0
Added -m 22600 = Telegram Desktop App Passcode (PBKDF2-HMAC-SHA1)
2020-04-08 14:31:47 +02:00
Jens Steube
1797f3ffa4
Merge branch 'master' of https://github.com/hashcat/hashcat
2020-04-02 15:16:26 +02:00
Jens Steube
3c1ddc8149
Revert "Precompute some constants to improve performance of -m 780x SAP kernels"
...
This reverts commit b1bb47c1ae
.
2020-04-02 14:55:04 +02:00
Jens Steube
b89bb84e1d
Revert "Fix -m 7800 and -m 7801 on CPU"
...
This reverts commit 9f9ed78ca7
.
2020-04-02 14:54:35 +02:00
Jens Steube
2c94c003ce
Merge pull request #2353 from s3inlc/patch-separator
...
Patch all inconsistent separators in modules
2020-04-02 14:39:42 +02:00
Jens Steube
a45548d176
Merge pull request #2351 from s3inlc/patch-1
...
Fix constant separator when printing IPMI hashes
2020-04-02 14:39:24 +02:00
Jens Steube
26570cdb17
Disable some modules on AMDGPU-Pro driver
2020-04-01 15:10:52 +02:00
Jens Steube
008072eb65
OpenCL Runtime: Added a warning if OpenCL runtime NEO, Beignet, POCL or MESA is detected and skip associated devices (override with --force)
2020-04-01 10:16:49 +02:00
s3inlc
b9d251b76e
fixing all inconsistent hash separators
2020-03-31 20:40:09 +02:00
Sein Coray
f8ef6f67bf
Merge pull request #1 from hashcat/master
...
update
2020-03-31 20:23:37 +02:00
Sein Coray
949b61a6bb
Fix constant separator when printing IPMI hashes
2020-03-31 17:37:46 +02:00
Jens Steube
e3e31adec3
Merge branch 'master' of https://github.com/hashcat/hashcat
2020-03-31 14:41:35 +02:00
Jens Steube
584d6f093c
Merge pull request #2350 from philsmd/patch-1
...
fixes #2341 : electrum 4/5 mod_512 () infinite loop fix
2020-03-31 13:28:12 +02:00
philsmd
53d2e45795
fixes #2341 : electrum 4/5 mod_512 () infinite loop fix
2020-03-31 11:01:47 +02:00
Jens Steube
2d8893110c
Merge pull request #2348 from philsmd/guideWhitespaceFix
...
docs: removed some unnecessary whitespace chars from the guide
2020-03-30 18:02:42 +02:00
Jens Steube
10e986990b
Merge pull request #2349 from philsmd/hexSaltFix
...
fixes #2339 : problem with --hex-salt fixed
2020-03-30 18:02:32 +02:00
Jens Steube
083ffaa10e
Merge pull request #2347 from philsmd/master
...
make -m 21200 more generic (accept all supported salt len)
2020-03-30 18:01:26 +02:00
philsmd
15eb70152f
fixes #2339 : problem with --hex-salt fixed
2020-03-30 14:06:11 +02:00
philsmd
619cd5f1ec
docs: removed some unnecessary whitespace chars from the guide
2020-03-30 14:02:57 +02:00
philsmd
4f3165c6ea
make -m 21200 more generic (except all supported salt len)
2020-03-30 13:53:37 +02:00
Jens Steube
ddb641b843
Add option to force disable real SHM access to be used from within the module
2020-03-20 16:20:22 +01:00
Jens Steube
82a024d9cb
Merge branch 'master' of https://github.com/hashcat/hashcat
2020-03-20 16:09:41 +01:00