2016-09-15 02:29:22 +00:00
|
|
|
/**
|
|
|
|
* Author......: See docs/credits.txt
|
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
#include "types.h"
|
2016-11-20 15:13:42 +00:00
|
|
|
#include "event.h"
|
2016-09-15 02:29:22 +00:00
|
|
|
#include "memory.h"
|
2019-04-25 12:45:17 +00:00
|
|
|
#include "backend.h"
|
2016-09-15 02:29:22 +00:00
|
|
|
#include "wordlist.h"
|
|
|
|
#include "shared.h"
|
2016-11-20 15:13:42 +00:00
|
|
|
#include "thread.h"
|
|
|
|
#include "filehandling.h"
|
2017-08-11 09:15:43 +00:00
|
|
|
#include "rp.h"
|
2016-11-20 15:13:42 +00:00
|
|
|
#include "rp_cpu.h"
|
2018-09-01 10:31:17 +00:00
|
|
|
#include "slow_candidates.h"
|
2016-09-15 02:29:22 +00:00
|
|
|
#include "dispatch.h"
|
|
|
|
|
2018-10-28 15:47:13 +00:00
|
|
|
#ifdef WITH_BRAIN
|
|
|
|
#include "brain.h"
|
|
|
|
#endif
|
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
static u64 get_highest_words_done (const hashcat_ctx_t *hashcat_ctx)
|
|
|
|
{
|
2019-04-25 12:45:17 +00:00
|
|
|
const backend_ctx_t *backend_ctx = hashcat_ctx->backend_ctx;
|
2018-10-20 16:00:42 +00:00
|
|
|
|
|
|
|
u64 words_cur = 0;
|
|
|
|
|
2019-04-30 11:38:44 +00:00
|
|
|
for (int backend_devices_idx = 0; backend_devices_idx < backend_ctx->backend_devices_cnt; backend_devices_idx++)
|
2018-10-20 16:00:42 +00:00
|
|
|
{
|
2019-04-30 11:38:44 +00:00
|
|
|
hc_device_param_t *device_param = &backend_ctx->devices_param[backend_devices_idx];
|
2018-10-20 16:00:42 +00:00
|
|
|
|
|
|
|
if (device_param->skipped == true) continue;
|
|
|
|
|
2019-03-04 09:29:57 +00:00
|
|
|
if (device_param->skipped_warning == true) continue;
|
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
const u64 words_done = device_param->words_done;
|
|
|
|
|
|
|
|
if (words_done > words_cur) words_cur = words_done;
|
|
|
|
}
|
|
|
|
|
|
|
|
return words_cur;
|
|
|
|
}
|
|
|
|
|
2016-10-20 19:27:42 +00:00
|
|
|
static u64 get_lowest_words_done (const hashcat_ctx_t *hashcat_ctx)
|
|
|
|
{
|
2019-04-25 12:45:17 +00:00
|
|
|
const backend_ctx_t *backend_ctx = hashcat_ctx->backend_ctx;
|
2016-10-20 19:27:42 +00:00
|
|
|
|
|
|
|
u64 words_cur = 0xffffffffffffffff;
|
|
|
|
|
2019-04-30 11:38:44 +00:00
|
|
|
for (int backend_devices_idx = 0; backend_devices_idx < backend_ctx->backend_devices_cnt; backend_devices_idx++)
|
2016-10-20 19:27:42 +00:00
|
|
|
{
|
2019-04-30 11:38:44 +00:00
|
|
|
hc_device_param_t *device_param = &backend_ctx->devices_param[backend_devices_idx];
|
2016-10-20 19:27:42 +00:00
|
|
|
|
2016-11-18 09:09:03 +00:00
|
|
|
if (device_param->skipped == true) continue;
|
2016-10-20 19:27:42 +00:00
|
|
|
|
2019-03-04 09:29:57 +00:00
|
|
|
if (device_param->skipped_warning == true) continue;
|
|
|
|
|
2016-10-20 19:27:42 +00:00
|
|
|
const u64 words_done = device_param->words_done;
|
|
|
|
|
|
|
|
if (words_done < words_cur) words_cur = words_done;
|
|
|
|
}
|
|
|
|
|
|
|
|
// It's possible that a device's workload isn't finished right after a restore-case.
|
|
|
|
// In that case, this function would return 0 and overwrite the real restore point
|
|
|
|
|
|
|
|
const status_ctx_t *status_ctx = hashcat_ctx->status_ctx;
|
|
|
|
|
|
|
|
if (words_cur < status_ctx->words_cur) words_cur = status_ctx->words_cur;
|
|
|
|
|
|
|
|
return words_cur;
|
|
|
|
}
|
|
|
|
|
2018-02-08 18:13:29 +00:00
|
|
|
static int set_kernel_power_final (hashcat_ctx_t *hashcat_ctx, const u64 kernel_power_final)
|
2016-09-15 02:29:22 +00:00
|
|
|
{
|
2016-10-08 21:16:40 +00:00
|
|
|
EVENT (EVENT_SET_KERNEL_POWER_FINAL);
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2019-04-25 12:45:17 +00:00
|
|
|
backend_ctx_t *backend_ctx = hashcat_ctx->backend_ctx;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2019-04-25 12:45:17 +00:00
|
|
|
backend_ctx->kernel_power_final = kernel_power_final;
|
2016-10-07 20:25:52 +00:00
|
|
|
|
|
|
|
return 0;
|
2016-09-15 02:29:22 +00:00
|
|
|
}
|
|
|
|
|
2019-04-25 12:45:17 +00:00
|
|
|
static u64 get_power (backend_ctx_t *backend_ctx, hc_device_param_t *device_param)
|
2016-09-15 02:29:22 +00:00
|
|
|
{
|
2019-04-25 12:45:17 +00:00
|
|
|
const u64 kernel_power_final = backend_ctx->kernel_power_final;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
|
|
|
if (kernel_power_final)
|
|
|
|
{
|
2019-04-25 12:45:17 +00:00
|
|
|
const double device_factor = (double) device_param->hardware_power / backend_ctx->hardware_power_all;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
|
|
|
const u64 words_left_device = (u64) CEIL (kernel_power_final * device_factor);
|
|
|
|
|
|
|
|
// work should be at least the hardware power available without any accelerator
|
|
|
|
|
|
|
|
const u64 work = MAX (words_left_device, device_param->hardware_power);
|
|
|
|
|
2017-10-10 12:41:33 +00:00
|
|
|
// we need to make sure the value is not larger than the regular kernel_power
|
|
|
|
|
|
|
|
const u64 work_final = MIN (work, device_param->kernel_power);
|
|
|
|
|
|
|
|
return work_final;
|
2016-09-15 02:29:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return device_param->kernel_power;
|
|
|
|
}
|
|
|
|
|
2018-02-08 18:13:29 +00:00
|
|
|
static u64 get_work (hashcat_ctx_t *hashcat_ctx, hc_device_param_t *device_param, const u64 max)
|
2016-09-15 02:29:22 +00:00
|
|
|
{
|
2019-04-25 12:45:17 +00:00
|
|
|
backend_ctx_t *backend_ctx = hashcat_ctx->backend_ctx;
|
2016-10-07 20:25:52 +00:00
|
|
|
status_ctx_t *status_ctx = hashcat_ctx->status_ctx;
|
|
|
|
user_options_t *user_options = hashcat_ctx->user_options;
|
|
|
|
|
2016-09-29 21:49:33 +00:00
|
|
|
hc_thread_mutex_lock (status_ctx->mux_dispatcher);
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2016-10-20 19:27:42 +00:00
|
|
|
const u64 words_off = status_ctx->words_off;
|
2016-09-29 21:49:33 +00:00
|
|
|
const u64 words_base = (user_options->limit == 0) ? status_ctx->words_base : MIN (user_options->limit, status_ctx->words_base);
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2016-10-20 19:27:42 +00:00
|
|
|
device_param->words_off = words_off;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2019-04-25 12:45:17 +00:00
|
|
|
const u64 kernel_power_all = backend_ctx->kernel_power_all;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2016-10-20 19:27:42 +00:00
|
|
|
const u64 words_left = words_base - words_off;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
|
|
|
if (words_left < kernel_power_all)
|
|
|
|
{
|
2019-04-25 12:45:17 +00:00
|
|
|
if (backend_ctx->kernel_power_final == 0)
|
2016-09-15 02:29:22 +00:00
|
|
|
{
|
2016-10-07 20:25:52 +00:00
|
|
|
set_kernel_power_final (hashcat_ctx, words_left);
|
2016-09-15 02:29:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-25 12:45:17 +00:00
|
|
|
const u64 kernel_power = get_power (backend_ctx, device_param);
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-02-08 18:13:29 +00:00
|
|
|
u64 work = MIN (words_left, kernel_power);
|
2016-09-15 02:29:22 +00:00
|
|
|
|
|
|
|
work = MIN (work, max);
|
|
|
|
|
2016-10-20 19:27:42 +00:00
|
|
|
status_ctx->words_off += work;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2016-09-29 21:49:33 +00:00
|
|
|
hc_thread_mutex_unlock (status_ctx->mux_dispatcher);
|
2016-09-15 02:29:22 +00:00
|
|
|
|
|
|
|
return work;
|
|
|
|
}
|
|
|
|
|
2016-10-13 08:07:04 +00:00
|
|
|
static int calc_stdin (hashcat_ctx_t *hashcat_ctx, hc_device_param_t *device_param)
|
2016-09-15 02:29:22 +00:00
|
|
|
{
|
2016-09-30 20:52:44 +00:00
|
|
|
user_options_t *user_options = hashcat_ctx->user_options;
|
|
|
|
user_options_extra_t *user_options_extra = hashcat_ctx->user_options_extra;
|
|
|
|
hashconfig_t *hashconfig = hashcat_ctx->hashconfig;
|
|
|
|
hashes_t *hashes = hashcat_ctx->hashes;
|
|
|
|
straight_ctx_t *straight_ctx = hashcat_ctx->straight_ctx;
|
|
|
|
status_ctx_t *status_ctx = hashcat_ctx->status_ctx;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2016-11-20 21:54:52 +00:00
|
|
|
char *buf = (char *) hcmalloc (HCBUFSIZ_LARGE);
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2017-04-14 14:36:28 +00:00
|
|
|
bool iconv_enabled = false;
|
|
|
|
|
2017-09-28 02:31:54 +00:00
|
|
|
iconv_t iconv_ctx = NULL;
|
2017-04-14 14:36:28 +00:00
|
|
|
|
|
|
|
char *iconv_tmp = NULL;
|
|
|
|
|
2017-11-05 08:52:29 +00:00
|
|
|
if (strcmp (user_options->encoding_from, user_options->encoding_to) != 0)
|
2017-04-14 14:36:28 +00:00
|
|
|
{
|
|
|
|
iconv_enabled = true;
|
|
|
|
|
|
|
|
iconv_ctx = iconv_open (user_options->encoding_to, user_options->encoding_from);
|
|
|
|
|
|
|
|
if (iconv_ctx == (iconv_t) -1) return -1;
|
|
|
|
|
|
|
|
iconv_tmp = (char *) hcmalloc (HCBUFSIZ_TINY);
|
|
|
|
}
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
while (status_ctx->run_thread_level1 == true)
|
2016-09-15 02:29:22 +00:00
|
|
|
{
|
2018-10-20 16:00:42 +00:00
|
|
|
hc_thread_mutex_lock (status_ctx->mux_dispatcher);
|
|
|
|
|
|
|
|
if (feof (stdin) != 0)
|
2016-09-15 02:29:22 +00:00
|
|
|
{
|
2018-10-20 16:00:42 +00:00
|
|
|
hc_thread_mutex_unlock (status_ctx->mux_dispatcher);
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
break;
|
|
|
|
}
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
u64 words_extra_total = 0;
|
2016-11-09 01:02:11 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
memset (device_param->pws_comp, 0, device_param->size_pws_comp);
|
|
|
|
memset (device_param->pws_idx, 0, device_param->size_pws_idx);
|
2017-09-20 09:03:38 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
while (device_param->pws_cnt < device_param->kernel_power)
|
|
|
|
{
|
|
|
|
const int rc_select = select_read_timeout_console (1);
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
if (rc_select == -1) break;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
if (rc_select == 0)
|
2018-09-01 10:31:17 +00:00
|
|
|
{
|
2018-10-20 16:00:42 +00:00
|
|
|
if (status_ctx->run_thread_level1 == false) break;
|
2018-09-01 10:31:17 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
status_ctx->stdin_read_timeout_cnt++;
|
2018-09-01 10:31:17 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
continue;
|
|
|
|
}
|
2017-04-14 14:36:28 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
status_ctx->stdin_read_timeout_cnt = 0;
|
2018-09-01 10:31:17 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
char *line_buf = fgets (buf, HCBUFSIZ_LARGE - 1, stdin);
|
2017-04-14 14:36:28 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
if (line_buf == NULL) break;
|
2017-06-29 10:19:05 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
size_t line_len = in_superchop (line_buf);
|
2017-04-14 14:36:28 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
line_len = convert_from_hex (hashcat_ctx, line_buf, (u32) line_len);
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
// do the on-the-fly encoding
|
2017-02-14 13:27:08 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
if (iconv_enabled == true)
|
2018-09-01 10:31:17 +00:00
|
|
|
{
|
2018-10-20 16:00:42 +00:00
|
|
|
char *iconv_ptr = iconv_tmp;
|
|
|
|
size_t iconv_sz = HCBUFSIZ_TINY;
|
2017-02-14 14:09:01 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
const size_t iconv_rc = iconv (iconv_ctx, &line_buf, &line_len, &iconv_ptr, &iconv_sz);
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
if (iconv_rc == (size_t) -1) continue;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
line_buf = iconv_tmp;
|
|
|
|
line_len = HCBUFSIZ_TINY - iconv_sz;
|
2016-09-15 02:29:22 +00:00
|
|
|
}
|
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
// post-process rule engine
|
2018-09-01 10:31:17 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
char rule_buf_out[RP_PASSWORD_SIZE];
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
if (run_rule_engine ((int) user_options_extra->rule_len_l, user_options->rule_buf_l))
|
2016-09-15 02:29:22 +00:00
|
|
|
{
|
2018-10-20 16:00:42 +00:00
|
|
|
if (line_len >= RP_PASSWORD_SIZE) continue;
|
2018-09-01 10:31:17 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
memset (rule_buf_out, 0, sizeof (rule_buf_out));
|
2018-09-01 10:31:17 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
const int rule_len_out = _old_apply_rule (user_options->rule_buf_l, (int) user_options_extra->rule_len_l, line_buf, (int) line_len, rule_buf_out);
|
2018-09-01 10:31:17 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
if (rule_len_out < 0) continue;
|
2018-09-01 10:31:17 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
line_buf = rule_buf_out;
|
|
|
|
line_len = (size_t) rule_len_out;
|
2016-09-15 02:29:22 +00:00
|
|
|
}
|
|
|
|
|
2019-02-26 20:20:07 +00:00
|
|
|
if (line_len > PW_MAX) continue;
|
2018-09-01 10:31:17 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
// hmm that's always the case, or?
|
2016-11-09 01:02:11 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
const u32 attack_kern = user_options_extra->attack_kern;
|
2018-09-01 10:31:17 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
if (attack_kern == ATTACK_KERN_STRAIGHT)
|
2016-11-09 01:02:11 +00:00
|
|
|
{
|
2018-10-20 16:00:42 +00:00
|
|
|
if ((line_len < hashconfig->pw_min) || (line_len > hashconfig->pw_max))
|
2018-09-01 11:19:29 +00:00
|
|
|
{
|
2018-10-20 16:00:42 +00:00
|
|
|
words_extra_total++;
|
2018-10-17 08:55:47 +00:00
|
|
|
|
2018-09-01 11:19:29 +00:00
|
|
|
continue;
|
|
|
|
}
|
2018-10-20 16:00:42 +00:00
|
|
|
}
|
2018-09-01 11:19:29 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
pw_add (device_param, (const u8 *) line_buf, (const int) line_len);
|
2018-09-01 10:31:17 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
if (status_ctx->run_thread_level1 == false) break;
|
|
|
|
}
|
2018-09-01 10:31:17 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
hc_thread_mutex_unlock (status_ctx->mux_dispatcher);
|
2016-11-09 01:02:11 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
if (words_extra_total > 0)
|
|
|
|
{
|
|
|
|
hc_thread_mutex_lock (status_ctx->mux_counter);
|
2016-11-09 01:02:11 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
for (u32 salt_pos = 0; salt_pos < hashes->salts_cnt; salt_pos++)
|
2018-09-01 10:31:17 +00:00
|
|
|
{
|
2018-10-20 16:00:42 +00:00
|
|
|
status_ctx->words_progress_rejected[salt_pos] += words_extra_total * straight_ctx->kernel_rules_cnt;
|
2018-09-01 10:31:17 +00:00
|
|
|
}
|
2016-10-15 17:44:31 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
hc_thread_mutex_unlock (status_ctx->mux_counter);
|
|
|
|
}
|
2016-10-15 17:44:31 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
if (status_ctx->run_thread_level1 == false) break;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
if (device_param->pws_cnt == 0) break;
|
2017-02-14 13:02:18 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
// flush
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
int CL_rc;
|
2016-10-15 17:44:31 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
CL_rc = run_copy (hashcat_ctx, device_param, device_param->pws_cnt);
|
2017-02-14 13:02:18 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
if (CL_rc == -1)
|
|
|
|
{
|
|
|
|
hcfree (buf);
|
2018-09-01 10:31:17 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2018-09-01 10:31:17 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
CL_rc = run_cracker (hashcat_ctx, device_param, device_param->pws_cnt);
|
2018-09-01 10:31:17 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
if (CL_rc == -1)
|
|
|
|
{
|
|
|
|
hcfree (buf);
|
2018-09-01 10:31:17 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2018-09-01 10:31:17 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
device_param->pws_cnt = 0;
|
2016-10-15 17:44:31 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
if (status_ctx->run_thread_level1 == false) break;
|
|
|
|
|
|
|
|
if (device_param->speed_only_finish == true) break;
|
2016-09-15 02:29:22 +00:00
|
|
|
}
|
|
|
|
|
2018-02-02 22:22:21 +00:00
|
|
|
device_param->kernel_accel_prev = device_param->kernel_accel;
|
|
|
|
device_param->kernel_loops_prev = device_param->kernel_loops;
|
|
|
|
|
2016-09-15 02:29:22 +00:00
|
|
|
device_param->kernel_accel = 0;
|
|
|
|
device_param->kernel_loops = 0;
|
|
|
|
|
2017-04-14 14:36:28 +00:00
|
|
|
if (iconv_enabled == true)
|
|
|
|
{
|
|
|
|
iconv_close (iconv_ctx);
|
|
|
|
|
|
|
|
hcfree (iconv_tmp);
|
|
|
|
}
|
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (buf);
|
2016-10-13 08:07:04 +00:00
|
|
|
|
|
|
|
return 0;
|
2016-09-15 02:29:22 +00:00
|
|
|
}
|
|
|
|
|
2018-09-18 21:37:30 +00:00
|
|
|
HC_API_CALL void *thread_calc_stdin (void *p)
|
2016-09-15 02:29:22 +00:00
|
|
|
{
|
2016-09-30 20:52:44 +00:00
|
|
|
thread_param_t *thread_param = (thread_param_t *) p;
|
|
|
|
|
|
|
|
hashcat_ctx_t *hashcat_ctx = thread_param->hashcat_ctx;
|
|
|
|
|
2019-04-25 12:45:17 +00:00
|
|
|
backend_ctx_t *backend_ctx = hashcat_ctx->backend_ctx;
|
2016-09-30 20:52:44 +00:00
|
|
|
|
2019-04-25 12:45:17 +00:00
|
|
|
if (backend_ctx->enabled == false) return NULL;
|
2016-09-30 20:52:44 +00:00
|
|
|
|
2019-04-25 12:45:17 +00:00
|
|
|
hc_device_param_t *device_param = backend_ctx->devices_param + thread_param->tid;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
|
|
|
if (device_param->skipped) return NULL;
|
|
|
|
|
2019-03-04 09:29:57 +00:00
|
|
|
if (device_param->skipped_warning == true) return NULL;
|
|
|
|
|
2019-05-05 09:57:54 +00:00
|
|
|
if (device_param->is_cuda == true)
|
|
|
|
{
|
|
|
|
const int rc_cuCtxSetCurrent = hc_cuCtxSetCurrent (hashcat_ctx, device_param->cuda_context);
|
|
|
|
|
|
|
|
if (rc_cuCtxSetCurrent == -1) return NULL;
|
|
|
|
}
|
|
|
|
|
2018-07-10 11:17:07 +00:00
|
|
|
const int rc_calc = calc_stdin (hashcat_ctx, device_param);
|
|
|
|
|
|
|
|
if (rc_calc == -1)
|
|
|
|
{
|
|
|
|
status_ctx_t *status_ctx = hashcat_ctx->status_ctx;
|
|
|
|
|
|
|
|
status_ctx->devices_status = STATUS_ERROR;
|
|
|
|
}
|
2016-09-30 20:52:44 +00:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-10-13 08:07:04 +00:00
|
|
|
static int calc (hashcat_ctx_t *hashcat_ctx, hc_device_param_t *device_param)
|
2016-09-30 20:52:44 +00:00
|
|
|
{
|
|
|
|
user_options_t *user_options = hashcat_ctx->user_options;
|
|
|
|
user_options_extra_t *user_options_extra = hashcat_ctx->user_options_extra;
|
|
|
|
hashconfig_t *hashconfig = hashcat_ctx->hashconfig;
|
|
|
|
hashes_t *hashes = hashcat_ctx->hashes;
|
2018-09-01 10:31:17 +00:00
|
|
|
mask_ctx_t *mask_ctx = hashcat_ctx->mask_ctx;
|
2016-09-30 20:52:44 +00:00
|
|
|
straight_ctx_t *straight_ctx = hashcat_ctx->straight_ctx;
|
|
|
|
combinator_ctx_t *combinator_ctx = hashcat_ctx->combinator_ctx;
|
2019-04-25 12:45:17 +00:00
|
|
|
backend_ctx_t *backend_ctx = hashcat_ctx->backend_ctx;
|
2016-09-30 20:52:44 +00:00
|
|
|
status_ctx_t *status_ctx = hashcat_ctx->status_ctx;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2016-10-04 09:22:08 +00:00
|
|
|
const u32 attack_mode = user_options->attack_mode;
|
|
|
|
const u32 attack_kern = user_options_extra->attack_kern;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (user_options->slow_candidates == true)
|
2016-09-15 02:29:22 +00:00
|
|
|
{
|
2018-10-28 15:47:13 +00:00
|
|
|
#ifdef WITH_BRAIN
|
|
|
|
const u32 brain_session = user_options->brain_session;
|
|
|
|
const u32 brain_attack = user_options->brain_attack;
|
|
|
|
|
|
|
|
u64 highest = 0;
|
|
|
|
|
|
|
|
brain_client_disconnect (device_param);
|
|
|
|
|
|
|
|
if (user_options->brain_client == true)
|
|
|
|
{
|
|
|
|
const i64 passwords_max = device_param->hardware_power * device_param->kernel_accel;
|
|
|
|
|
|
|
|
if (brain_client_connect (device_param, status_ctx, user_options->brain_host, user_options->brain_port, user_options->brain_password, brain_session, brain_attack, passwords_max, &highest) == false)
|
|
|
|
{
|
|
|
|
brain_client_disconnect (device_param);
|
|
|
|
}
|
|
|
|
|
2018-11-01 11:03:28 +00:00
|
|
|
if (user_options->brain_client_features & BRAIN_CLIENT_FEATURE_ATTACKS)
|
2018-10-28 15:47:13 +00:00
|
|
|
{
|
2018-11-01 11:03:28 +00:00
|
|
|
hc_thread_mutex_lock (status_ctx->mux_dispatcher);
|
2018-10-28 15:47:13 +00:00
|
|
|
|
2018-11-01 11:03:28 +00:00
|
|
|
if (status_ctx->words_off == 0)
|
2018-10-28 15:47:13 +00:00
|
|
|
{
|
2018-11-01 11:03:28 +00:00
|
|
|
status_ctx->words_off = highest;
|
|
|
|
|
|
|
|
for (u32 salt_pos = 0; salt_pos < hashes->salts_cnt; salt_pos++)
|
|
|
|
{
|
|
|
|
status_ctx->words_progress_rejected[salt_pos] = status_ctx->words_off;
|
|
|
|
}
|
2018-10-28 15:47:13 +00:00
|
|
|
}
|
|
|
|
|
2018-11-01 11:03:28 +00:00
|
|
|
hc_thread_mutex_unlock (status_ctx->mux_dispatcher);
|
|
|
|
}
|
2018-10-28 15:47:13 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
// attack modes from here
|
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
if (attack_mode == ATTACK_MODE_STRAIGHT)
|
2017-06-30 14:51:57 +00:00
|
|
|
{
|
2018-10-20 16:00:42 +00:00
|
|
|
char *dictfile = straight_ctx->dict;
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
FILE *fp = fopen (dictfile, "rb");
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
if (fp == NULL)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "%s: %s", dictfile, strerror (errno));
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
extra_info_straight_t extra_info_straight;
|
|
|
|
|
|
|
|
memset (&extra_info_straight, 0, sizeof (extra_info_straight));
|
|
|
|
|
|
|
|
extra_info_straight.fp = fp;
|
|
|
|
|
|
|
|
hashcat_ctx_t *hashcat_ctx_tmp = (hashcat_ctx_t *) hcmalloc (sizeof (hashcat_ctx_t));
|
|
|
|
|
|
|
|
memcpy (hashcat_ctx_tmp, hashcat_ctx, sizeof (hashcat_ctx_t)); // yes we actually want to copy these pointers
|
|
|
|
|
|
|
|
hashcat_ctx_tmp->wl_data = (wl_data_t *) hcmalloc (sizeof (wl_data_t));
|
|
|
|
|
|
|
|
const int rc_wl_data_init = wl_data_init (hashcat_ctx_tmp);
|
|
|
|
|
|
|
|
if (rc_wl_data_init == -1)
|
|
|
|
{
|
|
|
|
fclose (fp);
|
|
|
|
|
|
|
|
hcfree (hashcat_ctx_tmp->wl_data);
|
|
|
|
|
|
|
|
hcfree (hashcat_ctx_tmp);
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
2018-09-01 10:31:17 +00:00
|
|
|
|
|
|
|
u64 words_cur = 0;
|
|
|
|
|
|
|
|
while (status_ctx->run_thread_level1 == true)
|
2017-06-30 14:51:57 +00:00
|
|
|
{
|
2018-09-01 10:31:17 +00:00
|
|
|
u64 words_fin = 0;
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
memset (device_param->pws_comp, 0, device_param->size_pws_comp);
|
|
|
|
memset (device_param->pws_idx, 0, device_param->size_pws_idx);
|
|
|
|
memset (device_param->pws_base_buf, 0, device_param->size_pws_base);
|
|
|
|
|
|
|
|
u64 pre_rejects = -1;
|
|
|
|
|
|
|
|
// this greatly reduces spam on hashcat console
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2019-04-25 12:45:17 +00:00
|
|
|
const u64 pre_rejects_ignore = get_power (backend_ctx, device_param) / 2;
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
while (pre_rejects > pre_rejects_ignore)
|
2018-09-01 10:31:17 +00:00
|
|
|
{
|
|
|
|
u64 words_extra_total = 0;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
u64 words_extra = pre_rejects;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
pre_rejects = 0;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
memset (device_param->pws_pre_buf, 0, device_param->size_pws_pre);
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
device_param->pws_pre_cnt = 0;
|
2016-10-15 17:44:31 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
while (words_extra)
|
|
|
|
{
|
2018-10-20 16:00:42 +00:00
|
|
|
u64 work = get_work (hashcat_ctx, device_param, words_extra);
|
2016-10-15 17:44:31 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (work == 0) break;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
u64 words_off = device_param->words_off;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-10-28 15:47:13 +00:00
|
|
|
#ifdef WITH_BRAIN
|
|
|
|
if (user_options->brain_client == true)
|
|
|
|
{
|
|
|
|
if (device_param->brain_link_client_fd == -1)
|
|
|
|
{
|
|
|
|
const i64 passwords_max = device_param->hardware_power * device_param->kernel_accel;
|
|
|
|
|
|
|
|
if (brain_client_connect (device_param, status_ctx, user_options->brain_host, user_options->brain_port, user_options->brain_password, user_options->brain_session, user_options->brain_attack, passwords_max, &highest) == false)
|
|
|
|
{
|
|
|
|
brain_client_disconnect (device_param);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (user_options->brain_client_features & BRAIN_CLIENT_FEATURE_ATTACKS)
|
|
|
|
{
|
|
|
|
u64 overlap = 0;
|
|
|
|
|
|
|
|
if (brain_client_reserve (device_param, status_ctx, words_off, work, &overlap) == false)
|
|
|
|
{
|
|
|
|
brain_client_disconnect (device_param);
|
|
|
|
}
|
|
|
|
|
|
|
|
words_extra = overlap;
|
|
|
|
|
|
|
|
words_extra_total += overlap;
|
|
|
|
|
|
|
|
words_off += overlap;
|
|
|
|
|
|
|
|
work -= overlap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
words_fin = words_off + work;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
words_extra = 0;
|
|
|
|
|
|
|
|
slow_candidates_seek (hashcat_ctx_tmp, &extra_info_straight, words_cur, words_off);
|
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
words_cur = words_off;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
for (u64 i = words_cur; i < words_fin; i++)
|
|
|
|
{
|
2018-10-20 16:00:42 +00:00
|
|
|
extra_info_straight.pos = i;
|
2016-10-20 19:27:42 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
slow_candidates_next (hashcat_ctx_tmp, &extra_info_straight);
|
2016-10-20 19:27:42 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
if ((extra_info_straight.out_len < hashconfig->pw_min) || (extra_info_straight.out_len > hashconfig->pw_max))
|
|
|
|
{
|
|
|
|
pre_rejects++;
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-10-28 15:47:13 +00:00
|
|
|
#ifdef WITH_BRAIN
|
|
|
|
if (user_options->brain_client == true)
|
|
|
|
{
|
|
|
|
u32 hash[2];
|
|
|
|
|
|
|
|
brain_client_generate_hash ((u64 *) hash, (const char *) extra_info_straight.out_buf, extra_info_straight.out_len);
|
|
|
|
|
|
|
|
u32 *ptr = (u32 *) device_param->brain_link_out_buf;
|
|
|
|
|
|
|
|
ptr[(device_param->pws_pre_cnt * 2) + 0] = hash[0];
|
|
|
|
ptr[(device_param->pws_pre_cnt * 2) + 1] = hash[1];
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
pw_pre_add (device_param, extra_info_straight.out_buf, extra_info_straight.out_len, extra_info_straight.base_buf, extra_info_straight.base_len, extra_info_straight.rule_pos_prev);
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (status_ctx->run_thread_level1 == false) break;
|
|
|
|
}
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
words_cur = words_fin;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
words_extra_total += words_extra;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (status_ctx->run_thread_level1 == false) break;
|
|
|
|
}
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-10-28 15:47:13 +00:00
|
|
|
#ifdef WITH_BRAIN
|
|
|
|
if (user_options->brain_client == true)
|
|
|
|
{
|
|
|
|
if (user_options->brain_client_features & BRAIN_CLIENT_FEATURE_HASHES)
|
|
|
|
{
|
|
|
|
if (brain_client_lookup (device_param, status_ctx) == false)
|
|
|
|
{
|
|
|
|
brain_client_disconnect (device_param);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
u64 pws_pre_cnt = device_param->pws_pre_cnt;
|
|
|
|
|
|
|
|
for (u64 pws_pre_idx = 0; pws_pre_idx < pws_pre_cnt; pws_pre_idx++)
|
|
|
|
{
|
|
|
|
if (device_param->brain_link_in_buf[pws_pre_idx] == 1)
|
|
|
|
{
|
|
|
|
pre_rejects++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pw_pre_t *pw_pre = device_param->pws_pre_buf + pws_pre_idx;
|
|
|
|
|
|
|
|
pw_base_add (device_param, pw_pre);
|
|
|
|
|
|
|
|
pw_add (device_param, (const u8 *) pw_pre->pw_buf, (const int) pw_pre->pw_len);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
u64 pws_pre_cnt = device_param->pws_pre_cnt;
|
|
|
|
|
|
|
|
for (u64 pws_pre_idx = 0; pws_pre_idx < pws_pre_cnt; pws_pre_idx++)
|
|
|
|
{
|
|
|
|
pw_pre_t *pw_pre = device_param->pws_pre_buf + pws_pre_idx;
|
|
|
|
|
|
|
|
pw_base_add (device_param, pw_pre);
|
|
|
|
|
|
|
|
pw_add (device_param, (const u8 *) pw_pre->pw_buf, (const int) pw_pre->pw_len);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
2018-10-20 16:00:42 +00:00
|
|
|
u64 pws_pre_cnt = device_param->pws_pre_cnt;
|
|
|
|
|
|
|
|
for (u64 pws_pre_idx = 0; pws_pre_idx < pws_pre_cnt; pws_pre_idx++)
|
2018-09-01 10:31:17 +00:00
|
|
|
{
|
2018-10-20 16:00:42 +00:00
|
|
|
pw_pre_t *pw_pre = device_param->pws_pre_buf + pws_pre_idx;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
pw_base_add (device_param, pw_pre);
|
2018-09-01 10:31:17 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
pw_add (device_param, (const u8 *) pw_pre->pw_buf, (const int) pw_pre->pw_len);
|
2018-09-01 10:31:17 +00:00
|
|
|
}
|
2018-10-28 15:47:13 +00:00
|
|
|
#endif
|
2018-09-01 10:31:17 +00:00
|
|
|
|
|
|
|
words_extra_total += pre_rejects;
|
|
|
|
|
|
|
|
if (status_ctx->run_thread_level1 == false) break;
|
|
|
|
|
|
|
|
if (words_extra_total > 0)
|
|
|
|
{
|
|
|
|
hc_thread_mutex_lock (status_ctx->mux_counter);
|
|
|
|
|
|
|
|
for (u32 salt_pos = 0; salt_pos < hashes->salts_cnt; salt_pos++)
|
|
|
|
{
|
|
|
|
status_ctx->words_progress_rejected[salt_pos] += words_extra_total;
|
|
|
|
}
|
|
|
|
|
|
|
|
hc_thread_mutex_unlock (status_ctx->mux_counter);
|
|
|
|
}
|
2016-09-15 02:29:22 +00:00
|
|
|
}
|
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
//
|
|
|
|
// flush
|
|
|
|
//
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
const u64 pws_cnt = device_param->pws_cnt;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (pws_cnt)
|
2016-09-15 02:29:22 +00:00
|
|
|
{
|
2018-09-01 10:31:17 +00:00
|
|
|
int CL_rc;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
CL_rc = run_copy (hashcat_ctx, device_param, pws_cnt);
|
|
|
|
|
|
|
|
if (CL_rc == -1)
|
|
|
|
{
|
2018-10-20 16:00:42 +00:00
|
|
|
fclose (fp);
|
|
|
|
|
|
|
|
hcfree (hashcat_ctx_tmp->wl_data);
|
|
|
|
|
|
|
|
hcfree (hashcat_ctx_tmp);
|
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
CL_rc = run_cracker (hashcat_ctx, device_param, pws_cnt);
|
|
|
|
|
|
|
|
if (CL_rc == -1)
|
|
|
|
{
|
2018-10-20 16:00:42 +00:00
|
|
|
fclose (fp);
|
|
|
|
|
|
|
|
hcfree (hashcat_ctx_tmp->wl_data);
|
|
|
|
|
|
|
|
hcfree (hashcat_ctx_tmp);
|
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2018-10-28 15:47:13 +00:00
|
|
|
#ifdef WITH_BRAIN
|
|
|
|
if (user_options->brain_client == true)
|
|
|
|
{
|
|
|
|
if ((status_ctx->devices_status != STATUS_ABORTED)
|
|
|
|
&& (status_ctx->devices_status != STATUS_ABORTED_RUNTIME)
|
|
|
|
&& (status_ctx->devices_status != STATUS_QUIT)
|
|
|
|
&& (status_ctx->devices_status != STATUS_BYPASS)
|
|
|
|
&& (status_ctx->devices_status != STATUS_ERROR))
|
|
|
|
{
|
|
|
|
if (brain_client_commit (device_param, status_ctx) == false)
|
|
|
|
{
|
|
|
|
brain_client_disconnect (device_param);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
device_param->pws_cnt = 0;
|
2018-10-20 16:00:42 +00:00
|
|
|
|
|
|
|
device_param->pws_base_cnt = 0;
|
2016-09-15 02:29:22 +00:00
|
|
|
}
|
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (device_param->speed_only_finish == true) break;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (status_ctx->run_thread_level2 == true)
|
|
|
|
{
|
2018-10-20 16:00:42 +00:00
|
|
|
device_param->words_done = MAX (device_param->words_done, words_fin);
|
2017-02-14 13:02:18 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
status_ctx->words_cur = get_highest_words_done (hashcat_ctx);
|
2018-09-01 10:31:17 +00:00
|
|
|
}
|
2017-02-14 13:02:18 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (status_ctx->run_thread_level1 == false) break;
|
|
|
|
|
|
|
|
if (words_fin == 0) break;
|
|
|
|
}
|
2018-10-20 16:00:42 +00:00
|
|
|
|
|
|
|
fclose (fp);
|
|
|
|
|
|
|
|
wl_data_destroy (hashcat_ctx_tmp);
|
|
|
|
|
|
|
|
hcfree (hashcat_ctx_tmp->wl_data);
|
|
|
|
|
|
|
|
hcfree (hashcat_ctx_tmp);
|
2017-02-14 13:02:18 +00:00
|
|
|
}
|
2018-09-01 21:12:56 +00:00
|
|
|
else if (attack_mode == ATTACK_MODE_COMBI)
|
2016-10-30 15:08:41 +00:00
|
|
|
{
|
2018-09-01 21:12:56 +00:00
|
|
|
const u32 combs_mode = combinator_ctx->combs_mode;
|
2017-02-14 13:02:18 +00:00
|
|
|
|
2018-09-01 21:12:56 +00:00
|
|
|
char *base_file;
|
|
|
|
char *combs_file;
|
2016-10-30 15:08:41 +00:00
|
|
|
|
2018-09-01 21:12:56 +00:00
|
|
|
if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
|
2018-09-01 10:31:17 +00:00
|
|
|
{
|
2018-09-01 21:12:56 +00:00
|
|
|
base_file = combinator_ctx->dict1;
|
|
|
|
combs_file = combinator_ctx->dict2;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
base_file = combinator_ctx->dict2;
|
|
|
|
combs_file = combinator_ctx->dict1;
|
|
|
|
}
|
|
|
|
|
|
|
|
FILE *base_fp = fopen (base_file, "rb");
|
|
|
|
|
|
|
|
if (base_fp == NULL)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "%s: %s", base_file, strerror (errno));
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
FILE *combs_fp = fopen (combs_file, "rb");
|
|
|
|
|
|
|
|
if (combs_fp == NULL)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "%s: %s", combs_file, strerror (errno));
|
2017-02-14 13:02:18 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2017-02-14 13:02:18 +00:00
|
|
|
|
2018-09-01 21:12:56 +00:00
|
|
|
extra_info_combi_t extra_info_combi;
|
|
|
|
|
|
|
|
memset (&extra_info_combi, 0, sizeof (extra_info_combi));
|
|
|
|
|
|
|
|
extra_info_combi.base_fp = base_fp;
|
|
|
|
extra_info_combi.combs_fp = combs_fp;
|
|
|
|
extra_info_combi.scratch_buf = device_param->scratch_buf;
|
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
hashcat_ctx_t *hashcat_ctx_tmp = (hashcat_ctx_t *) hcmalloc (sizeof (hashcat_ctx_t));
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
memcpy (hashcat_ctx_tmp, hashcat_ctx, sizeof (hashcat_ctx_t)); // yes we actually want to copy these pointers
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
hashcat_ctx_tmp->wl_data = (wl_data_t *) hcmalloc (sizeof (wl_data_t));
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
const int rc_wl_data_init = wl_data_init (hashcat_ctx_tmp);
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (rc_wl_data_init == -1)
|
|
|
|
{
|
2018-09-01 21:12:56 +00:00
|
|
|
fclose (combs_fp);
|
|
|
|
|
|
|
|
fclose (base_fp);
|
2016-11-09 01:02:11 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
hcfree (hashcat_ctx_tmp->wl_data);
|
2017-09-20 09:03:38 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
hcfree (hashcat_ctx_tmp);
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 21:12:56 +00:00
|
|
|
u64 words_cur = 0;
|
|
|
|
|
|
|
|
while (status_ctx->run_thread_level1 == true)
|
|
|
|
{
|
|
|
|
u64 words_fin = 0;
|
|
|
|
|
|
|
|
memset (device_param->pws_comp, 0, device_param->size_pws_comp);
|
|
|
|
memset (device_param->pws_idx, 0, device_param->size_pws_idx);
|
|
|
|
memset (device_param->pws_base_buf, 0, device_param->size_pws_base);
|
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
u64 pre_rejects = -1;
|
|
|
|
|
|
|
|
// this greatly reduces spam on hashcat console
|
2018-09-01 21:12:56 +00:00
|
|
|
|
2019-04-25 12:45:17 +00:00
|
|
|
const u64 pre_rejects_ignore = get_power (backend_ctx, device_param) / 2;
|
2018-10-20 16:00:42 +00:00
|
|
|
|
|
|
|
while (pre_rejects > pre_rejects_ignore)
|
2018-09-01 21:12:56 +00:00
|
|
|
{
|
|
|
|
u64 words_extra_total = 0;
|
|
|
|
|
|
|
|
u64 words_extra = pre_rejects;
|
|
|
|
|
|
|
|
pre_rejects = 0;
|
|
|
|
|
|
|
|
memset (device_param->pws_pre_buf, 0, device_param->size_pws_pre);
|
|
|
|
|
|
|
|
device_param->pws_pre_cnt = 0;
|
|
|
|
|
|
|
|
while (words_extra)
|
|
|
|
{
|
2018-10-20 16:00:42 +00:00
|
|
|
u64 work = get_work (hashcat_ctx, device_param, words_extra);
|
2018-09-01 21:12:56 +00:00
|
|
|
|
|
|
|
if (work == 0) break;
|
|
|
|
|
|
|
|
words_extra = 0;
|
|
|
|
|
|
|
|
u64 words_off = device_param->words_off;
|
|
|
|
|
2018-10-28 15:47:13 +00:00
|
|
|
#ifdef WITH_BRAIN
|
|
|
|
if (user_options->brain_client == true)
|
|
|
|
{
|
|
|
|
if (device_param->brain_link_client_fd == -1)
|
|
|
|
{
|
|
|
|
const i64 passwords_max = device_param->hardware_power * device_param->kernel_accel;
|
|
|
|
|
|
|
|
if (brain_client_connect (device_param, status_ctx, user_options->brain_host, user_options->brain_port, user_options->brain_password, user_options->brain_session, user_options->brain_attack, passwords_max, &highest) == false)
|
|
|
|
{
|
|
|
|
brain_client_disconnect (device_param);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (user_options->brain_client_features & BRAIN_CLIENT_FEATURE_ATTACKS)
|
|
|
|
{
|
|
|
|
u64 overlap = 0;
|
|
|
|
|
|
|
|
if (brain_client_reserve (device_param, status_ctx, words_off, work, &overlap) == false)
|
|
|
|
{
|
|
|
|
brain_client_disconnect (device_param);
|
|
|
|
}
|
|
|
|
|
|
|
|
words_extra = overlap;
|
|
|
|
|
|
|
|
words_extra_total += overlap;
|
|
|
|
|
|
|
|
words_off += overlap;
|
|
|
|
|
|
|
|
work -= overlap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-09-01 21:12:56 +00:00
|
|
|
words_fin = words_off + work;
|
|
|
|
|
|
|
|
slow_candidates_seek (hashcat_ctx_tmp, &extra_info_combi, words_cur, words_off);
|
|
|
|
|
|
|
|
words_cur = words_off;
|
|
|
|
|
|
|
|
for (u64 i = words_cur; i < words_fin; i++)
|
|
|
|
{
|
2018-10-20 16:00:42 +00:00
|
|
|
extra_info_combi.pos = i;
|
|
|
|
|
2018-09-01 21:12:56 +00:00
|
|
|
slow_candidates_next (hashcat_ctx_tmp, &extra_info_combi);
|
|
|
|
|
|
|
|
if ((extra_info_combi.out_len < hashconfig->pw_min) || (extra_info_combi.out_len > hashconfig->pw_max))
|
|
|
|
{
|
2018-10-20 16:00:42 +00:00
|
|
|
pre_rejects++;
|
2018-09-01 21:12:56 +00:00
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-10-28 15:47:13 +00:00
|
|
|
#ifdef WITH_BRAIN
|
|
|
|
if (user_options->brain_client == true)
|
|
|
|
{
|
|
|
|
u32 hash[2];
|
|
|
|
|
|
|
|
brain_client_generate_hash ((u64 *) hash, (const char *) extra_info_combi.out_buf, extra_info_combi.out_len);
|
|
|
|
|
|
|
|
u32 *ptr = (u32 *) device_param->brain_link_out_buf;
|
|
|
|
|
|
|
|
ptr[(device_param->pws_pre_cnt * 2) + 0] = hash[0];
|
|
|
|
ptr[(device_param->pws_pre_cnt * 2) + 1] = hash[1];
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-09-01 21:12:56 +00:00
|
|
|
pw_pre_add (device_param, extra_info_combi.out_buf, extra_info_combi.out_len, NULL, 0, 0);
|
|
|
|
|
|
|
|
if (status_ctx->run_thread_level1 == false) break;
|
|
|
|
}
|
|
|
|
|
|
|
|
words_cur = words_fin;
|
|
|
|
|
|
|
|
words_extra_total += words_extra;
|
|
|
|
|
|
|
|
if (status_ctx->run_thread_level1 == false) break;
|
|
|
|
}
|
|
|
|
|
2018-10-28 15:47:13 +00:00
|
|
|
#ifdef WITH_BRAIN
|
|
|
|
if (user_options->brain_client == true)
|
|
|
|
{
|
|
|
|
if (user_options->brain_client_features & BRAIN_CLIENT_FEATURE_HASHES)
|
|
|
|
{
|
|
|
|
if (brain_client_lookup (device_param, status_ctx) == false)
|
|
|
|
{
|
|
|
|
brain_client_disconnect (device_param);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
u64 pws_pre_cnt = device_param->pws_pre_cnt;
|
|
|
|
|
|
|
|
for (u64 pws_pre_idx = 0; pws_pre_idx < pws_pre_cnt; pws_pre_idx++)
|
|
|
|
{
|
|
|
|
if (device_param->brain_link_in_buf[pws_pre_idx] == 1)
|
|
|
|
{
|
|
|
|
pre_rejects++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pw_pre_t *pw_pre = device_param->pws_pre_buf + pws_pre_idx;
|
|
|
|
|
|
|
|
pw_base_add (device_param, pw_pre);
|
|
|
|
|
|
|
|
pw_add (device_param, (const u8 *) pw_pre->pw_buf, (const int) pw_pre->pw_len);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
u64 pws_pre_cnt = device_param->pws_pre_cnt;
|
|
|
|
|
|
|
|
for (u64 pws_pre_idx = 0; pws_pre_idx < pws_pre_cnt; pws_pre_idx++)
|
|
|
|
{
|
|
|
|
pw_pre_t *pw_pre = device_param->pws_pre_buf + pws_pre_idx;
|
|
|
|
|
|
|
|
pw_base_add (device_param, pw_pre);
|
|
|
|
|
|
|
|
pw_add (device_param, (const u8 *) pw_pre->pw_buf, (const int) pw_pre->pw_len);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
2018-10-20 16:00:42 +00:00
|
|
|
u64 pws_pre_cnt = device_param->pws_pre_cnt;
|
2018-09-01 21:12:56 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
for (u64 pws_pre_idx = 0; pws_pre_idx < pws_pre_cnt; pws_pre_idx++)
|
|
|
|
{
|
|
|
|
pw_pre_t *pw_pre = device_param->pws_pre_buf + pws_pre_idx;
|
2018-09-01 21:12:56 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
pw_base_add (device_param, pw_pre);
|
2018-09-01 21:12:56 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
pw_add (device_param, (const u8 *) pw_pre->pw_buf, (const int) pw_pre->pw_len);
|
2018-09-01 21:12:56 +00:00
|
|
|
}
|
2018-10-28 15:47:13 +00:00
|
|
|
#endif
|
2018-09-01 21:12:56 +00:00
|
|
|
|
|
|
|
words_extra_total += pre_rejects;
|
|
|
|
|
|
|
|
if (status_ctx->run_thread_level1 == false) break;
|
|
|
|
|
|
|
|
if (words_extra_total > 0)
|
|
|
|
{
|
|
|
|
hc_thread_mutex_lock (status_ctx->mux_counter);
|
|
|
|
|
|
|
|
for (u32 salt_pos = 0; salt_pos < hashes->salts_cnt; salt_pos++)
|
|
|
|
{
|
|
|
|
status_ctx->words_progress_rejected[salt_pos] += words_extra_total;
|
|
|
|
}
|
|
|
|
|
|
|
|
hc_thread_mutex_unlock (status_ctx->mux_counter);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// flush
|
|
|
|
//
|
|
|
|
|
|
|
|
const u64 pws_cnt = device_param->pws_cnt;
|
|
|
|
|
|
|
|
if (pws_cnt)
|
|
|
|
{
|
|
|
|
int CL_rc;
|
|
|
|
|
|
|
|
CL_rc = run_copy (hashcat_ctx, device_param, pws_cnt);
|
|
|
|
|
|
|
|
if (CL_rc == -1)
|
|
|
|
{
|
|
|
|
fclose (combs_fp);
|
|
|
|
|
|
|
|
fclose (base_fp);
|
|
|
|
|
|
|
|
hcfree (hashcat_ctx_tmp->wl_data);
|
|
|
|
|
|
|
|
hcfree (hashcat_ctx_tmp);
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
CL_rc = run_cracker (hashcat_ctx, device_param, pws_cnt);
|
|
|
|
|
|
|
|
if (CL_rc == -1)
|
|
|
|
{
|
|
|
|
fclose (combs_fp);
|
|
|
|
|
|
|
|
fclose (base_fp);
|
|
|
|
|
|
|
|
hcfree (hashcat_ctx_tmp->wl_data);
|
|
|
|
|
|
|
|
hcfree (hashcat_ctx_tmp);
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2018-10-28 15:47:13 +00:00
|
|
|
#ifdef WITH_BRAIN
|
|
|
|
if (user_options->brain_client == true)
|
|
|
|
{
|
|
|
|
if ((status_ctx->devices_status != STATUS_ABORTED)
|
|
|
|
&& (status_ctx->devices_status != STATUS_ABORTED_RUNTIME)
|
|
|
|
&& (status_ctx->devices_status != STATUS_QUIT)
|
|
|
|
&& (status_ctx->devices_status != STATUS_BYPASS)
|
|
|
|
&& (status_ctx->devices_status != STATUS_ERROR))
|
|
|
|
{
|
|
|
|
if (brain_client_commit (device_param, status_ctx) == false)
|
|
|
|
{
|
|
|
|
brain_client_disconnect (device_param);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-09-01 21:12:56 +00:00
|
|
|
device_param->pws_cnt = 0;
|
|
|
|
|
|
|
|
device_param->pws_base_cnt = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (device_param->speed_only_finish == true) break;
|
|
|
|
|
|
|
|
if (status_ctx->run_thread_level2 == true)
|
|
|
|
{
|
2018-10-20 16:00:42 +00:00
|
|
|
device_param->words_done = MAX (device_param->words_done, words_fin);
|
2018-09-01 21:12:56 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
status_ctx->words_cur = get_highest_words_done (hashcat_ctx);
|
2018-09-01 21:12:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (status_ctx->run_thread_level1 == false) break;
|
|
|
|
|
|
|
|
if (words_fin == 0) break;
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose (combs_fp);
|
|
|
|
|
|
|
|
fclose (base_fp);
|
|
|
|
|
|
|
|
wl_data_destroy (hashcat_ctx_tmp);
|
|
|
|
|
|
|
|
hcfree (hashcat_ctx_tmp->wl_data);
|
|
|
|
|
|
|
|
hcfree (hashcat_ctx_tmp);
|
|
|
|
}
|
2018-10-20 16:00:42 +00:00
|
|
|
else if (attack_mode == ATTACK_MODE_BF)
|
2018-09-01 21:12:56 +00:00
|
|
|
{
|
2018-10-20 16:00:42 +00:00
|
|
|
extra_info_mask_t extra_info_mask;
|
2018-09-01 21:12:56 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
memset (&extra_info_mask, 0, sizeof (extra_info_mask));
|
2018-09-01 21:12:56 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
extra_info_mask.out_len = mask_ctx->css_cnt;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
u64 words_cur = 0;
|
|
|
|
|
|
|
|
while (status_ctx->run_thread_level1 == true)
|
|
|
|
{
|
|
|
|
u64 words_fin = 0;
|
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
memset (device_param->pws_comp, 0, device_param->size_pws_comp);
|
|
|
|
memset (device_param->pws_idx, 0, device_param->size_pws_idx);
|
|
|
|
|
|
|
|
u64 pre_rejects = -1;
|
|
|
|
|
|
|
|
// this greatly reduces spam on hashcat console
|
2017-02-14 14:09:01 +00:00
|
|
|
|
2019-04-25 12:45:17 +00:00
|
|
|
const u64 pre_rejects_ignore = get_power (backend_ctx, device_param) / 2;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
while (pre_rejects > pre_rejects_ignore)
|
2016-09-15 02:29:22 +00:00
|
|
|
{
|
2018-09-01 10:31:17 +00:00
|
|
|
u64 words_extra_total = 0;
|
|
|
|
|
|
|
|
u64 words_extra = pre_rejects;
|
|
|
|
|
|
|
|
pre_rejects = 0;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
memset (device_param->pws_pre_buf, 0, device_param->size_pws_pre);
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
device_param->pws_pre_cnt = 0;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
while (words_extra)
|
2016-09-15 02:29:22 +00:00
|
|
|
{
|
2018-10-20 16:00:42 +00:00
|
|
|
u64 work = get_work (hashcat_ctx, device_param, words_extra);
|
2017-02-14 14:09:01 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (work == 0) break;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
words_extra = 0;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
u64 words_off = device_param->words_off;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-10-28 15:47:13 +00:00
|
|
|
#ifdef WITH_BRAIN
|
|
|
|
if (user_options->brain_client == true)
|
|
|
|
{
|
|
|
|
if (device_param->brain_link_client_fd == -1)
|
|
|
|
{
|
|
|
|
const i64 passwords_max = device_param->hardware_power * device_param->kernel_accel;
|
|
|
|
|
|
|
|
if (brain_client_connect (device_param, status_ctx, user_options->brain_host, user_options->brain_port, user_options->brain_password, user_options->brain_session, user_options->brain_attack, passwords_max, &highest) == false)
|
|
|
|
{
|
|
|
|
brain_client_disconnect (device_param);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (user_options->brain_client_features & BRAIN_CLIENT_FEATURE_ATTACKS)
|
|
|
|
{
|
|
|
|
u64 overlap = 0;
|
|
|
|
|
|
|
|
if (brain_client_reserve (device_param, status_ctx, words_off, work, &overlap) == false)
|
|
|
|
{
|
|
|
|
brain_client_disconnect (device_param);
|
|
|
|
}
|
|
|
|
|
|
|
|
words_extra = overlap;
|
|
|
|
|
|
|
|
words_extra_total += overlap;
|
|
|
|
|
|
|
|
words_off += overlap;
|
|
|
|
|
|
|
|
work -= overlap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
words_fin = words_off + work;
|
|
|
|
|
|
|
|
words_cur = words_off;
|
|
|
|
|
|
|
|
for (u64 i = words_cur; i < words_fin; i++)
|
|
|
|
{
|
2018-10-20 16:00:42 +00:00
|
|
|
extra_info_mask.pos = i;
|
2018-09-01 10:31:17 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
slow_candidates_next (hashcat_ctx, &extra_info_mask);
|
2018-09-01 10:31:17 +00:00
|
|
|
|
2018-10-28 15:47:13 +00:00
|
|
|
#ifdef WITH_BRAIN
|
|
|
|
if (user_options->brain_client == true)
|
|
|
|
{
|
|
|
|
u32 hash[2];
|
|
|
|
|
|
|
|
brain_client_generate_hash ((u64 *) hash, (const char *) extra_info_mask.out_buf, extra_info_mask.out_len);
|
|
|
|
|
|
|
|
u32 *ptr = (u32 *) device_param->brain_link_out_buf;
|
|
|
|
|
|
|
|
ptr[(device_param->pws_pre_cnt * 2) + 0] = hash[0];
|
|
|
|
ptr[(device_param->pws_pre_cnt * 2) + 1] = hash[1];
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
pw_pre_add (device_param, extra_info_mask.out_buf, extra_info_mask.out_len, NULL, 0, 0);
|
2018-09-01 10:31:17 +00:00
|
|
|
|
|
|
|
if (status_ctx->run_thread_level1 == false) break;
|
|
|
|
}
|
|
|
|
|
|
|
|
words_cur = words_fin;
|
|
|
|
|
|
|
|
words_extra_total += words_extra;
|
|
|
|
|
|
|
|
if (status_ctx->run_thread_level1 == false) break;
|
2016-09-15 02:29:22 +00:00
|
|
|
}
|
|
|
|
|
2018-10-28 15:47:13 +00:00
|
|
|
#ifdef WITH_BRAIN
|
|
|
|
if (user_options->brain_client == true)
|
|
|
|
{
|
|
|
|
if (user_options->brain_client_features & BRAIN_CLIENT_FEATURE_HASHES)
|
|
|
|
{
|
|
|
|
if (brain_client_lookup (device_param, status_ctx) == false)
|
|
|
|
{
|
|
|
|
brain_client_disconnect (device_param);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
u64 pws_pre_cnt = device_param->pws_pre_cnt;
|
|
|
|
|
|
|
|
for (u64 pws_pre_idx = 0; pws_pre_idx < pws_pre_cnt; pws_pre_idx++)
|
|
|
|
{
|
|
|
|
if (device_param->brain_link_in_buf[pws_pre_idx] == 1)
|
|
|
|
{
|
|
|
|
pre_rejects++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pw_pre_t *pw_pre = device_param->pws_pre_buf + pws_pre_idx;
|
|
|
|
|
|
|
|
pw_add (device_param, (const u8 *) pw_pre->pw_buf, (const int) pw_pre->pw_len);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
u64 pws_pre_cnt = device_param->pws_pre_cnt;
|
|
|
|
|
|
|
|
for (u64 pws_pre_idx = 0; pws_pre_idx < pws_pre_cnt; pws_pre_idx++)
|
|
|
|
{
|
|
|
|
pw_pre_t *pw_pre = device_param->pws_pre_buf + pws_pre_idx;
|
|
|
|
|
|
|
|
pw_add (device_param, (const u8 *) pw_pre->pw_buf, (const int) pw_pre->pw_len);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
2018-10-20 16:00:42 +00:00
|
|
|
u64 pws_pre_cnt = device_param->pws_pre_cnt;
|
2018-09-01 10:31:17 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
for (u64 pws_pre_idx = 0; pws_pre_idx < pws_pre_cnt; pws_pre_idx++)
|
|
|
|
{
|
|
|
|
pw_pre_t *pw_pre = device_param->pws_pre_buf + pws_pre_idx;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
pw_add (device_param, (const u8 *) pw_pre->pw_buf, (const int) pw_pre->pw_len);
|
2016-09-15 02:29:22 +00:00
|
|
|
}
|
2018-10-28 15:47:13 +00:00
|
|
|
#endif
|
2018-09-01 10:31:17 +00:00
|
|
|
|
|
|
|
words_extra_total += pre_rejects;
|
|
|
|
|
|
|
|
if (status_ctx->run_thread_level1 == false) break;
|
|
|
|
|
|
|
|
if (words_extra_total > 0)
|
2016-09-15 02:29:22 +00:00
|
|
|
{
|
2018-09-01 10:31:17 +00:00
|
|
|
hc_thread_mutex_lock (status_ctx->mux_counter);
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
for (u32 salt_pos = 0; salt_pos < hashes->salts_cnt; salt_pos++)
|
2016-09-15 02:29:22 +00:00
|
|
|
{
|
2018-09-01 10:31:17 +00:00
|
|
|
status_ctx->words_progress_rejected[salt_pos] += words_extra_total;
|
2016-09-15 02:29:22 +00:00
|
|
|
}
|
2018-09-01 10:31:17 +00:00
|
|
|
|
|
|
|
hc_thread_mutex_unlock (status_ctx->mux_counter);
|
2016-09-15 02:29:22 +00:00
|
|
|
}
|
2018-09-01 10:31:17 +00:00
|
|
|
}
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
//
|
|
|
|
// flush
|
|
|
|
//
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
const u64 pws_cnt = device_param->pws_cnt;
|
|
|
|
|
|
|
|
if (pws_cnt)
|
|
|
|
{
|
|
|
|
int CL_rc;
|
|
|
|
|
|
|
|
CL_rc = run_copy (hashcat_ctx, device_param, pws_cnt);
|
|
|
|
|
|
|
|
if (CL_rc == -1)
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
CL_rc = run_cracker (hashcat_ctx, device_param, pws_cnt);
|
|
|
|
|
|
|
|
if (CL_rc == -1)
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2018-10-28 15:47:13 +00:00
|
|
|
#ifdef WITH_BRAIN
|
|
|
|
if (user_options->brain_client == true)
|
|
|
|
{
|
|
|
|
if ((status_ctx->devices_status != STATUS_ABORTED)
|
|
|
|
&& (status_ctx->devices_status != STATUS_ABORTED_RUNTIME)
|
|
|
|
&& (status_ctx->devices_status != STATUS_QUIT)
|
|
|
|
&& (status_ctx->devices_status != STATUS_BYPASS)
|
|
|
|
&& (status_ctx->devices_status != STATUS_ERROR))
|
|
|
|
{
|
|
|
|
if (brain_client_commit (device_param, status_ctx) == false)
|
|
|
|
{
|
|
|
|
brain_client_disconnect (device_param);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
device_param->pws_cnt = 0;
|
2016-09-15 02:29:22 +00:00
|
|
|
}
|
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (device_param->speed_only_finish == true) break;
|
|
|
|
|
|
|
|
if (status_ctx->run_thread_level2 == true)
|
|
|
|
{
|
2018-10-20 16:00:42 +00:00
|
|
|
device_param->words_done = MAX (device_param->words_done, words_fin);
|
2018-09-01 10:31:17 +00:00
|
|
|
|
2018-10-20 16:00:42 +00:00
|
|
|
status_ctx->words_cur = get_highest_words_done (hashcat_ctx);
|
2018-09-01 10:31:17 +00:00
|
|
|
}
|
2016-11-09 01:02:11 +00:00
|
|
|
|
2016-09-29 21:25:29 +00:00
|
|
|
if (status_ctx->run_thread_level1 == false) break;
|
2018-09-01 10:31:17 +00:00
|
|
|
|
|
|
|
if (words_fin == 0) break;
|
2016-09-15 02:29:22 +00:00
|
|
|
}
|
2018-09-01 10:31:17 +00:00
|
|
|
}
|
2018-10-28 15:47:13 +00:00
|
|
|
|
|
|
|
#ifdef WITH_BRAIN
|
|
|
|
if (user_options->brain_client == true)
|
|
|
|
{
|
|
|
|
brain_client_disconnect (device_param);
|
|
|
|
}
|
|
|
|
#endif
|
2018-09-01 10:31:17 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ((attack_mode == ATTACK_MODE_BF) || (((hashconfig->opti_type & OPTI_TYPE_OPTIMIZED_KERNEL) == 0) && (attack_mode == ATTACK_MODE_HYBRID2)))
|
|
|
|
{
|
|
|
|
if (((hashconfig->opti_type & OPTI_TYPE_OPTIMIZED_KERNEL) == 0) && (attack_mode == ATTACK_MODE_HYBRID2))
|
2016-11-09 01:02:11 +00:00
|
|
|
{
|
2018-09-01 10:31:17 +00:00
|
|
|
char *dictfile = straight_ctx->dict;
|
2016-11-09 01:02:11 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
FILE *combs_fp = fopen (dictfile, "rb");
|
|
|
|
|
|
|
|
if (combs_fp == NULL)
|
2016-11-09 01:02:11 +00:00
|
|
|
{
|
2018-09-01 10:31:17 +00:00
|
|
|
event_log_error (hashcat_ctx, "%s: %s", dictfile, strerror (errno));
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
device_param->combs_fp = combs_fp;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (status_ctx->run_thread_level1 == true)
|
|
|
|
{
|
|
|
|
const u64 work = get_work (hashcat_ctx, device_param, -1);
|
|
|
|
|
|
|
|
if (work == 0) break;
|
|
|
|
|
|
|
|
const u64 words_off = device_param->words_off;
|
|
|
|
const u64 words_fin = words_off + work;
|
|
|
|
|
|
|
|
device_param->pws_cnt = work;
|
|
|
|
|
|
|
|
int CL_rc;
|
|
|
|
|
|
|
|
CL_rc = run_copy (hashcat_ctx, device_param, device_param->pws_cnt);
|
|
|
|
|
|
|
|
if (CL_rc == -1) return -1;
|
|
|
|
|
|
|
|
CL_rc = run_cracker (hashcat_ctx, device_param, device_param->pws_cnt);
|
|
|
|
|
|
|
|
if (CL_rc == -1) return -1;
|
|
|
|
|
|
|
|
device_param->pws_cnt = 0;
|
|
|
|
|
|
|
|
if (device_param->speed_only_finish == true) break;
|
|
|
|
|
|
|
|
if (status_ctx->run_thread_level2 == true)
|
|
|
|
{
|
2018-10-20 16:00:42 +00:00
|
|
|
device_param->words_done = MAX (device_param->words_done, words_fin);
|
2018-09-01 10:31:17 +00:00
|
|
|
|
|
|
|
status_ctx->words_cur = get_lowest_words_done (hashcat_ctx);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
char *dictfile = straight_ctx->dict;
|
|
|
|
|
|
|
|
if (attack_mode == ATTACK_MODE_COMBI)
|
|
|
|
{
|
|
|
|
if (combinator_ctx->combs_mode == COMBINATOR_MODE_BASE_LEFT)
|
|
|
|
{
|
|
|
|
dictfile = combinator_ctx->dict1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dictfile = combinator_ctx->dict2;
|
|
|
|
}
|
|
|
|
|
|
|
|
const u32 combs_mode = combinator_ctx->combs_mode;
|
|
|
|
|
|
|
|
if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
|
|
|
|
{
|
|
|
|
const char *dictfilec = combinator_ctx->dict2;
|
|
|
|
|
|
|
|
FILE *combs_fp = fopen (dictfilec, "rb");
|
|
|
|
|
|
|
|
if (combs_fp == NULL)
|
2017-08-19 15:02:05 +00:00
|
|
|
{
|
2018-09-01 10:31:17 +00:00
|
|
|
event_log_error (hashcat_ctx, "%s: %s", combinator_ctx->dict2, strerror (errno));
|
|
|
|
|
|
|
|
return -1;
|
2017-08-19 15:02:05 +00:00
|
|
|
}
|
2018-09-01 10:31:17 +00:00
|
|
|
|
|
|
|
device_param->combs_fp = combs_fp;
|
|
|
|
}
|
|
|
|
else if (combs_mode == COMBINATOR_MODE_BASE_RIGHT)
|
|
|
|
{
|
|
|
|
const char *dictfilec = combinator_ctx->dict1;
|
|
|
|
|
|
|
|
FILE *combs_fp = fopen (dictfilec, "rb");
|
|
|
|
|
|
|
|
if (combs_fp == NULL)
|
2017-08-19 15:02:05 +00:00
|
|
|
{
|
2018-09-01 10:31:17 +00:00
|
|
|
event_log_error (hashcat_ctx, "%s: %s", dictfilec, strerror (errno));
|
|
|
|
|
|
|
|
return -1;
|
2017-08-19 15:02:05 +00:00
|
|
|
}
|
2018-09-01 10:31:17 +00:00
|
|
|
|
|
|
|
device_param->combs_fp = combs_fp;
|
2016-11-09 01:02:11 +00:00
|
|
|
}
|
2018-09-01 10:31:17 +00:00
|
|
|
}
|
2016-11-09 01:02:11 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
FILE *fd = fopen (dictfile, "rb");
|
|
|
|
|
|
|
|
if (fd == NULL)
|
|
|
|
{
|
|
|
|
event_log_error (hashcat_ctx, "%s: %s", dictfile, strerror (errno));
|
|
|
|
|
|
|
|
return -1;
|
2016-11-09 01:02:11 +00:00
|
|
|
}
|
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
hashcat_ctx_t *hashcat_ctx_tmp = (hashcat_ctx_t *) hcmalloc (sizeof (hashcat_ctx_t));
|
|
|
|
|
|
|
|
memcpy (hashcat_ctx_tmp, hashcat_ctx, sizeof (hashcat_ctx_t)); // yes we actually want to copy these pointers
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
hashcat_ctx_tmp->wl_data = (wl_data_t *) hcmalloc (sizeof (wl_data_t));
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
const int rc_wl_data_init = wl_data_init (hashcat_ctx_tmp);
|
|
|
|
|
|
|
|
if (rc_wl_data_init == -1)
|
2016-09-15 02:29:22 +00:00
|
|
|
{
|
2018-09-01 10:31:17 +00:00
|
|
|
if (attack_mode == ATTACK_MODE_COMBI) fclose (device_param->combs_fp);
|
2016-10-15 17:44:31 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
fclose (fd);
|
2016-10-15 17:44:31 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
hcfree (hashcat_ctx_tmp->wl_data);
|
2017-02-14 13:02:18 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
hcfree (hashcat_ctx_tmp);
|
2017-02-14 13:02:18 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2017-02-14 13:02:18 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
u64 words_cur = 0;
|
2017-02-14 13:02:18 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
while (status_ctx->run_thread_level1 == true)
|
|
|
|
{
|
|
|
|
u64 words_off = 0;
|
|
|
|
u64 words_fin = 0;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
u64 words_extra = -1u;
|
2016-10-15 17:44:31 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
u64 words_extra_total = 0;
|
|
|
|
|
|
|
|
memset (device_param->pws_comp, 0, device_param->size_pws_comp);
|
|
|
|
memset (device_param->pws_idx, 0, device_param->size_pws_idx);
|
|
|
|
|
|
|
|
while (words_extra)
|
2017-02-14 13:02:18 +00:00
|
|
|
{
|
2018-09-01 10:31:17 +00:00
|
|
|
const u64 work = get_work (hashcat_ctx, device_param, words_extra);
|
2017-02-14 13:02:18 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (work == 0) break;
|
2017-02-14 13:02:18 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
words_extra = 0;
|
2017-02-14 13:02:18 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
words_off = device_param->words_off;
|
|
|
|
words_fin = words_off + work;
|
2017-02-14 13:02:18 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
char *line_buf;
|
|
|
|
u32 line_len;
|
|
|
|
|
|
|
|
char rule_buf_out[RP_PASSWORD_SIZE];
|
|
|
|
|
|
|
|
for ( ; words_cur < words_off; words_cur++) get_next_word (hashcat_ctx_tmp, fd, &line_buf, &line_len);
|
|
|
|
|
|
|
|
for ( ; words_cur < words_fin; words_cur++)
|
|
|
|
{
|
|
|
|
get_next_word (hashcat_ctx_tmp, fd, &line_buf, &line_len);
|
|
|
|
|
|
|
|
line_len = (u32) convert_from_hex (hashcat_ctx, line_buf, line_len);
|
|
|
|
|
|
|
|
// post-process rule engine
|
|
|
|
|
|
|
|
if (run_rule_engine ((int) user_options_extra->rule_len_l, user_options->rule_buf_l))
|
|
|
|
{
|
|
|
|
if (line_len >= RP_PASSWORD_SIZE) continue;
|
|
|
|
|
|
|
|
memset (rule_buf_out, 0, sizeof (rule_buf_out));
|
|
|
|
|
|
|
|
const int rule_len_out = _old_apply_rule (user_options->rule_buf_l, (int) user_options_extra->rule_len_l, line_buf, (int) line_len, rule_buf_out);
|
|
|
|
|
|
|
|
if (rule_len_out < 0) continue;
|
|
|
|
|
|
|
|
line_buf = rule_buf_out;
|
|
|
|
line_len = (u32) rule_len_out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (attack_kern == ATTACK_KERN_STRAIGHT)
|
|
|
|
{
|
|
|
|
if ((line_len < hashconfig->pw_min) || (line_len > hashconfig->pw_max))
|
|
|
|
{
|
|
|
|
words_extra++;
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (attack_kern == ATTACK_KERN_COMBI)
|
|
|
|
{
|
|
|
|
// do not check if minimum restriction is satisfied (line_len >= hashconfig->pw_min) here
|
|
|
|
// since we still need to combine the plains
|
|
|
|
|
|
|
|
if (line_len > hashconfig->pw_max)
|
|
|
|
{
|
|
|
|
words_extra++;
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pw_add (device_param, (const u8 *) line_buf, (const int) line_len);
|
|
|
|
|
|
|
|
if (status_ctx->run_thread_level1 == false) break;
|
|
|
|
}
|
|
|
|
|
|
|
|
words_extra_total += words_extra;
|
|
|
|
|
|
|
|
if (status_ctx->run_thread_level1 == false) break;
|
2017-02-14 13:02:18 +00:00
|
|
|
}
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (status_ctx->run_thread_level1 == false) break;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (words_extra_total > 0)
|
2016-09-15 02:29:22 +00:00
|
|
|
{
|
2018-09-01 10:31:17 +00:00
|
|
|
hc_thread_mutex_lock (status_ctx->mux_counter);
|
|
|
|
|
|
|
|
for (u32 salt_pos = 0; salt_pos < hashes->salts_cnt; salt_pos++)
|
|
|
|
{
|
|
|
|
if (attack_kern == ATTACK_KERN_STRAIGHT)
|
|
|
|
{
|
|
|
|
status_ctx->words_progress_rejected[salt_pos] += words_extra_total * straight_ctx->kernel_rules_cnt;
|
|
|
|
}
|
|
|
|
else if (attack_kern == ATTACK_KERN_COMBI)
|
|
|
|
{
|
|
|
|
status_ctx->words_progress_rejected[salt_pos] += words_extra_total * combinator_ctx->combs_cnt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
hc_thread_mutex_unlock (status_ctx->mux_counter);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// flush
|
|
|
|
//
|
|
|
|
|
|
|
|
const u64 pws_cnt = device_param->pws_cnt;
|
|
|
|
|
|
|
|
if (pws_cnt)
|
|
|
|
{
|
|
|
|
int CL_rc;
|
|
|
|
|
|
|
|
CL_rc = run_copy (hashcat_ctx, device_param, pws_cnt);
|
2016-10-15 17:44:31 +00:00
|
|
|
|
2017-02-14 13:02:18 +00:00
|
|
|
if (CL_rc == -1)
|
|
|
|
{
|
|
|
|
if (attack_mode == ATTACK_MODE_COMBI) fclose (device_param->combs_fp);
|
|
|
|
|
|
|
|
fclose (fd);
|
|
|
|
|
|
|
|
hcfree (hashcat_ctx_tmp->wl_data);
|
|
|
|
|
|
|
|
hcfree (hashcat_ctx_tmp);
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
2018-09-01 10:31:17 +00:00
|
|
|
|
|
|
|
CL_rc = run_cracker (hashcat_ctx, device_param, pws_cnt);
|
2016-10-15 17:44:31 +00:00
|
|
|
|
2017-02-14 13:02:18 +00:00
|
|
|
if (CL_rc == -1)
|
|
|
|
{
|
|
|
|
if (attack_mode == ATTACK_MODE_COMBI) fclose (device_param->combs_fp);
|
|
|
|
|
|
|
|
fclose (fd);
|
|
|
|
|
|
|
|
hcfree (hashcat_ctx_tmp->wl_data);
|
|
|
|
|
|
|
|
hcfree (hashcat_ctx_tmp);
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
2018-09-01 10:31:17 +00:00
|
|
|
|
|
|
|
device_param->pws_cnt = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
still required?
|
|
|
|
if (attack_kern == ATTACK_KERN_STRAIGHT)
|
|
|
|
{
|
|
|
|
CL_rc = run_kernel_bzero (device_param, device_param->d_rules_c, device_param->size_rules_c);
|
|
|
|
if (CL_rc == -1)
|
|
|
|
{
|
|
|
|
if (attack_mode == ATTACK_MODE_COMBI) fclose (device_param->combs_fp);
|
|
|
|
fclose (fd);
|
|
|
|
hcfree (hashcat_ctx_tmp->wl_data);
|
|
|
|
hcfree (hashcat_ctx_tmp);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (attack_kern == ATTACK_KERN_COMBI)
|
|
|
|
{
|
|
|
|
CL_rc = run_kernel_bzero (device_param, device_param->d_combs_c, device_param->size_combs);
|
|
|
|
if (CL_rc == -1)
|
|
|
|
{
|
|
|
|
if (attack_mode == ATTACK_MODE_COMBI) fclose (device_param->combs_fp);
|
|
|
|
fclose (fd);
|
|
|
|
hcfree (hashcat_ctx_tmp->wl_data);
|
|
|
|
hcfree (hashcat_ctx_tmp);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*/
|
2016-09-15 02:29:22 +00:00
|
|
|
}
|
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (device_param->speed_only_finish == true) break;
|
2016-10-14 19:38:52 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (status_ctx->run_thread_level2 == true)
|
|
|
|
{
|
2018-10-20 16:00:42 +00:00
|
|
|
device_param->words_done = MAX (device_param->words_done, words_fin);
|
2016-10-20 19:27:42 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
status_ctx->words_cur = get_lowest_words_done (hashcat_ctx);
|
|
|
|
}
|
2016-10-20 19:27:42 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (status_ctx->run_thread_level1 == false) break;
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (words_fin == 0) break;
|
|
|
|
}
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
if (attack_mode == ATTACK_MODE_COMBI) fclose (device_param->combs_fp);
|
2017-02-14 13:02:18 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
fclose (fd);
|
2016-09-15 02:29:22 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
wl_data_destroy (hashcat_ctx_tmp);
|
2016-10-06 14:16:56 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
hcfree (hashcat_ctx_tmp->wl_data);
|
2016-10-06 14:16:56 +00:00
|
|
|
|
2018-09-01 10:31:17 +00:00
|
|
|
hcfree (hashcat_ctx_tmp);
|
|
|
|
}
|
2016-09-15 02:29:22 +00:00
|
|
|
}
|
|
|
|
|
2018-02-02 22:22:21 +00:00
|
|
|
device_param->kernel_accel_prev = device_param->kernel_accel;
|
|
|
|
device_param->kernel_loops_prev = device_param->kernel_loops;
|
|
|
|
|
2016-09-15 02:29:22 +00:00
|
|
|
device_param->kernel_accel = 0;
|
|
|
|
device_param->kernel_loops = 0;
|
2016-10-13 08:07:04 +00:00
|
|
|
|
|
|
|
return 0;
|
2016-09-30 20:52:44 +00:00
|
|
|
}
|
|
|
|
|
2018-09-18 21:37:30 +00:00
|
|
|
HC_API_CALL void *thread_calc (void *p)
|
2016-09-30 20:52:44 +00:00
|
|
|
{
|
|
|
|
thread_param_t *thread_param = (thread_param_t *) p;
|
|
|
|
|
|
|
|
hashcat_ctx_t *hashcat_ctx = thread_param->hashcat_ctx;
|
|
|
|
|
2019-04-25 12:45:17 +00:00
|
|
|
backend_ctx_t *backend_ctx = hashcat_ctx->backend_ctx;
|
2016-09-30 20:52:44 +00:00
|
|
|
|
2019-04-25 12:45:17 +00:00
|
|
|
if (backend_ctx->enabled == false) return NULL;
|
2016-09-30 20:52:44 +00:00
|
|
|
|
2019-04-25 12:45:17 +00:00
|
|
|
hc_device_param_t *device_param = backend_ctx->devices_param + thread_param->tid;
|
2016-09-30 20:52:44 +00:00
|
|
|
|
|
|
|
if (device_param->skipped) return NULL;
|
|
|
|
|
2019-03-04 09:29:57 +00:00
|
|
|
if (device_param->skipped_warning == true) return NULL;
|
|
|
|
|
2019-05-05 09:57:54 +00:00
|
|
|
if (device_param->is_cuda == true)
|
|
|
|
{
|
|
|
|
const int rc_cuCtxSetCurrent = hc_cuCtxSetCurrent (hashcat_ctx, device_param->cuda_context);
|
|
|
|
|
|
|
|
if (rc_cuCtxSetCurrent == -1) return NULL;
|
|
|
|
}
|
|
|
|
|
2018-07-10 11:17:07 +00:00
|
|
|
const int rc_calc = calc (hashcat_ctx, device_param);
|
|
|
|
|
|
|
|
if (rc_calc == -1)
|
|
|
|
{
|
|
|
|
status_ctx_t *status_ctx = hashcat_ctx->status_ctx;
|
|
|
|
|
|
|
|
status_ctx->devices_status = STATUS_ERROR;
|
|
|
|
}
|
2016-09-15 02:29:22 +00:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|