Merge pull request #3832 from mohemiv/potfile-fix

Fixing a bug that --outfile-autohex-disable affects potfile
pull/3857/head
Jens Steube 8 months ago committed by GitHub
commit db4d8e23e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -103,6 +103,7 @@
- Fixed vector datatypes usage for HIP
- Fixed out-of-boundary read when a fast hash defines a kernel_loops_min value higher than the amplifiers provided by the user
- Fix missing check for -j and -k before writing hashcat.dictstat2 which can lead to false negatives
- Fixed a bug that --outfile-autohex-disable affects potfile
##
## Technical

@ -275,7 +275,7 @@ void potfile_write_append (hashcat_ctx_t *hashcat_ctx, const char *out_buf, cons
{
const bool always_ascii = (hashconfig->opts_type & OPTS_TYPE_PT_ALWAYS_ASCII) ? true : false;
if ((user_options->outfile_autohex == true) && (need_hexify (plain_ptr, plain_len, hashconfig->separator, always_ascii) == true))
if (need_hexify (plain_ptr, plain_len, hashconfig->separator, always_ascii) == true)
{
tmp_buf[tmp_len++] = '$';
tmp_buf[tmp_len++] = 'H';

Loading…
Cancel
Save