2016-09-27 18:07:49 +00:00
|
|
|
/**
|
|
|
|
* Author......: See docs/credits.txt
|
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
#include "types.h"
|
2016-10-08 21:45:35 +00:00
|
|
|
#include "event.h"
|
2016-10-31 10:28:06 +00:00
|
|
|
#include "shared.h"
|
2016-09-27 18:07:49 +00:00
|
|
|
#include "wordlist.h"
|
2019-03-31 15:39:00 +00:00
|
|
|
#include "combinator.h"
|
2016-09-27 18:07:49 +00:00
|
|
|
|
2016-10-06 08:10:04 +00:00
|
|
|
int combinator_ctx_init (hashcat_ctx_t *hashcat_ctx)
|
2016-09-27 18:07:49 +00:00
|
|
|
{
|
2016-10-06 08:10:04 +00:00
|
|
|
combinator_ctx_t *combinator_ctx = hashcat_ctx->combinator_ctx;
|
2017-07-18 12:45:15 +00:00
|
|
|
hashconfig_t *hashconfig = hashcat_ctx->hashconfig;
|
2016-10-06 08:10:04 +00:00
|
|
|
user_options_t *user_options = hashcat_ctx->user_options;
|
2022-02-13 11:33:11 +00:00
|
|
|
user_options_extra_t *user_options_extra = hashcat_ctx->user_options_extra;
|
2016-10-06 08:10:04 +00:00
|
|
|
|
2016-09-27 18:07:49 +00:00
|
|
|
combinator_ctx->enabled = false;
|
|
|
|
|
2023-05-01 15:38:42 +00:00
|
|
|
if (user_options->usage > 0) return 0;
|
|
|
|
if (user_options->backend_info > 0) return 0;
|
|
|
|
|
2022-02-13 11:33:11 +00:00
|
|
|
if (user_options->hash_info == true) return 0;
|
|
|
|
if (user_options->left == true) return 0;
|
|
|
|
if (user_options->show == true) return 0;
|
|
|
|
if (user_options->version == true) return 0;
|
2016-09-30 09:48:14 +00:00
|
|
|
|
2016-09-27 18:07:49 +00:00
|
|
|
if ((user_options->attack_mode != ATTACK_MODE_COMBI)
|
|
|
|
&& (user_options->attack_mode != ATTACK_MODE_HYBRID1)
|
|
|
|
&& (user_options->attack_mode != ATTACK_MODE_HYBRID2)) return 0;
|
|
|
|
|
|
|
|
combinator_ctx->enabled = true;
|
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (user_options->slow_candidates == true)
|
2016-10-03 14:27:34 +00:00
|
|
|
{
|
2018-09-01 21:12:56 +00:00
|
|
|
// this is always need to be COMBINATOR_MODE_BASE_LEFT
|
|
|
|
|
|
|
|
if (user_options->attack_mode == ATTACK_MODE_COMBI)
|
|
|
|
{
|
|
|
|
// display
|
|
|
|
|
|
|
|
char *dictfile1 = user_options_extra->hc_workv[0];
|
|
|
|
char *dictfile2 = user_options_extra->hc_workv[1];
|
|
|
|
|
|
|
|
// at this point we know the file actually exist
|
|
|
|
// find the bigger dictionary and use as base
|
|
|
|
|
|
|
|
if (hc_path_is_file (dictfile1) == false)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "%s: Not a regular file.", dictfile1);
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hc_path_is_file (dictfile2) == false)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "%s: Not a regular file.", dictfile2);
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2019-06-26 17:06:46 +00:00
|
|
|
HCFILE fp1;
|
|
|
|
HCFILE fp2;
|
2018-09-01 21:12:56 +00:00
|
|
|
|
2019-07-01 15:27:08 +00:00
|
|
|
if (hc_fopen (&fp1, dictfile1, "rb") == false)
|
2018-09-01 21:12:56 +00:00
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "%s: %s", dictfile1, strerror (errno));
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2019-07-01 15:27:08 +00:00
|
|
|
if (hc_fopen (&fp2, dictfile2, "rb") == false)
|
2018-09-01 21:12:56 +00:00
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "%s: %s", dictfile2, strerror (errno));
|
|
|
|
|
2019-06-26 17:06:46 +00:00
|
|
|
hc_fclose (&fp1);
|
2018-09-01 21:12:56 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
combinator_ctx->combs_cnt = 1;
|
|
|
|
|
|
|
|
u64 words1_cnt = 0;
|
|
|
|
|
2019-06-26 17:06:46 +00:00
|
|
|
const int rc1 = count_words (hashcat_ctx, &fp1, dictfile1, &words1_cnt);
|
2018-09-01 21:12:56 +00:00
|
|
|
|
|
|
|
if (rc1 == -1)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "Integer overflow detected in keyspace of wordlist: %s", dictfile1);
|
|
|
|
|
2019-06-26 17:06:46 +00:00
|
|
|
hc_fclose (&fp1);
|
|
|
|
hc_fclose (&fp2);
|
2018-09-01 21:12:56 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (words1_cnt == 0)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "%s: empty file.", dictfile1);
|
|
|
|
|
2019-06-26 17:06:46 +00:00
|
|
|
hc_fclose (&fp1);
|
|
|
|
hc_fclose (&fp2);
|
2018-09-01 21:12:56 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
combinator_ctx->combs_cnt = 1;
|
|
|
|
|
|
|
|
u64 words2_cnt = 0;
|
|
|
|
|
2019-06-26 17:06:46 +00:00
|
|
|
const int rc2 = count_words (hashcat_ctx, &fp2, dictfile2, &words2_cnt);
|
2018-09-01 21:12:56 +00:00
|
|
|
|
2019-06-26 17:06:46 +00:00
|
|
|
hc_fclose (&fp1);
|
|
|
|
hc_fclose (&fp2);
|
2019-06-21 19:35:24 +00:00
|
|
|
|
2018-09-01 21:12:56 +00:00
|
|
|
if (rc2 == -1)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "Integer overflow detected in keyspace of wordlist: %s", dictfile2);
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (words2_cnt == 0)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "%s: empty file.", dictfile2);
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
combinator_ctx->dict1 = dictfile1;
|
|
|
|
combinator_ctx->dict2 = dictfile2;
|
|
|
|
|
|
|
|
combinator_ctx->combs_mode = COMBINATOR_MODE_BASE_LEFT;
|
|
|
|
combinator_ctx->combs_cnt = words2_cnt;
|
|
|
|
}
|
2018-09-01 10:31:17 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (hashconfig->opti_type & OPTI_TYPE_OPTIMIZED_KERNEL)
|
2017-06-30 14:51:57 +00:00
|
|
|
{
|
2018-09-01 10:31:17 +00:00
|
|
|
if (user_options->attack_mode == ATTACK_MODE_COMBI)
|
|
|
|
{
|
|
|
|
// display
|
2016-10-03 14:27:34 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
char *dictfile1 = user_options_extra->hc_workv[0];
|
|
|
|
char *dictfile2 = user_options_extra->hc_workv[1];
|
2016-10-03 14:27:34 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
// at this point we know the file actually exist
|
|
|
|
// find the bigger dictionary and use as base
|
2016-10-03 14:27:34 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (hc_path_is_file (dictfile1) == false)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "%s: Not a regular file.", dictfile1);
|
2016-10-03 14:27:34 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2016-10-03 14:27:34 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (hc_path_is_file (dictfile2) == false)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "%s: Not a regular file.", dictfile2);
|
2016-10-03 14:27:34 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2016-10-03 14:27:34 +00:00
|
|
|
|
2019-06-26 17:06:46 +00:00
|
|
|
HCFILE fp1;
|
|
|
|
HCFILE fp2;
|
2016-10-03 14:27:34 +00:00
|
|
|
|
2019-07-01 15:27:08 +00:00
|
|
|
if (hc_fopen (&fp1, dictfile1, "rb") == false)
|
2018-09-01 10:31:17 +00:00
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "%s: %s", dictfile1, strerror (errno));
|
2016-10-03 14:27:34 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2016-10-03 14:27:34 +00:00
|
|
|
|
2019-07-01 15:27:08 +00:00
|
|
|
if (hc_fopen (&fp2, dictfile2, "rb") == false)
|
2018-09-01 10:31:17 +00:00
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "%s: %s", dictfile2, strerror (errno));
|
2017-02-11 00:09:58 +00:00
|
|
|
|
2019-06-26 17:06:46 +00:00
|
|
|
hc_fclose (&fp1);
|
2016-10-03 14:27:34 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2016-10-03 14:27:34 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
combinator_ctx->combs_cnt = 1;
|
2017-02-22 15:33:23 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
u64 words1_cnt = 0;
|
2017-02-22 15:33:23 +00:00
|
|
|
|
2019-06-26 17:06:46 +00:00
|
|
|
const int rc1 = count_words (hashcat_ctx, &fp1, dictfile1, &words1_cnt);
|
2017-02-22 15:33:23 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (rc1 == -1)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "Integer overflow detected in keyspace of wordlist: %s", dictfile1);
|
2017-02-22 15:33:23 +00:00
|
|
|
|
2019-06-26 17:06:46 +00:00
|
|
|
hc_fclose (&fp1);
|
|
|
|
hc_fclose (&fp2);
|
2016-10-03 14:27:34 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2016-10-03 14:27:34 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (words1_cnt == 0)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "%s: empty file.", dictfile1);
|
2016-10-03 14:27:34 +00:00
|
|
|
|
2019-06-26 17:06:46 +00:00
|
|
|
hc_fclose (&fp1);
|
|
|
|
hc_fclose (&fp2);
|
2016-10-03 14:27:34 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2016-10-03 14:27:34 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
combinator_ctx->combs_cnt = 1;
|
2017-02-22 15:33:23 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
u64 words2_cnt = 0;
|
2017-02-22 15:33:23 +00:00
|
|
|
|
2019-06-26 17:06:46 +00:00
|
|
|
const int rc2 = count_words (hashcat_ctx, &fp2, dictfile2, &words2_cnt);
|
2017-02-22 15:33:23 +00:00
|
|
|
|
2019-06-26 17:06:46 +00:00
|
|
|
hc_fclose (&fp1);
|
|
|
|
hc_fclose (&fp2);
|
2019-06-21 19:35:24 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (rc2 == -1)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "Integer overflow detected in keyspace of wordlist: %s", dictfile2);
|
2017-02-22 15:33:23 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (words2_cnt == 0)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "%s: empty file.", dictfile2);
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
combinator_ctx->dict1 = dictfile1;
|
|
|
|
combinator_ctx->dict2 = dictfile2;
|
2016-10-03 14:27:34 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (words1_cnt >= words2_cnt)
|
|
|
|
{
|
|
|
|
combinator_ctx->combs_mode = COMBINATOR_MODE_BASE_LEFT;
|
|
|
|
combinator_ctx->combs_cnt = words2_cnt;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
combinator_ctx->combs_mode = COMBINATOR_MODE_BASE_RIGHT;
|
|
|
|
combinator_ctx->combs_cnt = words1_cnt;
|
2016-10-03 14:27:34 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
// we also have to switch wordlist related rules!
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
const char *tmpc = user_options->rule_buf_l;
|
|
|
|
|
|
|
|
user_options->rule_buf_l = user_options->rule_buf_r;
|
|
|
|
user_options->rule_buf_r = tmpc;
|
|
|
|
|
|
|
|
u32 tmpi = user_options_extra->rule_len_l;
|
|
|
|
|
|
|
|
user_options_extra->rule_len_l = user_options_extra->rule_len_r;
|
|
|
|
user_options_extra->rule_len_r = tmpi;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (user_options->attack_mode == ATTACK_MODE_HYBRID1)
|
2017-06-30 14:51:57 +00:00
|
|
|
{
|
2017-07-18 11:23:42 +00:00
|
|
|
combinator_ctx->combs_mode = COMBINATOR_MODE_BASE_LEFT;
|
2017-06-30 14:51:57 +00:00
|
|
|
}
|
2018-09-01 10:31:17 +00:00
|
|
|
else if (user_options->attack_mode == ATTACK_MODE_HYBRID2)
|
2017-06-30 14:51:57 +00:00
|
|
|
{
|
2017-07-18 11:23:42 +00:00
|
|
|
combinator_ctx->combs_mode = COMBINATOR_MODE_BASE_RIGHT;
|
2018-09-01 10:31:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// this is always need to be COMBINATOR_MODE_BASE_LEFT
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (user_options->attack_mode == ATTACK_MODE_COMBI)
|
|
|
|
{
|
|
|
|
// display
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
char *dictfile1 = user_options_extra->hc_workv[0];
|
|
|
|
char *dictfile2 = user_options_extra->hc_workv[1];
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
// at this point we know the file actually exist
|
|
|
|
// find the bigger dictionary and use as base
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (hc_path_is_file (dictfile1) == false)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "%s: Not a regular file.", dictfile1);
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2017-07-18 11:23:42 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (hc_path_is_file (dictfile2) == false)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "%s: Not a regular file.", dictfile2);
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2019-06-26 17:06:46 +00:00
|
|
|
HCFILE fp1;
|
|
|
|
HCFILE fp2;
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2019-07-01 15:27:08 +00:00
|
|
|
if (hc_fopen (&fp1, dictfile1, "rb") == false)
|
2018-09-01 10:31:17 +00:00
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "%s: %s", dictfile1, strerror (errno));
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2019-07-01 15:27:08 +00:00
|
|
|
if (hc_fopen (&fp2, dictfile2, "rb") == false)
|
2018-09-01 10:31:17 +00:00
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "%s: %s", dictfile2, strerror (errno));
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2019-06-26 17:06:46 +00:00
|
|
|
hc_fclose (&fp1);
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
combinator_ctx->combs_cnt = 1;
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
u64 words1_cnt = 0;
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2019-06-26 17:06:46 +00:00
|
|
|
const int rc1 = count_words (hashcat_ctx, &fp1, dictfile1, &words1_cnt);
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (rc1 == -1)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "Integer overflow detected in keyspace of wordlist: %s", dictfile1);
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2019-06-26 17:06:46 +00:00
|
|
|
hc_fclose (&fp1);
|
|
|
|
hc_fclose (&fp2);
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (words1_cnt == 0)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "%s: empty file.", dictfile1);
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2019-06-26 17:06:46 +00:00
|
|
|
hc_fclose (&fp1);
|
|
|
|
hc_fclose (&fp2);
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
combinator_ctx->combs_cnt = 1;
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
u64 words2_cnt = 0;
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2019-06-26 17:06:46 +00:00
|
|
|
const int rc2 = count_words (hashcat_ctx, &fp2, dictfile2, &words2_cnt);
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2019-06-26 17:06:46 +00:00
|
|
|
hc_fclose (&fp1);
|
|
|
|
hc_fclose (&fp2);
|
2019-06-21 19:35:24 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (rc2 == -1)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "Integer overflow detected in keyspace of wordlist: %s", dictfile2);
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (words2_cnt == 0)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "%s: empty file.", dictfile2);
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
combinator_ctx->dict1 = dictfile1;
|
|
|
|
combinator_ctx->dict2 = dictfile2;
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
combinator_ctx->combs_mode = COMBINATOR_MODE_BASE_LEFT;
|
|
|
|
combinator_ctx->combs_cnt = words2_cnt;
|
|
|
|
}
|
|
|
|
else if (user_options->attack_mode == ATTACK_MODE_HYBRID1)
|
2017-06-30 14:51:57 +00:00
|
|
|
{
|
2018-09-01 10:31:17 +00:00
|
|
|
combinator_ctx->combs_mode = COMBINATOR_MODE_BASE_LEFT;
|
2017-06-30 14:51:57 +00:00
|
|
|
}
|
2018-09-01 10:31:17 +00:00
|
|
|
else if (user_options->attack_mode == ATTACK_MODE_HYBRID2)
|
|
|
|
{
|
|
|
|
mask_ctx_t *mask_ctx = hashcat_ctx->mask_ctx;
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
char *dictfile = user_options_extra->hc_workv[1];
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
// at this point we know the file actually exist
|
2017-07-18 11:23:42 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (hc_path_is_file (dictfile) == false)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "%s: Not a regular file.", dictfile);
|
2017-07-18 11:23:42 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2017-07-18 11:23:42 +00:00
|
|
|
|
2019-06-26 17:06:46 +00:00
|
|
|
HCFILE fp;
|
2017-07-18 11:23:42 +00:00
|
|
|
|
2019-07-01 15:27:08 +00:00
|
|
|
if (hc_fopen (&fp, dictfile, "rb") == false)
|
2018-09-01 10:31:17 +00:00
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "%s: %s", dictfile, strerror (errno));
|
2017-07-18 11:23:42 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2017-07-18 11:23:42 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
mask_ctx->bfs_cnt = 1;
|
2016-10-03 14:27:34 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
u64 words_cnt = 0;
|
2016-10-03 14:27:34 +00:00
|
|
|
|
2019-06-26 17:06:46 +00:00
|
|
|
const int rc = count_words (hashcat_ctx, &fp, dictfile, &words_cnt);
|
2019-06-21 19:56:38 +00:00
|
|
|
|
2019-06-26 17:06:46 +00:00
|
|
|
hc_fclose (&fp);
|
2016-10-03 14:27:34 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (rc == -1)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "Integer overflow detected in keyspace of wordlist: %s", dictfile);
|
2016-10-03 14:27:34 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2017-07-18 11:23:42 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
combinator_ctx->combs_cnt = words_cnt;
|
|
|
|
combinator_ctx->combs_mode = COMBINATOR_MODE_BASE_LEFT;
|
2017-06-29 10:19:05 +00:00
|
|
|
}
|
|
|
|
}
|
2016-10-03 14:27:34 +00:00
|
|
|
}
|
|
|
|
|
2016-09-27 18:07:49 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-06 08:10:04 +00:00
|
|
|
void combinator_ctx_destroy (hashcat_ctx_t *hashcat_ctx)
|
2016-09-27 18:07:49 +00:00
|
|
|
{
|
2016-10-06 08:10:04 +00:00
|
|
|
combinator_ctx_t *combinator_ctx = hashcat_ctx->combinator_ctx;
|
|
|
|
|
2016-10-01 22:00:21 +00:00
|
|
|
if (combinator_ctx->enabled == false) return;
|
2016-09-30 11:36:27 +00:00
|
|
|
|
2016-10-01 22:00:21 +00:00
|
|
|
memset (combinator_ctx, 0, sizeof (combinator_ctx_t));
|
2016-09-27 18:07:49 +00:00
|
|
|
}
|