Fixed a bug that --outfile-autohex-disable affects potfile

pull/3832/head
Arseniy Sharoglazov 9 months ago
parent d0d07daf91
commit 50e7d9d56c

@ -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