1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-01-12 16:51:00 +00:00

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

This commit is contained in:
philsmd 2017-01-27 12:30:27 +01:00
parent 351a1f1ffc
commit 0c68f757d5
No known key found for this signature in database
GPG Key ID: 4F25D016D9D6A8AF

View File

@ -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); 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 (hashconfig->hash_mode == 3000) // the following conditions should be true if (hashlist_format == HLFMT_PWDUMP)
if (user_buf != NULL)
{ {
user_ptr->user_name = hcstrdup (user_buf); if (hash_len == 32)
} {
else hashes_per_user = 2;
{ }
user_ptr->user_name = hcstrdup ("");
} }
user_ptr->user_len = user_len; for (u32 i = 0; i < hashes_per_user; i++)
{
user_t **user = &hashes_buf[hashes_cnt + i].hash_info->user;
*user = (user_t *) hcmalloc (sizeof (user_t));
user_t *user_ptr = *user;
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) if (hashconfig->opts_type & OPTS_TYPE_HASH_COPY)