2016-06-27 10:13:46 +00:00
|
|
|
/**
|
2016-09-11 20:20:15 +00:00
|
|
|
* Author......: See docs/credits.txt
|
2015-12-04 14:47:52 +00:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
2016-09-07 09:16:31 +00:00
|
|
|
#include "common.h"
|
|
|
|
|
2016-09-28 21:33:44 +00:00
|
|
|
// basic tools
|
2016-09-06 20:25:54 +00:00
|
|
|
|
2016-09-06 17:44:27 +00:00
|
|
|
#include "types.h"
|
2016-09-28 22:23:24 +00:00
|
|
|
#include "folder.h"
|
|
|
|
#include "locking.h"
|
|
|
|
#include "memory.h"
|
|
|
|
#include "shared.h"
|
|
|
|
#include "thread.h"
|
|
|
|
#include "timer.h"
|
2016-09-28 21:33:44 +00:00
|
|
|
|
|
|
|
// features
|
|
|
|
|
2016-09-24 19:44:43 +00:00
|
|
|
#include "affinity.h"
|
|
|
|
#include "autotune.h"
|
2016-10-30 17:55:27 +00:00
|
|
|
#include "benchmark.h"
|
2016-09-24 19:44:43 +00:00
|
|
|
#include "bitmap.h"
|
2016-09-28 21:33:44 +00:00
|
|
|
#include "combinator.h"
|
2016-09-29 13:19:12 +00:00
|
|
|
#include "cpt.h"
|
2016-09-24 19:44:43 +00:00
|
|
|
#include "debugfile.h"
|
|
|
|
#include "dictstat.h"
|
|
|
|
#include "dispatch.h"
|
2016-10-08 21:16:40 +00:00
|
|
|
#include "event.h"
|
2016-10-30 17:55:27 +00:00
|
|
|
#include "hashcat.h"
|
2016-09-30 07:25:51 +00:00
|
|
|
#include "hashes.h"
|
2016-09-24 19:44:43 +00:00
|
|
|
#include "hwmon.h"
|
|
|
|
#include "induct.h"
|
|
|
|
#include "interface.h"
|
|
|
|
#include "logfile.h"
|
|
|
|
#include "loopback.h"
|
|
|
|
#include "monitor.h"
|
2016-09-06 11:52:26 +00:00
|
|
|
#include "mpsp.h"
|
2016-09-24 19:44:43 +00:00
|
|
|
#include "opencl.h"
|
|
|
|
#include "outfile_check.h"
|
2016-09-10 15:35:58 +00:00
|
|
|
#include "outfile.h"
|
2016-09-09 21:17:43 +00:00
|
|
|
#include "potfile.h"
|
2016-09-24 19:44:43 +00:00
|
|
|
#include "restore.h"
|
|
|
|
#include "rp.h"
|
|
|
|
#include "status.h"
|
2016-09-28 21:33:44 +00:00
|
|
|
#include "straight.h"
|
2016-09-24 19:44:43 +00:00
|
|
|
#include "tuningdb.h"
|
|
|
|
#include "usage.h"
|
2016-09-20 14:04:22 +00:00
|
|
|
#include "user_options.h"
|
2016-09-24 19:44:43 +00:00
|
|
|
#include "weak_hash.h"
|
|
|
|
#include "wordlist.h"
|
2016-09-06 09:49:26 +00:00
|
|
|
|
2016-09-29 12:46:51 +00:00
|
|
|
// inner2_loop iterates through wordlists, then calls kernel execution
|
|
|
|
|
2016-09-30 20:52:44 +00:00
|
|
|
static int inner2_loop (hashcat_ctx_t *hashcat_ctx)
|
2016-09-23 20:51:42 +00:00
|
|
|
{
|
2016-10-06 20:18:20 +00:00
|
|
|
hashes_t *hashes = hashcat_ctx->hashes;
|
|
|
|
induct_ctx_t *induct_ctx = hashcat_ctx->induct_ctx;
|
|
|
|
logfile_ctx_t *logfile_ctx = hashcat_ctx->logfile_ctx;
|
|
|
|
opencl_ctx_t *opencl_ctx = hashcat_ctx->opencl_ctx;
|
|
|
|
restore_ctx_t *restore_ctx = hashcat_ctx->restore_ctx;
|
|
|
|
status_ctx_t *status_ctx = hashcat_ctx->status_ctx;
|
|
|
|
user_options_extra_t *user_options_extra = hashcat_ctx->user_options_extra;
|
|
|
|
user_options_t *user_options = hashcat_ctx->user_options;
|
2016-09-30 20:52:44 +00:00
|
|
|
|
2016-10-14 17:25:13 +00:00
|
|
|
//status_ctx->run_main_level1 = true;
|
2016-09-29 21:25:29 +00:00
|
|
|
//status_ctx->run_main_level2 = true;
|
|
|
|
//status_ctx->run_main_level3 = true;
|
|
|
|
status_ctx->run_thread_level1 = true;
|
|
|
|
status_ctx->run_thread_level2 = true;
|
2016-09-23 20:51:42 +00:00
|
|
|
|
2016-10-04 21:21:10 +00:00
|
|
|
status_ctx->devices_status = STATUS_INIT;
|
|
|
|
|
2016-10-10 09:23:21 +00:00
|
|
|
logfile_generate_subid (hashcat_ctx);
|
|
|
|
|
|
|
|
logfile_sub_msg ("START");
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-06 07:47:34 +00:00
|
|
|
status_progress_reset (hashcat_ctx);
|
2016-09-24 10:05:56 +00:00
|
|
|
|
2016-10-31 22:19:44 +00:00
|
|
|
status_ctx->msec_paused = 0;
|
|
|
|
|
2016-10-20 19:27:42 +00:00
|
|
|
status_ctx->words_off = 0;
|
2016-09-29 21:49:33 +00:00
|
|
|
status_ctx->words_cur = 0;
|
2016-09-27 16:32:09 +00:00
|
|
|
|
2016-10-20 20:14:54 +00:00
|
|
|
if (restore_ctx->rd)
|
2016-09-29 12:46:51 +00:00
|
|
|
{
|
2016-10-20 20:14:54 +00:00
|
|
|
restore_data_t *rd = restore_ctx->rd;
|
|
|
|
|
|
|
|
if (rd->words_cur > 0)
|
|
|
|
{
|
|
|
|
status_ctx->words_off = rd->words_cur;
|
|
|
|
status_ctx->words_cur = status_ctx->words_off;
|
2016-10-20 19:27:42 +00:00
|
|
|
|
2016-10-20 20:14:54 +00:00
|
|
|
rd->words_cur = 0;
|
2016-09-16 15:31:31 +00:00
|
|
|
|
2016-10-20 20:14:54 +00:00
|
|
|
user_options->skip = 0;
|
|
|
|
}
|
2016-09-29 12:46:51 +00:00
|
|
|
}
|
2016-09-16 15:31:31 +00:00
|
|
|
|
2016-10-20 20:14:54 +00:00
|
|
|
if (user_options->skip > 0)
|
2016-09-29 12:46:51 +00:00
|
|
|
{
|
2016-10-20 19:27:42 +00:00
|
|
|
status_ctx->words_off = user_options->skip;
|
|
|
|
status_ctx->words_cur = status_ctx->words_off;
|
2016-09-16 15:31:31 +00:00
|
|
|
|
2016-09-29 12:46:51 +00:00
|
|
|
user_options->skip = 0;
|
|
|
|
}
|
2016-09-16 15:31:31 +00:00
|
|
|
|
2016-10-06 13:16:30 +00:00
|
|
|
opencl_session_reset (hashcat_ctx);
|
2016-09-27 16:32:09 +00:00
|
|
|
|
2016-10-06 08:26:47 +00:00
|
|
|
cpt_ctx_reset (hashcat_ctx);
|
2016-09-29 13:19:12 +00:00
|
|
|
|
2016-10-06 20:18:20 +00:00
|
|
|
/**
|
|
|
|
* Update attack-mode specific stuff based on mask
|
|
|
|
*/
|
2016-01-13 16:10:40 +00:00
|
|
|
|
2016-10-06 20:18:20 +00:00
|
|
|
mask_ctx_update_loop (hashcat_ctx);
|
2016-01-13 16:10:40 +00:00
|
|
|
|
2016-10-06 20:18:20 +00:00
|
|
|
/**
|
|
|
|
* Update attack-mode specific stuff based on wordlist
|
|
|
|
*/
|
2016-01-13 16:10:40 +00:00
|
|
|
|
2016-10-06 20:18:20 +00:00
|
|
|
straight_ctx_update_loop (hashcat_ctx);
|
2016-02-04 14:07:38 +00:00
|
|
|
|
2016-10-06 20:00:02 +00:00
|
|
|
// words base
|
2016-09-23 20:51:42 +00:00
|
|
|
|
2016-10-20 20:30:00 +00:00
|
|
|
const u64 amplifier_cnt = user_options_extra_amplifier (hashcat_ctx);
|
|
|
|
|
|
|
|
status_ctx->words_base = status_ctx->words_cnt / amplifier_cnt;
|
2016-09-23 20:51:42 +00:00
|
|
|
|
2016-10-08 21:16:40 +00:00
|
|
|
EVENT (EVENT_CALCULATED_WORDS_BASE);
|
2016-09-23 20:51:42 +00:00
|
|
|
|
2016-10-07 19:47:11 +00:00
|
|
|
if (user_options->keyspace == true) return 0;
|
2016-09-23 20:51:42 +00:00
|
|
|
|
2016-10-07 14:56:44 +00:00
|
|
|
// restore stuff
|
|
|
|
|
2016-10-20 19:27:42 +00:00
|
|
|
if (status_ctx->words_off > status_ctx->words_base)
|
2016-09-29 12:46:51 +00:00
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "Restore value greater keyspace");
|
2016-09-23 20:51:42 +00:00
|
|
|
|
2016-09-29 12:46:51 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2016-09-23 20:51:42 +00:00
|
|
|
|
2016-10-20 20:30:00 +00:00
|
|
|
const u64 progress_restored = status_ctx->words_off * amplifier_cnt;
|
2016-10-06 19:37:03 +00:00
|
|
|
|
2016-10-20 19:27:42 +00:00
|
|
|
for (u32 i = 0; i < hashes->salts_cnt; i++)
|
|
|
|
{
|
|
|
|
status_ctx->words_progress_restored[i] = progress_restored;
|
2016-09-29 12:46:51 +00:00
|
|
|
}
|
2016-02-04 14:07:38 +00:00
|
|
|
|
2016-09-29 12:46:51 +00:00
|
|
|
/**
|
|
|
|
* limit kernel loops by the amplification count we have from:
|
|
|
|
* - straight_ctx, combinator_ctx or mask_ctx for fast hashes
|
|
|
|
* - hash iteration count for slow hashes
|
|
|
|
*/
|
2016-02-04 14:07:38 +00:00
|
|
|
|
2016-10-06 13:16:30 +00:00
|
|
|
opencl_ctx_devices_kernel_loops (hashcat_ctx);
|
2016-02-04 14:07:38 +00:00
|
|
|
|
2016-09-29 12:46:51 +00:00
|
|
|
/**
|
|
|
|
* create autotune threads
|
|
|
|
*/
|
2016-02-04 14:07:38 +00:00
|
|
|
|
2016-10-08 21:16:40 +00:00
|
|
|
EVENT (EVENT_AUTOTUNE_STARTING);
|
2016-10-07 14:56:44 +00:00
|
|
|
|
2016-10-13 08:07:04 +00:00
|
|
|
thread_param_t *threads_param = (thread_param_t *) hccalloc (hashcat_ctx, opencl_ctx->devices_cnt, sizeof (thread_param_t)); VERIFY_PTR (threads_param);
|
2016-09-30 20:52:44 +00:00
|
|
|
|
2016-10-13 08:07:04 +00:00
|
|
|
hc_thread_t *c_threads = (hc_thread_t *) hccalloc (hashcat_ctx, opencl_ctx->devices_cnt, sizeof (hc_thread_t)); VERIFY_PTR (c_threads);
|
2016-02-04 14:07:38 +00:00
|
|
|
|
2016-09-29 21:25:29 +00:00
|
|
|
status_ctx->devices_status = STATUS_AUTOTUNE;
|
2016-05-12 10:44:15 +00:00
|
|
|
|
2016-09-30 14:43:59 +00:00
|
|
|
for (u32 device_id = 0; device_id < opencl_ctx->devices_cnt; device_id++)
|
2016-09-29 12:46:51 +00:00
|
|
|
{
|
2016-09-30 20:52:44 +00:00
|
|
|
thread_param_t *thread_param = threads_param + device_id;
|
|
|
|
|
|
|
|
thread_param->hashcat_ctx = hashcat_ctx;
|
|
|
|
thread_param->tid = device_id;
|
2016-02-04 14:07:38 +00:00
|
|
|
|
2016-10-30 21:22:26 +00:00
|
|
|
hc_thread_create (c_threads[device_id], thread_autotune, thread_param);
|
2016-09-29 12:46:51 +00:00
|
|
|
}
|
2016-09-23 20:51:42 +00:00
|
|
|
|
2016-09-29 12:46:51 +00:00
|
|
|
hc_thread_wait (opencl_ctx->devices_cnt, c_threads);
|
2016-01-13 16:10:40 +00:00
|
|
|
|
2016-10-08 21:16:40 +00:00
|
|
|
EVENT (EVENT_AUTOTUNE_FINISHED);
|
2016-10-07 14:56:44 +00:00
|
|
|
|
2016-09-29 12:46:51 +00:00
|
|
|
/**
|
|
|
|
* autotune modified kernel_accel, which modifies opencl_ctx->kernel_power_all
|
|
|
|
*/
|
2016-01-13 16:10:40 +00:00
|
|
|
|
2016-10-06 13:16:30 +00:00
|
|
|
opencl_ctx_devices_update_power (hashcat_ctx);
|
2016-01-13 16:10:40 +00:00
|
|
|
|
2016-09-29 12:46:51 +00:00
|
|
|
/**
|
|
|
|
* Begin loopback recording
|
|
|
|
*/
|
2016-01-15 16:23:07 +00:00
|
|
|
|
2016-09-29 12:46:51 +00:00
|
|
|
if (user_options->loopback == true)
|
|
|
|
{
|
2016-10-06 15:01:29 +00:00
|
|
|
loopback_write_open (hashcat_ctx);
|
2016-09-29 12:46:51 +00:00
|
|
|
}
|
2016-01-13 16:10:40 +00:00
|
|
|
|
2016-09-29 12:46:51 +00:00
|
|
|
/**
|
|
|
|
* Prepare cracking stats
|
|
|
|
*/
|
2016-01-15 16:23:07 +00:00
|
|
|
|
2016-09-29 21:49:33 +00:00
|
|
|
hc_timer_set (&status_ctx->timer_running);
|
2016-01-15 16:23:07 +00:00
|
|
|
|
2016-09-29 12:46:51 +00:00
|
|
|
time_t runtime_start;
|
2016-01-13 16:10:40 +00:00
|
|
|
|
2016-09-29 12:46:51 +00:00
|
|
|
time (&runtime_start);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-29 21:49:33 +00:00
|
|
|
status_ctx->runtime_start = runtime_start;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-29 21:49:33 +00:00
|
|
|
status_ctx->prepare_time = runtime_start - status_ctx->prepare_start;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-29 12:46:51 +00:00
|
|
|
/**
|
|
|
|
* create cracker threads
|
|
|
|
*/
|
2016-09-27 16:32:09 +00:00
|
|
|
|
2016-10-08 21:16:40 +00:00
|
|
|
EVENT (EVENT_CRACKER_STARTING);
|
2016-10-07 14:56:44 +00:00
|
|
|
|
2016-09-29 21:25:29 +00:00
|
|
|
status_ctx->devices_status = STATUS_RUNNING;
|
2016-09-27 16:32:09 +00:00
|
|
|
|
2016-10-29 13:12:45 +00:00
|
|
|
status_ctx->accessible = true;
|
|
|
|
|
2016-09-30 14:43:59 +00:00
|
|
|
for (u32 device_id = 0; device_id < opencl_ctx->devices_cnt; device_id++)
|
2016-09-23 20:51:42 +00:00
|
|
|
{
|
2016-09-30 20:52:44 +00:00
|
|
|
thread_param_t *thread_param = threads_param + device_id;
|
|
|
|
|
|
|
|
thread_param->hashcat_ctx = hashcat_ctx;
|
|
|
|
thread_param->tid = device_id;
|
2016-09-29 12:46:51 +00:00
|
|
|
|
|
|
|
if (user_options_extra->wordlist_mode == WL_MODE_STDIN)
|
2016-09-23 20:51:42 +00:00
|
|
|
{
|
2016-10-30 21:22:26 +00:00
|
|
|
hc_thread_create (c_threads[device_id], thread_calc_stdin, thread_param);
|
2015-12-04 14:47:52 +00:00
|
|
|
}
|
2016-09-29 12:46:51 +00:00
|
|
|
else
|
2016-09-23 20:51:42 +00:00
|
|
|
{
|
2016-10-30 21:22:26 +00:00
|
|
|
hc_thread_create (c_threads[device_id], thread_calc, thread_param);
|
2016-09-23 20:51:42 +00:00
|
|
|
}
|
|
|
|
}
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-29 12:46:51 +00:00
|
|
|
hc_thread_wait (opencl_ctx->devices_cnt, c_threads);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (c_threads);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (threads_param);
|
2016-09-30 20:52:44 +00:00
|
|
|
|
2016-09-29 21:25:29 +00:00
|
|
|
if ((status_ctx->devices_status != STATUS_CRACKED)
|
|
|
|
&& (status_ctx->devices_status != STATUS_ABORTED)
|
|
|
|
&& (status_ctx->devices_status != STATUS_QUIT)
|
|
|
|
&& (status_ctx->devices_status != STATUS_BYPASS))
|
2016-09-29 12:46:51 +00:00
|
|
|
{
|
2016-09-29 21:25:29 +00:00
|
|
|
status_ctx->devices_status = STATUS_EXHAUSTED;
|
2016-09-29 12:46:51 +00:00
|
|
|
}
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-29 12:46:51 +00:00
|
|
|
// update some timer
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-29 12:46:51 +00:00
|
|
|
time_t runtime_stop;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-29 12:46:51 +00:00
|
|
|
time (&runtime_stop);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-29 21:49:33 +00:00
|
|
|
status_ctx->runtime_stop = runtime_stop;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-31 08:19:37 +00:00
|
|
|
logfile_sub_uint ((u32) runtime_start);
|
|
|
|
logfile_sub_uint ((u32) runtime_stop);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-29 21:49:33 +00:00
|
|
|
time (&status_ctx->prepare_start);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-10 09:23:21 +00:00
|
|
|
EVENT (EVENT_CRACKER_FINISHED);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-29 13:12:45 +00:00
|
|
|
status_ctx->accessible = false;
|
|
|
|
|
2016-10-10 09:23:21 +00:00
|
|
|
// mark sub logfile
|
|
|
|
|
|
|
|
logfile_sub_var_uint ("status-after-work", status_ctx->devices_status);
|
|
|
|
|
|
|
|
logfile_sub_msg ("STOP");
|
|
|
|
|
2016-09-29 12:46:51 +00:00
|
|
|
// stop loopback recording
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-29 12:46:51 +00:00
|
|
|
if (user_options->loopback == true)
|
|
|
|
{
|
2016-10-06 15:01:29 +00:00
|
|
|
loopback_write_close (hashcat_ctx);
|
2016-09-29 12:46:51 +00:00
|
|
|
}
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-15 12:28:46 +00:00
|
|
|
// New induction folder check, which is a controlled recursion
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-29 12:46:51 +00:00
|
|
|
if (induct_ctx->induction_dictionaries_cnt == 0)
|
|
|
|
{
|
2016-10-06 14:46:08 +00:00
|
|
|
induct_ctx_scan (hashcat_ctx);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-29 12:46:51 +00:00
|
|
|
while (induct_ctx->induction_dictionaries_cnt)
|
2015-12-04 14:47:52 +00:00
|
|
|
{
|
2016-09-29 12:46:51 +00:00
|
|
|
for (induct_ctx->induction_dictionaries_pos = 0; induct_ctx->induction_dictionaries_pos < induct_ctx->induction_dictionaries_cnt; induct_ctx->induction_dictionaries_pos++)
|
|
|
|
{
|
2016-09-30 20:52:44 +00:00
|
|
|
const int rc_inner2_loop = inner2_loop (hashcat_ctx);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-15 12:28:46 +00:00
|
|
|
if (rc_inner2_loop == -1) myabort (hashcat_ctx);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-29 21:25:29 +00:00
|
|
|
if (status_ctx->run_main_level3 == false) break;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-29 12:46:51 +00:00
|
|
|
unlink (induct_ctx->induction_dictionaries[induct_ctx->induction_dictionaries_pos]);
|
2016-09-23 20:51:42 +00:00
|
|
|
}
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (induct_ctx->induction_dictionaries);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-06 14:46:08 +00:00
|
|
|
induct_ctx_scan (hashcat_ctx);
|
2016-09-29 12:46:51 +00:00
|
|
|
}
|
|
|
|
}
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-29 12:46:51 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-29 12:46:51 +00:00
|
|
|
// inner1_loop iterates through masks, then calls inner2_loop
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-30 20:52:44 +00:00
|
|
|
static int inner1_loop (hashcat_ctx_t *hashcat_ctx)
|
2016-09-29 12:46:51 +00:00
|
|
|
{
|
2016-10-06 20:00:02 +00:00
|
|
|
restore_ctx_t *restore_ctx = hashcat_ctx->restore_ctx;
|
|
|
|
status_ctx_t *status_ctx = hashcat_ctx->status_ctx;
|
|
|
|
straight_ctx_t *straight_ctx = hashcat_ctx->straight_ctx;
|
2016-09-30 20:52:44 +00:00
|
|
|
|
2016-10-14 17:25:13 +00:00
|
|
|
//status_ctx->run_main_level1 = true;
|
2016-09-29 21:25:29 +00:00
|
|
|
//status_ctx->run_main_level2 = true;
|
|
|
|
status_ctx->run_main_level3 = true;
|
|
|
|
status_ctx->run_thread_level1 = true;
|
|
|
|
status_ctx->run_thread_level2 = true;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-29 12:46:51 +00:00
|
|
|
/**
|
2016-10-03 14:27:34 +00:00
|
|
|
* loop through wordlists
|
2016-09-29 12:46:51 +00:00
|
|
|
*/
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-08 21:16:40 +00:00
|
|
|
EVENT (EVENT_INNERLOOP2_STARTING);
|
2016-10-07 20:16:03 +00:00
|
|
|
|
2016-10-20 20:14:54 +00:00
|
|
|
if (restore_ctx->rd)
|
|
|
|
{
|
|
|
|
restore_data_t *rd = restore_ctx->rd;
|
|
|
|
|
|
|
|
if (rd->dicts_pos > 0)
|
|
|
|
{
|
|
|
|
straight_ctx->dicts_pos = rd->dicts_pos;
|
|
|
|
|
|
|
|
rd->dicts_pos = 0;
|
|
|
|
}
|
|
|
|
}
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-29 12:46:51 +00:00
|
|
|
if (straight_ctx->dicts_cnt)
|
|
|
|
{
|
2016-10-20 20:14:54 +00:00
|
|
|
for (u32 dicts_pos = straight_ctx->dicts_pos; dicts_pos < straight_ctx->dicts_cnt; dicts_pos++)
|
2016-09-29 12:46:51 +00:00
|
|
|
{
|
|
|
|
straight_ctx->dicts_pos = dicts_pos;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-30 20:52:44 +00:00
|
|
|
const int rc_inner2_loop = inner2_loop (hashcat_ctx);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-15 12:28:46 +00:00
|
|
|
if (rc_inner2_loop == -1) myabort (hashcat_ctx);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-29 21:25:29 +00:00
|
|
|
if (status_ctx->run_main_level3 == false) break;
|
2016-09-29 12:46:51 +00:00
|
|
|
}
|
2016-10-20 20:14:54 +00:00
|
|
|
|
|
|
|
if (straight_ctx->dicts_pos == straight_ctx->dicts_cnt) straight_ctx->dicts_pos = 0;
|
2016-09-26 15:15:07 +00:00
|
|
|
}
|
2016-09-29 12:46:51 +00:00
|
|
|
else
|
|
|
|
{
|
2016-09-30 20:52:44 +00:00
|
|
|
const int rc_inner2_loop = inner2_loop (hashcat_ctx);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-15 12:28:46 +00:00
|
|
|
if (rc_inner2_loop == -1) myabort (hashcat_ctx);
|
2016-09-29 12:46:51 +00:00
|
|
|
}
|
2016-09-24 23:02:44 +00:00
|
|
|
|
2016-10-08 21:16:40 +00:00
|
|
|
EVENT (EVENT_INNERLOOP2_FINISHED);
|
2016-10-07 20:16:03 +00:00
|
|
|
|
2016-09-26 15:15:07 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2016-09-24 23:02:44 +00:00
|
|
|
|
2016-10-14 17:25:13 +00:00
|
|
|
// outer_loop iterates through hash_modes (in benchmark mode)
|
|
|
|
// also initializes stuff that depend on hash mode
|
2016-09-29 12:46:51 +00:00
|
|
|
|
2016-10-14 17:25:13 +00:00
|
|
|
static int outer_loop (hashcat_ctx_t *hashcat_ctx)
|
2016-09-26 15:15:07 +00:00
|
|
|
{
|
2016-10-15 12:28:46 +00:00
|
|
|
hashes_t *hashes = hashcat_ctx->hashes;
|
|
|
|
mask_ctx_t *mask_ctx = hashcat_ctx->mask_ctx;
|
|
|
|
opencl_ctx_t *opencl_ctx = hashcat_ctx->opencl_ctx;
|
|
|
|
outcheck_ctx_t *outcheck_ctx = hashcat_ctx->outcheck_ctx;
|
|
|
|
restore_ctx_t *restore_ctx = hashcat_ctx->restore_ctx;
|
|
|
|
status_ctx_t *status_ctx = hashcat_ctx->status_ctx;
|
|
|
|
straight_ctx_t *straight_ctx = hashcat_ctx->straight_ctx;
|
|
|
|
user_options_t *user_options = hashcat_ctx->user_options;
|
2016-09-30 20:52:44 +00:00
|
|
|
|
2016-09-29 21:25:29 +00:00
|
|
|
status_ctx->devices_status = STATUS_INIT;
|
2016-09-24 23:02:44 +00:00
|
|
|
|
2016-10-14 17:25:13 +00:00
|
|
|
//status_ctx->run_main_level1 = true;
|
2016-09-29 21:25:29 +00:00
|
|
|
status_ctx->run_main_level2 = true;
|
|
|
|
status_ctx->run_main_level3 = true;
|
|
|
|
status_ctx->run_thread_level1 = true;
|
|
|
|
status_ctx->run_thread_level2 = true;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-26 15:15:07 +00:00
|
|
|
/**
|
|
|
|
* setup prepare timer
|
|
|
|
*/
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-29 21:49:33 +00:00
|
|
|
time (&status_ctx->prepare_start);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-26 15:15:07 +00:00
|
|
|
/**
|
|
|
|
* setup variables and buffers depending on hash_mode
|
|
|
|
*/
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-06 13:49:07 +00:00
|
|
|
const int rc_hashconfig = hashconfig_init (hashcat_ctx);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-26 15:15:07 +00:00
|
|
|
if (rc_hashconfig == -1) return -1;
|
2016-02-05 14:27:09 +00:00
|
|
|
|
2016-09-26 15:15:07 +00:00
|
|
|
/**
|
|
|
|
* load hashes, stage 1
|
|
|
|
*/
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-06 08:55:14 +00:00
|
|
|
const int rc_hashes_init_stage1 = hashes_init_stage1 (hashcat_ctx);
|
2016-06-27 10:13:46 +00:00
|
|
|
|
2016-09-26 15:15:07 +00:00
|
|
|
if (rc_hashes_init_stage1 == -1) return -1;
|
2016-06-27 10:13:46 +00:00
|
|
|
|
2016-10-25 13:43:09 +00:00
|
|
|
if ((user_options->keyspace == false) && (user_options->stdout_flag == false))
|
2016-09-26 15:15:07 +00:00
|
|
|
{
|
|
|
|
if (hashes->hashes_cnt == 0)
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "No hashes loaded");
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-26 15:15:07 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-26 15:15:07 +00:00
|
|
|
/**
|
2016-10-18 18:42:34 +00:00
|
|
|
* load hashes, stage 2, remove duplicates, build base structure
|
2016-09-26 15:15:07 +00:00
|
|
|
*/
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-18 18:42:34 +00:00
|
|
|
hashes->hashes_cnt_orig = hashes->hashes_cnt;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-18 18:42:34 +00:00
|
|
|
const int rc_hashes_init_stage2 = hashes_init_stage2 (hashcat_ctx);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-18 18:42:34 +00:00
|
|
|
if (rc_hashes_init_stage2 == -1) return -1;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-26 15:15:07 +00:00
|
|
|
/**
|
2016-10-07 19:47:11 +00:00
|
|
|
* potfile removes
|
2016-09-26 15:15:07 +00:00
|
|
|
*/
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-18 18:42:34 +00:00
|
|
|
if (user_options->potfile_disable == false)
|
2016-09-26 15:15:07 +00:00
|
|
|
{
|
2016-10-10 09:10:04 +00:00
|
|
|
EVENT (EVENT_POTFILE_REMOVE_PARSE_PRE);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-07 19:47:11 +00:00
|
|
|
potfile_remove_parse (hashcat_ctx);
|
2016-10-10 09:10:04 +00:00
|
|
|
|
|
|
|
EVENT (EVENT_POTFILE_REMOVE_PARSE_POST);
|
2016-09-26 15:15:07 +00:00
|
|
|
}
|
2016-09-23 20:51:42 +00:00
|
|
|
|
2016-09-26 15:15:07 +00:00
|
|
|
/**
|
2016-10-18 18:42:34 +00:00
|
|
|
* load hashes, stage 3, update cracked results from potfile
|
2016-09-26 15:15:07 +00:00
|
|
|
*/
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-18 18:42:34 +00:00
|
|
|
const int rc_hashes_init_stage3 = hashes_init_stage3 (hashcat_ctx);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-18 18:42:34 +00:00
|
|
|
if (rc_hashes_init_stage3 == -1) return -1;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-03 18:46:42 +00:00
|
|
|
/**
|
2016-10-18 18:42:34 +00:00
|
|
|
* potfile show/left handling
|
2016-10-03 18:46:42 +00:00
|
|
|
*/
|
|
|
|
|
2016-10-18 18:42:34 +00:00
|
|
|
if (user_options->show == true)
|
2016-10-03 18:46:42 +00:00
|
|
|
{
|
2016-10-18 18:42:34 +00:00
|
|
|
outfile_write_open (hashcat_ctx);
|
|
|
|
|
|
|
|
const int rc = potfile_handle_show (hashcat_ctx);
|
|
|
|
|
|
|
|
if (rc == -1) return -1;
|
|
|
|
|
|
|
|
outfile_write_close (hashcat_ctx);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else if (user_options->left == true)
|
|
|
|
{
|
|
|
|
outfile_write_open (hashcat_ctx);
|
2016-10-03 18:46:42 +00:00
|
|
|
|
2016-10-18 18:42:34 +00:00
|
|
|
const int rc = potfile_handle_left (hashcat_ctx);
|
2016-10-03 18:46:42 +00:00
|
|
|
|
2016-10-18 18:42:34 +00:00
|
|
|
if (rc == -1) return -1;
|
2016-10-03 18:46:42 +00:00
|
|
|
|
2016-10-18 18:42:34 +00:00
|
|
|
outfile_write_close (hashcat_ctx);
|
2016-10-03 18:46:42 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-09-26 15:15:07 +00:00
|
|
|
/**
|
2016-10-18 18:42:34 +00:00
|
|
|
* maybe all hashes were cracked, we can exit here
|
2016-09-26 15:15:07 +00:00
|
|
|
*/
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-18 18:42:34 +00:00
|
|
|
if (status_ctx->devices_status == STATUS_CRACKED)
|
|
|
|
{
|
|
|
|
EVENT (EVENT_POTFILE_ALL_CRACKED);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-18 18:42:34 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* load hashes, stage 4, automatic Optimizers
|
|
|
|
*/
|
|
|
|
|
|
|
|
const int rc_hashes_init_stage4 = hashes_init_stage4 (hashcat_ctx);
|
|
|
|
|
|
|
|
if (rc_hashes_init_stage4 == -1) return -1;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Done loading hashes, log results
|
|
|
|
*/
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-06 08:55:14 +00:00
|
|
|
hashes_logger (hashcat_ctx);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-26 15:15:07 +00:00
|
|
|
/**
|
|
|
|
* bitmaps
|
|
|
|
*/
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-08 21:16:40 +00:00
|
|
|
EVENT (EVENT_BITMAP_INIT_PRE);
|
2016-10-07 20:16:03 +00:00
|
|
|
|
2016-10-13 08:07:04 +00:00
|
|
|
const int rc_bitmap_init = bitmap_ctx_init (hashcat_ctx);
|
|
|
|
|
|
|
|
if (rc_bitmap_init == -1) return -1;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-08 21:16:40 +00:00
|
|
|
EVENT (EVENT_BITMAP_INIT_POST);
|
2016-10-07 20:16:03 +00:00
|
|
|
|
2016-09-29 13:19:12 +00:00
|
|
|
/**
|
|
|
|
* cracks-per-time allocate buffer
|
|
|
|
*/
|
|
|
|
|
2016-10-06 08:26:47 +00:00
|
|
|
cpt_ctx_init (hashcat_ctx);
|
2016-09-29 13:19:12 +00:00
|
|
|
|
2016-09-26 15:15:07 +00:00
|
|
|
/**
|
2016-09-27 11:13:07 +00:00
|
|
|
* Wordlist allocate buffer
|
2016-09-26 15:15:07 +00:00
|
|
|
*/
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-13 08:07:04 +00:00
|
|
|
const int rc_wl_data_init = wl_data_init (hashcat_ctx);
|
|
|
|
|
|
|
|
if (rc_wl_data_init == -1) return -1;
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-09-27 11:13:07 +00:00
|
|
|
/**
|
|
|
|
* straight mode init
|
|
|
|
*/
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-10-06 08:21:39 +00:00
|
|
|
const int rc_straight_init = straight_ctx_init (hashcat_ctx);
|
2016-09-27 11:13:07 +00:00
|
|
|
|
|
|
|
if (rc_straight_init == -1) return -1;
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-09-27 16:32:09 +00:00
|
|
|
/**
|
|
|
|
* straight mode init
|
|
|
|
*/
|
|
|
|
|
2016-10-06 08:10:04 +00:00
|
|
|
const int rc_combinator_init = combinator_ctx_init (hashcat_ctx);
|
2016-09-27 16:32:09 +00:00
|
|
|
|
|
|
|
if (rc_combinator_init == -1) return -1;
|
|
|
|
|
2016-09-26 15:15:07 +00:00
|
|
|
/**
|
2016-09-27 11:13:07 +00:00
|
|
|
* charsets : keep them together for more easy maintainnce
|
2016-09-26 15:15:07 +00:00
|
|
|
*/
|
|
|
|
|
2016-10-06 08:14:19 +00:00
|
|
|
const int rc_mask_init = mask_ctx_init (hashcat_ctx);
|
2016-09-27 11:13:07 +00:00
|
|
|
|
|
|
|
if (rc_mask_init == -1) return -1;
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-10-03 14:27:34 +00:00
|
|
|
/**
|
|
|
|
* prevent the user from using --skip/--limit together w/ maskfile and or dictfile
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (user_options->skip != 0 || user_options->limit != 0)
|
|
|
|
{
|
|
|
|
if ((mask_ctx->masks_cnt > 1) || (straight_ctx->dicts_cnt > 1))
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "--skip/--limit are not supported with --increment or mask files");
|
2016-10-03 14:27:34 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* prevent the user from using --keyspace together w/ maskfile and or dictfile
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (user_options->keyspace == true)
|
|
|
|
{
|
|
|
|
if ((mask_ctx->masks_cnt > 1) || (straight_ctx->dicts_cnt > 1))
|
|
|
|
{
|
2016-10-11 08:55:02 +00:00
|
|
|
event_log_error (hashcat_ctx, "--keyspace is not supported with --increment or mask files");
|
2016-10-03 14:27:34 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-29 20:27:04 +00:00
|
|
|
/**
|
2016-09-29 21:25:29 +00:00
|
|
|
* status progress init; needs hashes that's why we have to do it here and separate from status_ctx_init
|
2016-09-29 20:27:04 +00:00
|
|
|
*/
|
|
|
|
|
2016-10-06 07:47:34 +00:00
|
|
|
const int rc_status_init = status_progress_init (hashcat_ctx);
|
2016-09-29 20:27:04 +00:00
|
|
|
|
|
|
|
if (rc_status_init == -1) return -1;
|
|
|
|
|
2016-09-26 15:15:07 +00:00
|
|
|
/**
|
2016-10-07 19:47:11 +00:00
|
|
|
* main screen
|
2016-09-26 15:15:07 +00:00
|
|
|
*/
|
|
|
|
|
2016-10-14 17:25:13 +00:00
|
|
|
EVENT (EVENT_OUTERLOOP_MAINSCREEN);
|
2016-09-26 15:15:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* inform the user
|
|
|
|
*/
|
|
|
|
|
2016-10-08 21:16:40 +00:00
|
|
|
EVENT (EVENT_OPENCL_SESSION_PRE);
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-10-15 19:34:38 +00:00
|
|
|
const int rc_session_begin = opencl_session_begin (hashcat_ctx);
|
|
|
|
|
|
|
|
if (rc_session_begin == -1) return -1;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-08 21:16:40 +00:00
|
|
|
EVENT (EVENT_OPENCL_SESSION_POST);
|
2016-09-26 15:15:07 +00:00
|
|
|
|
|
|
|
/**
|
2016-09-26 21:20:26 +00:00
|
|
|
* weak hash check is the first to write to potfile, so open it for writing from here
|
2016-09-26 15:15:07 +00:00
|
|
|
*/
|
|
|
|
|
2016-10-06 13:40:27 +00:00
|
|
|
const int rc_potfile_write = potfile_write_open (hashcat_ctx);
|
2016-10-04 21:00:20 +00:00
|
|
|
|
|
|
|
if (rc_potfile_write == -1) return -1;
|
2016-09-26 21:20:26 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* weak hash check
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (user_options->weak_hash_threshold >= hashes->salts_cnt)
|
2016-09-26 15:15:07 +00:00
|
|
|
{
|
2016-09-26 21:20:26 +00:00
|
|
|
hc_device_param_t *device_param = NULL;
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-09-30 14:43:59 +00:00
|
|
|
for (u32 device_id = 0; device_id < opencl_ctx->devices_cnt; device_id++)
|
2016-09-26 15:15:07 +00:00
|
|
|
{
|
2016-09-26 21:20:26 +00:00
|
|
|
device_param = &opencl_ctx->devices_param[device_id];
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-26 15:15:07 +00:00
|
|
|
if (device_param->skipped) continue;
|
|
|
|
|
2016-09-26 21:20:26 +00:00
|
|
|
break;
|
|
|
|
}
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-10-08 21:16:40 +00:00
|
|
|
EVENT (EVENT_WEAK_HASH_PRE);
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-09-30 14:43:59 +00:00
|
|
|
for (u32 salt_pos = 0; salt_pos < hashes->salts_cnt; salt_pos++)
|
2016-09-26 21:20:26 +00:00
|
|
|
{
|
2016-10-15 17:47:53 +00:00
|
|
|
const int CL_rc = weak_hash_check (hashcat_ctx, device_param, salt_pos);
|
|
|
|
|
|
|
|
if (CL_rc == -1) return -1;
|
2016-09-26 21:20:26 +00:00
|
|
|
}
|
2016-10-07 20:16:03 +00:00
|
|
|
|
2016-10-08 21:16:40 +00:00
|
|
|
EVENT (EVENT_WEAK_HASH_POST);
|
2016-09-26 21:20:26 +00:00
|
|
|
}
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-09-26 21:20:26 +00:00
|
|
|
/**
|
|
|
|
* status and monitor threads
|
|
|
|
*/
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-09-30 14:43:59 +00:00
|
|
|
int inner_threads_cnt = 0;
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-10-13 08:07:04 +00:00
|
|
|
hc_thread_t *inner_threads = (hc_thread_t *) hccalloc (hashcat_ctx, 10, sizeof (hc_thread_t)); VERIFY_PTR (inner_threads);
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-09-29 21:49:33 +00:00
|
|
|
status_ctx->shutdown_inner = false;
|
2016-09-28 11:51:00 +00:00
|
|
|
|
2016-09-26 21:20:26 +00:00
|
|
|
/**
|
|
|
|
* Outfile remove
|
|
|
|
*/
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-10-14 19:38:52 +00:00
|
|
|
if (user_options->keyspace == false && user_options->benchmark == false && user_options->stdout_flag == false && user_options->speed_only == false)
|
2016-09-26 21:20:26 +00:00
|
|
|
{
|
2016-10-30 21:22:26 +00:00
|
|
|
hc_thread_create (inner_threads[inner_threads_cnt], thread_monitor, hashcat_ctx);
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-09-26 21:20:26 +00:00
|
|
|
inner_threads_cnt++;
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-09-26 21:20:26 +00:00
|
|
|
if (outcheck_ctx->enabled == true)
|
|
|
|
{
|
2016-10-30 21:22:26 +00:00
|
|
|
hc_thread_create (inner_threads[inner_threads_cnt], thread_outfile_remove, hashcat_ctx);
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-09-26 21:20:26 +00:00
|
|
|
inner_threads_cnt++;
|
|
|
|
}
|
|
|
|
}
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-09-26 21:20:26 +00:00
|
|
|
/**
|
2016-09-29 20:27:04 +00:00
|
|
|
* Tell user about cracked hashes by potfile
|
2016-09-26 21:20:26 +00:00
|
|
|
*/
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-10-08 21:16:40 +00:00
|
|
|
EVENT (EVENT_POTFILE_NUM_CRACKED);
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-10-11 13:02:54 +00:00
|
|
|
// main call
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-10-20 20:14:54 +00:00
|
|
|
if (restore_ctx->rd)
|
2016-09-26 21:20:26 +00:00
|
|
|
{
|
2016-09-29 20:27:04 +00:00
|
|
|
restore_data_t *rd = restore_ctx->rd;
|
|
|
|
|
2016-10-20 20:14:54 +00:00
|
|
|
if (rd->masks_pos > 0)
|
2016-09-26 21:20:26 +00:00
|
|
|
{
|
2016-10-20 20:14:54 +00:00
|
|
|
mask_ctx->masks_pos = rd->masks_pos;
|
|
|
|
|
|
|
|
rd->masks_pos = 0;
|
|
|
|
}
|
|
|
|
}
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-10-20 20:14:54 +00:00
|
|
|
EVENT (EVENT_INNERLOOP1_STARTING);
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-10-20 20:14:54 +00:00
|
|
|
if (mask_ctx->masks_cnt)
|
|
|
|
{
|
|
|
|
for (u32 masks_pos = mask_ctx->masks_pos; masks_pos < mask_ctx->masks_cnt; masks_pos++)
|
|
|
|
{
|
2016-09-26 21:20:26 +00:00
|
|
|
mask_ctx->masks_pos = masks_pos;
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-10-14 17:25:13 +00:00
|
|
|
const int rc_inner1_loop = inner1_loop (hashcat_ctx);
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-10-15 12:28:46 +00:00
|
|
|
if (rc_inner1_loop == -1) myabort (hashcat_ctx);
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-09-29 21:25:29 +00:00
|
|
|
if (status_ctx->run_main_level2 == false) break;
|
2016-09-26 21:20:26 +00:00
|
|
|
}
|
2016-10-20 20:14:54 +00:00
|
|
|
|
|
|
|
if (mask_ctx->masks_pos == mask_ctx->masks_cnt) mask_ctx->masks_pos = 0;
|
2016-09-26 21:20:26 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-10-14 17:25:13 +00:00
|
|
|
const int rc_inner1_loop = inner1_loop (hashcat_ctx);
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-10-15 12:28:46 +00:00
|
|
|
if (rc_inner1_loop == -1) myabort (hashcat_ctx);
|
2016-10-14 17:25:13 +00:00
|
|
|
}
|
2016-10-14 11:27:35 +00:00
|
|
|
|
2016-09-26 21:20:26 +00:00
|
|
|
// wait for inner threads
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-09-29 21:49:33 +00:00
|
|
|
status_ctx->shutdown_inner = true;
|
2016-09-28 11:51:00 +00:00
|
|
|
|
2016-09-30 14:43:59 +00:00
|
|
|
for (int thread_idx = 0; thread_idx < inner_threads_cnt; thread_idx++)
|
2016-09-26 21:20:26 +00:00
|
|
|
{
|
|
|
|
hc_thread_wait (1, &inner_threads[thread_idx]);
|
|
|
|
}
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-10-10 09:03:11 +00:00
|
|
|
hcfree (inner_threads);
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-10-14 17:25:13 +00:00
|
|
|
EVENT (EVENT_INNERLOOP1_FINISHED);
|
|
|
|
|
2016-10-06 20:18:20 +00:00
|
|
|
// finalize potfile
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-10-06 20:18:20 +00:00
|
|
|
potfile_write_close (hashcat_ctx);
|
|
|
|
|
2016-10-07 14:56:44 +00:00
|
|
|
// finalize opencl session
|
2016-09-27 09:03:45 +00:00
|
|
|
|
2016-10-06 13:16:30 +00:00
|
|
|
opencl_session_destroy (hashcat_ctx);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-06 20:18:20 +00:00
|
|
|
// clean up
|
|
|
|
|
2016-10-15 12:28:46 +00:00
|
|
|
bitmap_ctx_destroy (hashcat_ctx);
|
|
|
|
combinator_ctx_destroy (hashcat_ctx);
|
|
|
|
cpt_ctx_destroy (hashcat_ctx);
|
|
|
|
hashconfig_destroy (hashcat_ctx);
|
|
|
|
hashes_destroy (hashcat_ctx);
|
|
|
|
mask_ctx_destroy (hashcat_ctx);
|
2016-10-06 20:18:20 +00:00
|
|
|
status_progress_destroy (hashcat_ctx);
|
2016-10-15 12:28:46 +00:00
|
|
|
straight_ctx_destroy (hashcat_ctx);
|
|
|
|
wl_data_destroy (hashcat_ctx);
|
2016-09-29 13:19:12 +00:00
|
|
|
|
2016-10-14 17:25:13 +00:00
|
|
|
return 0;
|
2016-09-26 21:20:26 +00:00
|
|
|
}
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-16 17:32:43 +00:00
|
|
|
int hashcat_init (hashcat_ctx_t *hashcat_ctx, void (*event) (const u32, struct hashcat_ctx *, const void *, const size_t))
|
|
|
|
{
|
|
|
|
if (event == NULL)
|
|
|
|
{
|
|
|
|
fprintf (stderr, "Event callback function is mandatory\n");
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
hashcat_ctx->event = event;
|
|
|
|
|
|
|
|
hashcat_ctx->bitmap_ctx = (bitmap_ctx_t *) hcmalloc (hashcat_ctx, sizeof (bitmap_ctx_t)); VERIFY_PTR (hashcat_ctx->bitmap_ctx);
|
|
|
|
hashcat_ctx->combinator_ctx = (combinator_ctx_t *) hcmalloc (hashcat_ctx, sizeof (combinator_ctx_t)); VERIFY_PTR (hashcat_ctx->combinator_ctx);
|
|
|
|
hashcat_ctx->cpt_ctx = (cpt_ctx_t *) hcmalloc (hashcat_ctx, sizeof (cpt_ctx_t)); VERIFY_PTR (hashcat_ctx->cpt_ctx);
|
|
|
|
hashcat_ctx->debugfile_ctx = (debugfile_ctx_t *) hcmalloc (hashcat_ctx, sizeof (debugfile_ctx_t)); VERIFY_PTR (hashcat_ctx->debugfile_ctx);
|
|
|
|
hashcat_ctx->dictstat_ctx = (dictstat_ctx_t *) hcmalloc (hashcat_ctx, sizeof (dictstat_ctx_t)); VERIFY_PTR (hashcat_ctx->dictstat_ctx);
|
|
|
|
hashcat_ctx->event_ctx = (event_ctx_t *) hcmalloc (hashcat_ctx, sizeof (event_ctx_t)); VERIFY_PTR (hashcat_ctx->event_ctx);
|
|
|
|
hashcat_ctx->folder_config = (folder_config_t *) hcmalloc (hashcat_ctx, sizeof (folder_config_t)); VERIFY_PTR (hashcat_ctx->folder_config);
|
|
|
|
hashcat_ctx->hashcat_user = (hashcat_user_t *) hcmalloc (hashcat_ctx, sizeof (hashcat_user_t)); VERIFY_PTR (hashcat_ctx->hashcat_user);
|
|
|
|
hashcat_ctx->hashconfig = (hashconfig_t *) hcmalloc (hashcat_ctx, sizeof (hashconfig_t)); VERIFY_PTR (hashcat_ctx->hashconfig);
|
|
|
|
hashcat_ctx->hashes = (hashes_t *) hcmalloc (hashcat_ctx, sizeof (hashes_t)); VERIFY_PTR (hashcat_ctx->hashes);
|
|
|
|
hashcat_ctx->hwmon_ctx = (hwmon_ctx_t *) hcmalloc (hashcat_ctx, sizeof (hwmon_ctx_t)); VERIFY_PTR (hashcat_ctx->hwmon_ctx);
|
|
|
|
hashcat_ctx->induct_ctx = (induct_ctx_t *) hcmalloc (hashcat_ctx, sizeof (induct_ctx_t)); VERIFY_PTR (hashcat_ctx->induct_ctx);
|
|
|
|
hashcat_ctx->logfile_ctx = (logfile_ctx_t *) hcmalloc (hashcat_ctx, sizeof (logfile_ctx_t)); VERIFY_PTR (hashcat_ctx->logfile_ctx);
|
|
|
|
hashcat_ctx->loopback_ctx = (loopback_ctx_t *) hcmalloc (hashcat_ctx, sizeof (loopback_ctx_t)); VERIFY_PTR (hashcat_ctx->loopback_ctx);
|
|
|
|
hashcat_ctx->mask_ctx = (mask_ctx_t *) hcmalloc (hashcat_ctx, sizeof (mask_ctx_t)); VERIFY_PTR (hashcat_ctx->mask_ctx);
|
|
|
|
hashcat_ctx->opencl_ctx = (opencl_ctx_t *) hcmalloc (hashcat_ctx, sizeof (opencl_ctx_t)); VERIFY_PTR (hashcat_ctx->opencl_ctx);
|
|
|
|
hashcat_ctx->outcheck_ctx = (outcheck_ctx_t *) hcmalloc (hashcat_ctx, sizeof (outcheck_ctx_t)); VERIFY_PTR (hashcat_ctx->outcheck_ctx);
|
|
|
|
hashcat_ctx->outfile_ctx = (outfile_ctx_t *) hcmalloc (hashcat_ctx, sizeof (outfile_ctx_t)); VERIFY_PTR (hashcat_ctx->outfile_ctx);
|
|
|
|
hashcat_ctx->potfile_ctx = (potfile_ctx_t *) hcmalloc (hashcat_ctx, sizeof (potfile_ctx_t)); VERIFY_PTR (hashcat_ctx->potfile_ctx);
|
|
|
|
hashcat_ctx->restore_ctx = (restore_ctx_t *) hcmalloc (hashcat_ctx, sizeof (restore_ctx_t)); VERIFY_PTR (hashcat_ctx->restore_ctx);
|
|
|
|
hashcat_ctx->status_ctx = (status_ctx_t *) hcmalloc (hashcat_ctx, sizeof (status_ctx_t)); VERIFY_PTR (hashcat_ctx->status_ctx);
|
|
|
|
hashcat_ctx->straight_ctx = (straight_ctx_t *) hcmalloc (hashcat_ctx, sizeof (straight_ctx_t)); VERIFY_PTR (hashcat_ctx->straight_ctx);
|
|
|
|
hashcat_ctx->tuning_db = (tuning_db_t *) hcmalloc (hashcat_ctx, sizeof (tuning_db_t)); VERIFY_PTR (hashcat_ctx->tuning_db);
|
|
|
|
hashcat_ctx->user_options_extra = (user_options_extra_t *) hcmalloc (hashcat_ctx, sizeof (user_options_extra_t)); VERIFY_PTR (hashcat_ctx->user_options_extra);
|
|
|
|
hashcat_ctx->user_options = (user_options_t *) hcmalloc (hashcat_ctx, sizeof (user_options_t)); VERIFY_PTR (hashcat_ctx->user_options);
|
|
|
|
hashcat_ctx->wl_data = (wl_data_t *) hcmalloc (hashcat_ctx, sizeof (wl_data_t)); VERIFY_PTR (hashcat_ctx->wl_data);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void hashcat_destroy (hashcat_ctx_t *hashcat_ctx)
|
|
|
|
{
|
|
|
|
hcfree (hashcat_ctx->bitmap_ctx);
|
|
|
|
hcfree (hashcat_ctx->combinator_ctx);
|
|
|
|
hcfree (hashcat_ctx->cpt_ctx);
|
|
|
|
hcfree (hashcat_ctx->debugfile_ctx);
|
|
|
|
hcfree (hashcat_ctx->dictstat_ctx);
|
|
|
|
hcfree (hashcat_ctx->event_ctx);
|
|
|
|
hcfree (hashcat_ctx->folder_config);
|
|
|
|
hcfree (hashcat_ctx->hashconfig);
|
|
|
|
hcfree (hashcat_ctx->hashes);
|
|
|
|
hcfree (hashcat_ctx->hwmon_ctx);
|
|
|
|
hcfree (hashcat_ctx->induct_ctx);
|
|
|
|
hcfree (hashcat_ctx->logfile_ctx);
|
|
|
|
hcfree (hashcat_ctx->loopback_ctx);
|
|
|
|
hcfree (hashcat_ctx->mask_ctx);
|
|
|
|
hcfree (hashcat_ctx->opencl_ctx);
|
|
|
|
hcfree (hashcat_ctx->outcheck_ctx);
|
|
|
|
hcfree (hashcat_ctx->outfile_ctx);
|
|
|
|
hcfree (hashcat_ctx->potfile_ctx);
|
|
|
|
hcfree (hashcat_ctx->restore_ctx);
|
|
|
|
hcfree (hashcat_ctx->status_ctx);
|
|
|
|
hcfree (hashcat_ctx->straight_ctx);
|
|
|
|
hcfree (hashcat_ctx->tuning_db);
|
|
|
|
hcfree (hashcat_ctx->user_options_extra);
|
|
|
|
hcfree (hashcat_ctx->user_options);
|
|
|
|
hcfree (hashcat_ctx->wl_data);
|
|
|
|
|
|
|
|
memset (hashcat_ctx, 0, sizeof (hashcat_ctx_t));
|
|
|
|
}
|
|
|
|
|
2016-10-23 15:31:22 +00:00
|
|
|
int hashcat_session_init (hashcat_ctx_t *hashcat_ctx, char *install_folder, char *shared_folder, int argc, char **argv, const int comptime)
|
2016-09-26 21:20:26 +00:00
|
|
|
{
|
2016-10-07 14:56:44 +00:00
|
|
|
user_options_t *user_options = hashcat_ctx->user_options;
|
2016-09-29 21:25:29 +00:00
|
|
|
|
2016-10-08 21:16:40 +00:00
|
|
|
/**
|
|
|
|
* event init (needed for logging so should be first)
|
|
|
|
*/
|
|
|
|
|
|
|
|
const int rc_event_init = event_ctx_init (hashcat_ctx);
|
|
|
|
|
|
|
|
if (rc_event_init == -1) return -1;
|
|
|
|
|
2016-10-01 22:00:21 +00:00
|
|
|
/**
|
|
|
|
* status init
|
|
|
|
*/
|
2016-09-29 21:25:29 +00:00
|
|
|
|
2016-10-06 07:47:34 +00:00
|
|
|
const int rc_status_init = status_ctx_init (hashcat_ctx);
|
2016-09-29 21:25:29 +00:00
|
|
|
|
|
|
|
if (rc_status_init == -1) return -1;
|
|
|
|
|
2016-09-26 21:20:26 +00:00
|
|
|
/**
|
|
|
|
* folder
|
|
|
|
*/
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-10-06 15:26:15 +00:00
|
|
|
const int rc_folder_config_init = folder_config_init (hashcat_ctx, install_folder, shared_folder);
|
|
|
|
|
|
|
|
if (rc_folder_config_init == -1) return -1;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-26 15:15:07 +00:00
|
|
|
/**
|
2016-09-26 21:20:26 +00:00
|
|
|
* restore
|
2016-09-26 15:15:07 +00:00
|
|
|
*/
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-06 14:34:30 +00:00
|
|
|
const int rc_restore_init = restore_ctx_init (hashcat_ctx, argc, argv);
|
2016-09-26 21:20:26 +00:00
|
|
|
|
|
|
|
if (rc_restore_init == -1) return -1;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-14 17:25:13 +00:00
|
|
|
/**
|
|
|
|
* process user input
|
|
|
|
*/
|
|
|
|
|
|
|
|
user_options_preprocess (hashcat_ctx);
|
|
|
|
|
|
|
|
user_options_extra_init (hashcat_ctx);
|
|
|
|
|
2016-10-10 09:23:21 +00:00
|
|
|
/**
|
|
|
|
* logfile
|
|
|
|
*/
|
|
|
|
|
|
|
|
const int rc_logfile_init = logfile_init (hashcat_ctx);
|
|
|
|
|
|
|
|
if (rc_logfile_init == -1) return -1;
|
2016-09-26 15:15:07 +00:00
|
|
|
|
2016-09-26 21:20:26 +00:00
|
|
|
/**
|
2016-10-08 21:38:34 +00:00
|
|
|
* cpu affinity
|
2016-09-26 21:20:26 +00:00
|
|
|
*/
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-08 21:38:34 +00:00
|
|
|
const int rc_affinity = set_cpu_affinity (hashcat_ctx);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-08 21:38:34 +00:00
|
|
|
if (rc_affinity == -1) return -1;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-07 14:56:44 +00:00
|
|
|
/**
|
|
|
|
* prepare seeding for random number generator, required by logfile and rules generator
|
|
|
|
*/
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-07 14:56:44 +00:00
|
|
|
setup_seeding (user_options->rp_gen_seed_chgd, user_options->rp_gen_seed);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-08 21:38:34 +00:00
|
|
|
/**
|
|
|
|
* To help users a bit
|
|
|
|
*/
|
|
|
|
|
|
|
|
setup_environment_variables ();
|
|
|
|
|
|
|
|
setup_umask ();
|
|
|
|
|
2016-09-26 21:20:26 +00:00
|
|
|
/**
|
|
|
|
* tuning db
|
|
|
|
*/
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-06 14:51:01 +00:00
|
|
|
const int rc_tuning_db = tuning_db_init (hashcat_ctx);
|
2016-09-30 11:02:15 +00:00
|
|
|
|
2016-09-30 10:58:06 +00:00
|
|
|
if (rc_tuning_db == -1) return -1;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-26 21:20:26 +00:00
|
|
|
/**
|
|
|
|
* induction directory
|
|
|
|
*/
|
2016-01-15 16:23:07 +00:00
|
|
|
|
2016-10-06 14:46:08 +00:00
|
|
|
const int rc_induct_ctx_init = induct_ctx_init (hashcat_ctx);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-26 21:20:26 +00:00
|
|
|
if (rc_induct_ctx_init == -1) return -1;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-26 21:20:26 +00:00
|
|
|
/**
|
|
|
|
* outfile-check directory
|
|
|
|
*/
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-06 14:43:02 +00:00
|
|
|
const int rc_outcheck_ctx_init = outcheck_ctx_init (hashcat_ctx);
|
2016-07-10 11:23:06 +00:00
|
|
|
|
2016-09-26 21:20:26 +00:00
|
|
|
if (rc_outcheck_ctx_init == -1) return -1;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-23 20:51:42 +00:00
|
|
|
/**
|
2016-09-26 21:20:26 +00:00
|
|
|
* outfile itself
|
2016-09-23 20:51:42 +00:00
|
|
|
*/
|
2016-07-10 11:23:06 +00:00
|
|
|
|
2016-10-06 15:26:15 +00:00
|
|
|
const int rc_outfile_init = outfile_init (hashcat_ctx);
|
|
|
|
|
|
|
|
if (rc_outfile_init == -1) return -1;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-26 21:20:26 +00:00
|
|
|
/**
|
|
|
|
* Sanity check for hashfile vs outfile (should not point to the same physical file)
|
|
|
|
*/
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-06 13:40:27 +00:00
|
|
|
const int rc_outfile_and_hashfile = outfile_and_hashfile (hashcat_ctx);
|
2016-09-23 20:51:42 +00:00
|
|
|
|
2016-09-26 21:20:26 +00:00
|
|
|
if (rc_outfile_and_hashfile == -1) return -1;
|
2016-09-23 20:51:42 +00:00
|
|
|
|
2016-09-26 21:20:26 +00:00
|
|
|
/**
|
|
|
|
* potfile init
|
|
|
|
* this is only setting path because potfile can be used in read and write mode depending on user options
|
2016-10-14 17:25:13 +00:00
|
|
|
* plus it depends on hash_mode, so we continue using it in outer_loop
|
2016-09-26 21:20:26 +00:00
|
|
|
*/
|
2016-09-23 20:51:42 +00:00
|
|
|
|
2016-10-06 15:26:15 +00:00
|
|
|
const int rc_potfile_init = potfile_init (hashcat_ctx);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-06 15:26:15 +00:00
|
|
|
if (rc_potfile_init == -1) return -1;
|
2016-10-08 21:38:34 +00:00
|
|
|
|
2016-09-26 21:20:26 +00:00
|
|
|
/**
|
|
|
|
* dictstat init
|
|
|
|
*/
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-06 15:26:15 +00:00
|
|
|
const int rc_dictstat_init = dictstat_init (hashcat_ctx);
|
|
|
|
|
|
|
|
if (rc_dictstat_init == -1) return -1;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-26 21:20:26 +00:00
|
|
|
/**
|
|
|
|
* loopback init
|
|
|
|
*/
|
2016-09-23 20:51:42 +00:00
|
|
|
|
2016-10-06 15:26:15 +00:00
|
|
|
const int rc_loopback_init = loopback_init (hashcat_ctx);
|
|
|
|
|
|
|
|
if (rc_loopback_init == -1) return -1;
|
2016-09-23 20:51:42 +00:00
|
|
|
|
2016-09-26 21:20:26 +00:00
|
|
|
/**
|
|
|
|
* debugfile init
|
|
|
|
*/
|
2016-09-23 20:51:42 +00:00
|
|
|
|
2016-10-06 15:26:15 +00:00
|
|
|
const int rc_debugfile_init = debugfile_init (hashcat_ctx);
|
|
|
|
|
|
|
|
if (rc_debugfile_init == -1) return -1;
|
2016-09-23 20:51:42 +00:00
|
|
|
|
2016-09-26 21:20:26 +00:00
|
|
|
/**
|
|
|
|
* Init OpenCL library loader
|
|
|
|
*/
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-06 13:16:30 +00:00
|
|
|
const int rc_opencl_init = opencl_ctx_init (hashcat_ctx);
|
2016-09-17 15:05:01 +00:00
|
|
|
|
2016-10-06 15:26:15 +00:00
|
|
|
if (rc_opencl_init == -1) return -1;
|
2016-09-17 15:05:01 +00:00
|
|
|
|
2016-09-26 21:20:26 +00:00
|
|
|
/**
|
|
|
|
* Init OpenCL devices
|
|
|
|
*/
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-06 13:16:30 +00:00
|
|
|
const int rc_devices_init = opencl_ctx_devices_init (hashcat_ctx, comptime);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-06 15:26:15 +00:00
|
|
|
if (rc_devices_init == -1) return -1;
|
2016-10-07 14:56:44 +00:00
|
|
|
|
2016-09-26 21:20:26 +00:00
|
|
|
/**
|
|
|
|
* HM devices: init
|
|
|
|
*/
|
2016-06-02 10:32:24 +00:00
|
|
|
|
2016-10-06 09:10:00 +00:00
|
|
|
const int rc_hwmon_init = hwmon_ctx_init (hashcat_ctx);
|
2016-09-28 13:26:56 +00:00
|
|
|
|
2016-10-06 15:26:15 +00:00
|
|
|
if (rc_hwmon_init == -1) return -1;
|
2016-09-28 13:26:56 +00:00
|
|
|
|
2016-10-23 15:31:22 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-25 14:40:06 +00:00
|
|
|
int hashcat_session_execute (hashcat_ctx_t *hashcat_ctx)
|
2016-10-23 15:31:22 +00:00
|
|
|
{
|
|
|
|
logfile_ctx_t *logfile_ctx = hashcat_ctx->logfile_ctx;
|
|
|
|
status_ctx_t *status_ctx = hashcat_ctx->status_ctx;
|
|
|
|
user_options_t *user_options = hashcat_ctx->user_options;
|
|
|
|
|
|
|
|
// start logfile entry
|
|
|
|
|
|
|
|
const time_t proc_start = time (NULL);
|
|
|
|
|
|
|
|
logfile_generate_topid (hashcat_ctx);
|
|
|
|
|
|
|
|
logfile_top_msg ("START");
|
|
|
|
|
2016-10-29 21:21:52 +00:00
|
|
|
// add all user options to logfile in case we want to debug some user session
|
|
|
|
|
|
|
|
user_options_logger (hashcat_ctx);
|
|
|
|
|
2016-10-23 15:31:22 +00:00
|
|
|
// read dictionary cache
|
|
|
|
|
|
|
|
dictstat_read (hashcat_ctx);
|
|
|
|
|
2016-09-23 20:51:42 +00:00
|
|
|
/**
|
2016-10-14 17:25:13 +00:00
|
|
|
* outer loop
|
2016-09-23 20:51:42 +00:00
|
|
|
*/
|
2016-09-22 15:11:17 +00:00
|
|
|
|
2016-10-14 17:25:13 +00:00
|
|
|
EVENT (EVENT_OUTERLOOP_STARTING);
|
2016-09-23 20:01:43 +00:00
|
|
|
|
2016-10-14 17:25:13 +00:00
|
|
|
int rc_final = -1;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-14 17:25:13 +00:00
|
|
|
if (user_options->benchmark == true)
|
|
|
|
{
|
|
|
|
user_options->quiet = true;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-14 17:25:13 +00:00
|
|
|
if (user_options->hash_mode_chgd == true)
|
|
|
|
{
|
|
|
|
rc_final = outer_loop (hashcat_ctx);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-14 17:25:13 +00:00
|
|
|
if (rc_final == -1) myabort (hashcat_ctx);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (u32 algorithm_pos = 0; algorithm_pos < DEFAULT_BENCHMARK_ALGORITHMS_CNT; algorithm_pos++)
|
|
|
|
{
|
|
|
|
user_options->hash_mode = DEFAULT_BENCHMARK_ALGORITHMS_BUF[algorithm_pos];
|
2016-09-24 11:23:18 +00:00
|
|
|
|
2016-10-14 17:25:13 +00:00
|
|
|
rc_final = outer_loop (hashcat_ctx);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-14 17:25:13 +00:00
|
|
|
if (rc_final == -1) myabort (hashcat_ctx);
|
|
|
|
|
|
|
|
if (status_ctx->run_main_level1 == false) break;
|
|
|
|
}
|
|
|
|
}
|
2016-10-14 19:38:52 +00:00
|
|
|
|
|
|
|
user_options->quiet = false;
|
2016-10-14 17:25:13 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-10-14 19:38:52 +00:00
|
|
|
if (user_options->speed_only == true) user_options->quiet = true;
|
|
|
|
|
2016-10-14 17:25:13 +00:00
|
|
|
rc_final = outer_loop (hashcat_ctx);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-14 17:25:13 +00:00
|
|
|
if (rc_final == -1) myabort (hashcat_ctx);
|
2016-10-14 19:38:52 +00:00
|
|
|
|
|
|
|
if (user_options->speed_only == true) user_options->quiet = false;
|
2016-10-14 17:25:13 +00:00
|
|
|
}
|
2016-06-25 10:05:16 +00:00
|
|
|
|
2016-10-14 17:25:13 +00:00
|
|
|
EVENT (EVENT_OUTERLOOP_FINISHED);
|
|
|
|
|
2016-10-04 09:03:20 +00:00
|
|
|
// if exhausted or cracked, unlink the restore file
|
|
|
|
|
2016-10-06 14:34:30 +00:00
|
|
|
unlink_restore (hashcat_ctx);
|
2016-10-04 09:03:20 +00:00
|
|
|
|
|
|
|
// final update dictionary cache
|
2016-10-03 14:27:34 +00:00
|
|
|
|
2016-10-06 14:55:17 +00:00
|
|
|
dictstat_write (hashcat_ctx);
|
2016-10-03 14:27:34 +00:00
|
|
|
|
2016-10-14 17:25:13 +00:00
|
|
|
// final logfile entry
|
|
|
|
|
2016-10-23 15:31:22 +00:00
|
|
|
const time_t proc_stop = time (NULL);
|
2016-10-14 17:25:13 +00:00
|
|
|
|
2016-10-31 08:19:37 +00:00
|
|
|
logfile_top_uint ((u32) proc_start);
|
|
|
|
logfile_top_uint ((u32) proc_stop);
|
2016-10-14 17:25:13 +00:00
|
|
|
|
|
|
|
logfile_top_msg ("STOP");
|
|
|
|
|
2015-12-04 14:47:52 +00:00
|
|
|
// free memory
|
|
|
|
|
2016-10-14 17:25:13 +00:00
|
|
|
if (rc_final == 0)
|
|
|
|
{
|
|
|
|
if (status_ctx->devices_status == STATUS_ABORTED) rc_final = 2;
|
|
|
|
if (status_ctx->devices_status == STATUS_QUIT) rc_final = 2;
|
|
|
|
if (status_ctx->devices_status == STATUS_EXHAUSTED) rc_final = 1;
|
|
|
|
if (status_ctx->devices_status == STATUS_CRACKED) rc_final = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// done
|
2016-10-07 14:56:44 +00:00
|
|
|
|
2016-10-14 17:25:13 +00:00
|
|
|
return rc_final;
|
2015-12-04 14:47:52 +00:00
|
|
|
}
|
2016-10-16 17:32:43 +00:00
|
|
|
|
|
|
|
int hashcat_session_pause (hashcat_ctx_t *hashcat_ctx)
|
|
|
|
{
|
|
|
|
return SuspendThreads (hashcat_ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
int hashcat_session_resume (hashcat_ctx_t *hashcat_ctx)
|
|
|
|
{
|
|
|
|
return ResumeThreads (hashcat_ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
int hashcat_session_bypass (hashcat_ctx_t *hashcat_ctx)
|
|
|
|
{
|
|
|
|
return bypass (hashcat_ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
int hashcat_session_checkpoint (hashcat_ctx_t *hashcat_ctx)
|
|
|
|
{
|
|
|
|
return stop_at_checkpoint (hashcat_ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
int hashcat_session_quit (hashcat_ctx_t *hashcat_ctx)
|
|
|
|
{
|
|
|
|
return myabort (hashcat_ctx);
|
|
|
|
}
|
|
|
|
|
2016-10-23 15:31:22 +00:00
|
|
|
int hashcat_session_destroy (hashcat_ctx_t *hashcat_ctx)
|
|
|
|
{
|
|
|
|
debugfile_destroy (hashcat_ctx);
|
|
|
|
dictstat_destroy (hashcat_ctx);
|
|
|
|
folder_config_destroy (hashcat_ctx);
|
|
|
|
hwmon_ctx_destroy (hashcat_ctx);
|
|
|
|
induct_ctx_destroy (hashcat_ctx);
|
|
|
|
logfile_destroy (hashcat_ctx);
|
|
|
|
loopback_destroy (hashcat_ctx);
|
|
|
|
opencl_ctx_destroy (hashcat_ctx);
|
|
|
|
opencl_ctx_devices_destroy (hashcat_ctx);
|
|
|
|
outcheck_ctx_destroy (hashcat_ctx);
|
|
|
|
outfile_destroy (hashcat_ctx);
|
|
|
|
potfile_destroy (hashcat_ctx);
|
|
|
|
restore_ctx_destroy (hashcat_ctx);
|
|
|
|
tuning_db_destroy (hashcat_ctx);
|
|
|
|
user_options_destroy (hashcat_ctx);
|
|
|
|
user_options_extra_destroy (hashcat_ctx);
|
|
|
|
status_ctx_destroy (hashcat_ctx);
|
|
|
|
event_ctx_destroy (hashcat_ctx);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-10-16 17:32:43 +00:00
|
|
|
char *hashcat_get_log (hashcat_ctx_t *hashcat_ctx)
|
|
|
|
{
|
|
|
|
event_ctx_t *event_ctx = hashcat_ctx->event_ctx;
|
|
|
|
|
|
|
|
return event_ctx->msg_buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
int hashcat_get_status (hashcat_ctx_t *hashcat_ctx, hashcat_status_t *hashcat_status)
|
|
|
|
{
|
2016-10-17 21:49:44 +00:00
|
|
|
const status_ctx_t *status_ctx = hashcat_ctx->status_ctx;
|
|
|
|
|
2016-10-23 15:31:22 +00:00
|
|
|
memset (hashcat_status, 0, sizeof (hashcat_status_t));
|
|
|
|
|
|
|
|
if (status_ctx == NULL) return -1; // ways too early
|
|
|
|
|
2016-10-29 13:12:45 +00:00
|
|
|
if (status_ctx->accessible == false) return -1; // either too early or too late
|
2016-10-16 17:32:43 +00:00
|
|
|
|
2016-10-17 11:55:55 +00:00
|
|
|
hashcat_status->digests_cnt = status_get_digests_cnt (hashcat_ctx);
|
|
|
|
hashcat_status->digests_done = status_get_digests_done (hashcat_ctx);
|
|
|
|
hashcat_status->digests_percent = status_get_digests_percent (hashcat_ctx);
|
|
|
|
hashcat_status->hash_target = status_get_hash_target (hashcat_ctx);
|
|
|
|
hashcat_status->hash_type = status_get_hash_type (hashcat_ctx);
|
|
|
|
hashcat_status->input_base = status_get_input_base (hashcat_ctx);
|
|
|
|
hashcat_status->input_charset = status_get_input_charset (hashcat_ctx);
|
2016-10-29 20:44:01 +00:00
|
|
|
hashcat_status->input_mask_length = status_get_input_mask_length (hashcat_ctx);
|
2016-10-17 11:55:55 +00:00
|
|
|
hashcat_status->input_mode = status_get_input_mode (hashcat_ctx);
|
|
|
|
hashcat_status->input_mod = status_get_input_mod (hashcat_ctx);
|
|
|
|
hashcat_status->msec_paused = status_get_msec_paused (hashcat_ctx);
|
|
|
|
hashcat_status->msec_running = status_get_msec_running (hashcat_ctx);
|
2016-10-17 13:19:25 +00:00
|
|
|
hashcat_status->msec_real = status_get_msec_real (hashcat_ctx);
|
2016-10-17 14:22:32 +00:00
|
|
|
hashcat_status->progress_mode = status_get_progress_mode (hashcat_ctx);
|
|
|
|
hashcat_status->progress_finished_percent = status_get_progress_finished_percent (hashcat_ctx);
|
2016-10-17 11:55:55 +00:00
|
|
|
hashcat_status->progress_cur_relative_skip = status_get_progress_cur_relative_skip (hashcat_ctx);
|
|
|
|
hashcat_status->progress_cur = status_get_progress_cur (hashcat_ctx);
|
|
|
|
hashcat_status->progress_done = status_get_progress_done (hashcat_ctx);
|
|
|
|
hashcat_status->progress_end_relative_skip = status_get_progress_end_relative_skip (hashcat_ctx);
|
|
|
|
hashcat_status->progress_end = status_get_progress_end (hashcat_ctx);
|
|
|
|
hashcat_status->progress_ignore = status_get_progress_ignore (hashcat_ctx);
|
|
|
|
hashcat_status->progress_rejected = status_get_progress_rejected (hashcat_ctx);
|
2016-10-17 14:22:32 +00:00
|
|
|
hashcat_status->progress_rejected_percent = status_get_progress_rejected_percent (hashcat_ctx);
|
2016-10-17 11:55:55 +00:00
|
|
|
hashcat_status->progress_restored = status_get_progress_restored (hashcat_ctx);
|
|
|
|
hashcat_status->progress_skip = status_get_progress_skip (hashcat_ctx);
|
2016-10-17 12:25:16 +00:00
|
|
|
hashcat_status->restore_point = status_get_restore_point (hashcat_ctx);
|
|
|
|
hashcat_status->restore_total = status_get_restore_total (hashcat_ctx);
|
|
|
|
hashcat_status->restore_percent = status_get_restore_percent (hashcat_ctx);
|
2016-10-17 11:55:55 +00:00
|
|
|
hashcat_status->salts_cnt = status_get_salts_cnt (hashcat_ctx);
|
|
|
|
hashcat_status->salts_done = status_get_salts_done (hashcat_ctx);
|
|
|
|
hashcat_status->salts_percent = status_get_salts_percent (hashcat_ctx);
|
|
|
|
hashcat_status->session = status_get_session (hashcat_ctx);
|
2016-10-17 22:13:40 +00:00
|
|
|
hashcat_status->status_string = status_get_status_string (hashcat_ctx);
|
|
|
|
hashcat_status->status_number = status_get_status_number (hashcat_ctx);
|
2016-10-17 11:55:55 +00:00
|
|
|
hashcat_status->time_estimated_absolute = status_get_time_estimated_absolute (hashcat_ctx);
|
|
|
|
hashcat_status->time_estimated_relative = status_get_time_estimated_relative (hashcat_ctx);
|
|
|
|
hashcat_status->time_started_absolute = status_get_time_started_absolute (hashcat_ctx);
|
|
|
|
hashcat_status->time_started_relative = status_get_time_started_relative (hashcat_ctx);
|
2016-10-17 13:19:25 +00:00
|
|
|
hashcat_status->cpt_cur_min = status_get_cpt_cur_min (hashcat_ctx);
|
|
|
|
hashcat_status->cpt_cur_hour = status_get_cpt_cur_hour (hashcat_ctx);
|
|
|
|
hashcat_status->cpt_cur_day = status_get_cpt_cur_day (hashcat_ctx);
|
|
|
|
hashcat_status->cpt_avg_min = status_get_cpt_avg_min (hashcat_ctx);
|
|
|
|
hashcat_status->cpt_avg_hour = status_get_cpt_avg_hour (hashcat_ctx);
|
|
|
|
hashcat_status->cpt_avg_day = status_get_cpt_avg_day (hashcat_ctx);
|
|
|
|
hashcat_status->cpt = status_get_cpt (hashcat_ctx);
|
|
|
|
|
|
|
|
// multiple devices
|
|
|
|
|
|
|
|
hashcat_status->device_info_cnt = status_get_device_info_cnt (hashcat_ctx);
|
|
|
|
hashcat_status->device_info_active = status_get_device_info_active (hashcat_ctx);
|
|
|
|
|
|
|
|
for (int device_id = 0; device_id < hashcat_status->device_info_cnt; device_id++)
|
|
|
|
{
|
|
|
|
device_info_t *device_info = hashcat_status->device_info_buf + device_id;
|
|
|
|
|
2016-10-17 21:49:44 +00:00
|
|
|
device_info->skipped_dev = status_get_skipped_dev (hashcat_ctx, device_id);
|
|
|
|
device_info->hashes_msec_dev = status_get_hashes_msec_dev (hashcat_ctx, device_id);
|
|
|
|
device_info->hashes_msec_dev_benchmark = status_get_hashes_msec_dev_benchmark (hashcat_ctx, device_id);
|
|
|
|
device_info->exec_msec_dev = status_get_exec_msec_dev (hashcat_ctx, device_id);
|
|
|
|
device_info->speed_sec_dev = status_get_speed_sec_dev (hashcat_ctx, device_id);
|
|
|
|
device_info->input_candidates_dev = status_get_input_candidates_dev (hashcat_ctx, device_id);
|
|
|
|
device_info->hwmon_dev = status_get_hwmon_dev (hashcat_ctx, device_id);
|
2016-10-17 13:19:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
hashcat_status->hashes_msec_all = status_get_hashes_msec_all (hashcat_ctx);
|
|
|
|
hashcat_status->exec_msec_all = status_get_exec_msec_all (hashcat_ctx);
|
|
|
|
hashcat_status->speed_sec_all = status_get_speed_sec_all (hashcat_ctx);
|
2016-10-16 17:32:43 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|