mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-21 15:48:08 +00:00
Change hlfmt.c strategy to extract dynamic-x hash-mode
This commit is contained in:
parent
09915c7243
commit
4da995cf88
19
src/hlfmt.c
19
src/hlfmt.c
@ -28,14 +28,13 @@ static void hlfmt_hash_hashcat (MAYBE_UNUSED hashcat_ctx_t *hashcat_ctx, char *l
|
||||
const user_options_t *user_options = hashcat_ctx->user_options;
|
||||
const hashconfig_t *hashconfig = hashcat_ctx->hashconfig;
|
||||
|
||||
if ((user_options->username == true) && (user_options->dynamic_x == true))
|
||||
{
|
||||
*hashbuf_pos = line_buf;
|
||||
*hashbuf_len = line_len;
|
||||
|
||||
}
|
||||
else if (user_options->username == true)
|
||||
if (user_options->username == true)
|
||||
{
|
||||
char *pos = line_buf;
|
||||
size_t len = line_len;
|
||||
char *pos = *hashbuf_pos;
|
||||
size_t len = *hashbuf_len;
|
||||
|
||||
for (int i = 0; i < line_len; i++, pos++, len--)
|
||||
{
|
||||
@ -52,15 +51,11 @@ static void hlfmt_hash_hashcat (MAYBE_UNUSED hashcat_ctx_t *hashcat_ctx, char *l
|
||||
*hashbuf_pos = pos;
|
||||
*hashbuf_len = len;
|
||||
}
|
||||
else if (user_options->dynamic_x == true)
|
||||
|
||||
if (user_options->dynamic_x == true)
|
||||
{
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
*hashbuf_pos = line_buf;
|
||||
*hashbuf_len = line_len;
|
||||
}
|
||||
}
|
||||
|
||||
static void hlfmt_user_hashcat (MAYBE_UNUSED hashcat_ctx_t *hashcat_ctx, char *line_buf, const int line_len, char **userbuf_pos, int *userbuf_len)
|
||||
|
Loading…
Reference in New Issue
Block a user