mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-22 08:08:10 +00:00
Merge pull request #3832 from mohemiv/potfile-fix
Fixing a bug that --outfile-autohex-disable affects potfile
This commit is contained in:
commit
db4d8e23e5
@ -103,6 +103,7 @@
|
|||||||
- Fixed vector datatypes usage for HIP
|
- 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
|
- 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
|
- 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
|
## 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;
|
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++] = '$';
|
||||||
tmp_buf[tmp_len++] = 'H';
|
tmp_buf[tmp_len++] = 'H';
|
||||||
|
Loading…
Reference in New Issue
Block a user