fixes 996: for pwdump format both halves of LM need to have the username info

pull/997/head
philsmd 7 years ago
parent 351a1f1ffc
commit 0c68f757d5
No known key found for this signature in database
GPG Key ID: 4F25D016D9D6A8AF

@ -915,22 +915,38 @@ int hashes_init_stage1 (hashcat_ctx_t *hashcat_ctx)
hlfmt_user (hashcat_ctx, hashlist_format, line_buf, line_len, &user_buf, &user_len);
user_t **user = &hashes_buf[hashes_cnt].hash_info->user;
// special case:
// both hash_t need to have the username info if the pwdump format is used (i.e. we have 2 hashes for 3000, both with same user)
*user = (user_t *) hcmalloc (sizeof (user_t));
u32 hashes_per_user = 1;
user_t *user_ptr = *user;
if (user_buf != NULL)
if (hashconfig->hash_mode == 3000) // the following conditions should be true if (hashlist_format == HLFMT_PWDUMP)
{
user_ptr->user_name = hcstrdup (user_buf);
if (hash_len == 32)
{
hashes_per_user = 2;
}
}
else
for (u32 i = 0; i < hashes_per_user; i++)
{
user_ptr->user_name = hcstrdup ("");
}
user_t **user = &hashes_buf[hashes_cnt + i].hash_info->user;
*user = (user_t *) hcmalloc (sizeof (user_t));
user_t *user_ptr = *user;
user_ptr->user_len = user_len;
if (user_buf != NULL)
{
user_ptr->user_name = hcstrdup (user_buf);
}
else
{
user_ptr->user_name = hcstrdup ("");
}
user_ptr->user_len = user_len;
}
}
if (hashconfig->opts_type & OPTS_TYPE_HASH_COPY)

Loading…
Cancel
Save