2016-09-10 15:35:58 +00:00
|
|
|
/**
|
2016-09-11 20:20:15 +00:00
|
|
|
* Author......: See docs/credits.txt
|
2016-09-10 15:35:58 +00:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
#include "types.h"
|
2016-09-30 10:23:03 +00:00
|
|
|
#include "memory.h"
|
2016-10-09 20:41:55 +00:00
|
|
|
#include "event.h"
|
2016-10-10 11:10:50 +00:00
|
|
|
#include "convert.h"
|
2016-09-10 15:35:58 +00:00
|
|
|
#include "interface.h"
|
2016-09-30 07:25:51 +00:00
|
|
|
#include "hashes.h"
|
2016-10-04 16:30:00 +00:00
|
|
|
#include "mpsp.h"
|
|
|
|
#include "rp.h"
|
|
|
|
#include "rp_kernel_on_cpu.h"
|
2017-08-12 10:11:48 +00:00
|
|
|
#include "rp_kernel_on_cpu_optimized.h"
|
2016-10-04 16:30:00 +00:00
|
|
|
#include "opencl.h"
|
2016-10-31 10:28:06 +00:00
|
|
|
#include "shared.h"
|
2016-09-10 15:35:58 +00:00
|
|
|
#include "outfile.h"
|
2016-11-05 10:33:29 +00:00
|
|
|
#include "locking.h"
|
2016-09-10 15:35:58 +00:00
|
|
|
|
2016-10-15 17:30:57 +00:00
|
|
|
int build_plain (hashcat_ctx_t *hashcat_ctx, hc_device_param_t *device_param, plain_t *plain, u32 *plain_buf, int *out_len)
|
2016-10-04 16:30:00 +00:00
|
|
|
{
|
2016-10-29 20:19:00 +00:00
|
|
|
const combinator_ctx_t *combinator_ctx = hashcat_ctx->combinator_ctx;
|
|
|
|
const hashconfig_t *hashconfig = hashcat_ctx->hashconfig;
|
|
|
|
const hashes_t *hashes = hashcat_ctx->hashes;
|
|
|
|
const mask_ctx_t *mask_ctx = hashcat_ctx->mask_ctx;
|
|
|
|
const straight_ctx_t *straight_ctx = hashcat_ctx->straight_ctx;
|
|
|
|
const user_options_t *user_options = hashcat_ctx->user_options;
|
2016-10-04 16:30:00 +00:00
|
|
|
|
2016-10-29 20:19:00 +00:00
|
|
|
const u32 gidvid = plain->gidvid;
|
|
|
|
const u32 il_pos = plain->il_pos;
|
2016-10-04 16:30:00 +00:00
|
|
|
|
|
|
|
int plain_len = 0;
|
|
|
|
|
|
|
|
u8 *plain_ptr = (u8 *) plain_buf;
|
|
|
|
|
|
|
|
if (user_options->attack_mode == ATTACK_MODE_STRAIGHT)
|
|
|
|
{
|
|
|
|
pw_t pw;
|
|
|
|
|
2016-10-15 17:30:57 +00:00
|
|
|
const int rc = gidd_to_pw_t (hashcat_ctx, device_param, gidvid, &pw);
|
|
|
|
|
|
|
|
if (rc == -1) return -1;
|
2016-10-04 16:30:00 +00:00
|
|
|
|
|
|
|
const u32 off = device_param->innerloop_pos + il_pos;
|
|
|
|
|
2017-08-12 10:11:48 +00:00
|
|
|
if (hashconfig->opti_type & OPTI_TYPE_OPTIMIZED_KERNEL)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < 8; i++)
|
|
|
|
{
|
|
|
|
plain_buf[i] = pw.i[i];
|
|
|
|
}
|
|
|
|
|
2017-11-05 08:52:29 +00:00
|
|
|
plain_len = apply_rules_optimized (straight_ctx->kernel_rules_buf[off].cmds, &plain_buf[0], &plain_buf[4], pw.pw_len);
|
2017-08-12 10:11:48 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-08-12 11:04:52 +00:00
|
|
|
for (int i = 0; i < 64; i++)
|
|
|
|
{
|
|
|
|
plain_buf[i] = pw.i[i];
|
|
|
|
}
|
|
|
|
|
2017-11-05 08:52:29 +00:00
|
|
|
plain_len = apply_rules (straight_ctx->kernel_rules_buf[off].cmds, plain_buf, pw.pw_len);
|
2017-08-12 10:11:48 +00:00
|
|
|
}
|
2016-10-04 16:30:00 +00:00
|
|
|
}
|
|
|
|
else if (user_options->attack_mode == ATTACK_MODE_COMBI)
|
|
|
|
{
|
|
|
|
pw_t pw;
|
|
|
|
|
2016-10-15 17:30:57 +00:00
|
|
|
const int rc = gidd_to_pw_t (hashcat_ctx, device_param, gidvid, &pw);
|
|
|
|
|
|
|
|
if (rc == -1) return -1;
|
2016-10-04 16:30:00 +00:00
|
|
|
|
2017-06-17 15:57:30 +00:00
|
|
|
for (int i = 0; i < 64; i++)
|
2016-10-04 16:30:00 +00:00
|
|
|
{
|
|
|
|
plain_buf[i] = pw.i[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
plain_len = (int) pw.pw_len;
|
|
|
|
|
|
|
|
char *comb_buf = (char *) device_param->combs_buf[il_pos].i;
|
|
|
|
u32 comb_len = device_param->combs_buf[il_pos].pw_len;
|
|
|
|
|
|
|
|
if (combinator_ctx->combs_mode == COMBINATOR_MODE_BASE_LEFT)
|
|
|
|
{
|
|
|
|
memcpy (plain_ptr + plain_len, comb_buf, (size_t) comb_len);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
memmove (plain_ptr + comb_len, plain_ptr, (size_t) plain_len);
|
|
|
|
|
|
|
|
memcpy (plain_ptr, comb_buf, comb_len);
|
|
|
|
}
|
|
|
|
|
2017-06-29 10:19:05 +00:00
|
|
|
plain_len += comb_len;
|
2016-10-04 16:30:00 +00:00
|
|
|
}
|
|
|
|
else if (user_options->attack_mode == ATTACK_MODE_BF)
|
|
|
|
{
|
|
|
|
u64 l_off = device_param->kernel_params_mp_l_buf64[3] + gidvid;
|
|
|
|
u64 r_off = device_param->kernel_params_mp_r_buf64[3] + il_pos;
|
|
|
|
|
|
|
|
u32 l_start = device_param->kernel_params_mp_l_buf32[5];
|
|
|
|
u32 r_start = device_param->kernel_params_mp_r_buf32[5];
|
|
|
|
|
|
|
|
u32 l_stop = device_param->kernel_params_mp_l_buf32[4];
|
|
|
|
u32 r_stop = device_param->kernel_params_mp_r_buf32[4];
|
|
|
|
|
|
|
|
sp_exec (l_off, (char *) plain_ptr + l_start, mask_ctx->root_css_buf, mask_ctx->markov_css_buf, l_start, l_start + l_stop);
|
|
|
|
sp_exec (r_off, (char *) plain_ptr + r_start, mask_ctx->root_css_buf, mask_ctx->markov_css_buf, r_start, r_start + r_stop);
|
|
|
|
|
|
|
|
plain_len = (int) mask_ctx->css_cnt;
|
|
|
|
}
|
|
|
|
else if (user_options->attack_mode == ATTACK_MODE_HYBRID1)
|
|
|
|
{
|
|
|
|
pw_t pw;
|
|
|
|
|
2016-10-15 17:30:57 +00:00
|
|
|
const int rc = gidd_to_pw_t (hashcat_ctx, device_param, gidvid, &pw);
|
|
|
|
|
|
|
|
if (rc == -1) return -1;
|
2016-10-04 16:30:00 +00:00
|
|
|
|
2017-06-17 15:57:30 +00:00
|
|
|
for (int i = 0; i < 64; i++)
|
2016-10-04 16:30:00 +00:00
|
|
|
{
|
|
|
|
plain_buf[i] = pw.i[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
plain_len = (int) pw.pw_len;
|
|
|
|
|
|
|
|
u64 off = device_param->kernel_params_mp_buf64[3] + il_pos;
|
|
|
|
|
|
|
|
u32 start = 0;
|
|
|
|
u32 stop = device_param->kernel_params_mp_buf32[4];
|
|
|
|
|
|
|
|
sp_exec (off, (char *) plain_ptr + plain_len, mask_ctx->root_css_buf, mask_ctx->markov_css_buf, start, start + stop);
|
|
|
|
|
|
|
|
plain_len += start + stop;
|
|
|
|
}
|
|
|
|
else if (user_options->attack_mode == ATTACK_MODE_HYBRID2)
|
|
|
|
{
|
2017-07-18 12:45:15 +00:00
|
|
|
if (hashconfig->opti_type & OPTI_TYPE_OPTIMIZED_KERNEL)
|
2017-06-30 14:51:57 +00:00
|
|
|
{
|
|
|
|
pw_t pw;
|
2016-10-04 16:30:00 +00:00
|
|
|
|
2017-06-30 14:51:57 +00:00
|
|
|
const int rc = gidd_to_pw_t (hashcat_ctx, device_param, gidvid, &pw);
|
2016-10-15 17:30:57 +00:00
|
|
|
|
2017-06-30 14:51:57 +00:00
|
|
|
if (rc == -1) return -1;
|
2016-10-04 16:30:00 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
for (int i = 0; i < 64; i++)
|
|
|
|
{
|
|
|
|
plain_buf[i] = pw.i[i];
|
|
|
|
}
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
plain_len = (int) pw.pw_len;
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
u64 off = device_param->kernel_params_mp_buf64[3] + il_pos;
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
u32 start = 0;
|
|
|
|
u32 stop = device_param->kernel_params_mp_buf32[4];
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
memmove (plain_ptr + stop, plain_ptr, plain_len);
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
sp_exec (off, (char *) plain_ptr, mask_ctx->root_css_buf, mask_ctx->markov_css_buf, start, start + stop);
|
2017-06-30 14:51:57 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
plain_len += start + stop;
|
2016-10-04 16:30:00 +00:00
|
|
|
}
|
2017-06-30 14:51:57 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
pw_t pw;
|
2016-10-04 16:30:00 +00:00
|
|
|
|
2017-06-30 14:51:57 +00:00
|
|
|
const int rc = gidd_to_pw_t (hashcat_ctx, device_param, gidvid, &pw);
|
2016-10-04 16:30:00 +00:00
|
|
|
|
2017-06-30 14:51:57 +00:00
|
|
|
if (rc == -1) return -1;
|
2016-10-04 16:30:00 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
u64 off = device_param->kernel_params_mp_buf64[3] + gidvid;
|
2016-10-04 16:30:00 +00:00
|
|
|
|
2017-06-30 14:51:57 +00:00
|
|
|
u32 start = 0;
|
|
|
|
u32 stop = device_param->kernel_params_mp_buf32[4];
|
2016-10-04 16:30:00 +00:00
|
|
|
|
2017-06-30 14:51:57 +00:00
|
|
|
sp_exec (off, (char *) plain_ptr, mask_ctx->root_css_buf, mask_ctx->markov_css_buf, start, start + stop);
|
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
plain_len = stop;
|
|
|
|
|
|
|
|
char *comb_buf = (char *) device_param->combs_buf[il_pos].i;
|
|
|
|
u32 comb_len = device_param->combs_buf[il_pos].pw_len;
|
|
|
|
|
|
|
|
memcpy (plain_ptr + plain_len, comb_buf, comb_len);
|
|
|
|
|
|
|
|
plain_len += comb_len;
|
2017-06-30 14:51:57 +00:00
|
|
|
}
|
2016-10-04 16:30:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (user_options->attack_mode == ATTACK_MODE_BF)
|
|
|
|
{
|
|
|
|
if (hashconfig->opti_type & OPTI_TYPE_BRUTE_FORCE) // lots of optimizations can happen here
|
|
|
|
{
|
|
|
|
if (hashconfig->opti_type & OPTI_TYPE_SINGLE_HASH)
|
|
|
|
{
|
|
|
|
if (hashconfig->opti_type & OPTI_TYPE_APPENDED_SALT)
|
|
|
|
{
|
|
|
|
plain_len = plain_len - hashes->salts_buf[0].salt_len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-05 10:15:28 +00:00
|
|
|
if (hashconfig->opts_type & OPTS_TYPE_PT_UTF16LE)
|
2016-10-04 16:30:00 +00:00
|
|
|
{
|
|
|
|
for (int i = 0, j = 0; i < plain_len; i += 2, j += 1)
|
|
|
|
{
|
|
|
|
plain_ptr[j] = plain_ptr[i];
|
|
|
|
}
|
|
|
|
|
2017-06-04 20:46:05 +00:00
|
|
|
plain_len = plain_len / 2;
|
|
|
|
}
|
2017-06-05 10:15:28 +00:00
|
|
|
else if (hashconfig->opts_type & OPTS_TYPE_PT_UTF16BE)
|
2017-06-04 20:46:05 +00:00
|
|
|
{
|
|
|
|
for (int i = 1, j = 0; i < plain_len; i += 2, j += 1)
|
|
|
|
{
|
|
|
|
plain_ptr[j] = plain_ptr[i];
|
|
|
|
}
|
|
|
|
|
2016-10-04 16:30:00 +00:00
|
|
|
plain_len = plain_len / 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-22 17:59:46 +00:00
|
|
|
const u32 pw_max = hashconfig_get_pw_max (hashcat_ctx, false);
|
|
|
|
|
|
|
|
if (plain_len > (int) hashconfig->pw_max) plain_len = MIN (plain_len, (int) pw_max);
|
|
|
|
|
2016-10-29 21:11:38 +00:00
|
|
|
plain_ptr[plain_len] = 0;
|
|
|
|
|
2016-10-04 16:30:00 +00:00
|
|
|
*out_len = plain_len;
|
2016-10-15 17:30:57 +00:00
|
|
|
|
|
|
|
return 0;
|
2016-10-04 16:30:00 +00:00
|
|
|
}
|
|
|
|
|
2016-10-15 17:30:57 +00:00
|
|
|
int build_crackpos (hashcat_ctx_t *hashcat_ctx, hc_device_param_t *device_param, plain_t *plain, u64 *out_pos)
|
2016-10-04 16:30:00 +00:00
|
|
|
{
|
2016-10-29 21:11:38 +00:00
|
|
|
const combinator_ctx_t *combinator_ctx = hashcat_ctx->combinator_ctx;
|
|
|
|
const mask_ctx_t *mask_ctx = hashcat_ctx->mask_ctx;
|
|
|
|
const straight_ctx_t *straight_ctx = hashcat_ctx->straight_ctx;
|
|
|
|
const user_options_extra_t *user_options_extra = hashcat_ctx->user_options_extra;
|
2016-10-04 16:30:00 +00:00
|
|
|
|
2016-10-29 21:11:38 +00:00
|
|
|
const u32 gidvid = plain->gidvid;
|
|
|
|
const u32 il_pos = plain->il_pos;
|
2016-10-04 16:30:00 +00:00
|
|
|
|
|
|
|
u64 crackpos = device_param->words_off;
|
|
|
|
|
|
|
|
if (user_options_extra->attack_kern == ATTACK_KERN_STRAIGHT)
|
|
|
|
{
|
|
|
|
crackpos += gidvid;
|
|
|
|
crackpos *= straight_ctx->kernel_rules_cnt;
|
|
|
|
crackpos += device_param->innerloop_pos + il_pos;
|
|
|
|
}
|
|
|
|
else if (user_options_extra->attack_kern == ATTACK_KERN_COMBI)
|
|
|
|
{
|
|
|
|
crackpos += gidvid;
|
|
|
|
crackpos *= combinator_ctx->combs_cnt;
|
|
|
|
crackpos += device_param->innerloop_pos + il_pos;
|
|
|
|
}
|
|
|
|
else if (user_options_extra->attack_kern == ATTACK_MODE_BF)
|
|
|
|
{
|
|
|
|
crackpos += gidvid;
|
|
|
|
crackpos *= mask_ctx->bfs_cnt;
|
|
|
|
crackpos += device_param->innerloop_pos + il_pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
*out_pos = crackpos;
|
2016-10-15 17:30:57 +00:00
|
|
|
|
|
|
|
return 0;
|
2016-10-04 16:30:00 +00:00
|
|
|
}
|
|
|
|
|
2016-10-15 17:30:57 +00:00
|
|
|
int build_debugdata (hashcat_ctx_t *hashcat_ctx, hc_device_param_t *device_param, plain_t *plain, u8 *debug_rule_buf, int *debug_rule_len, u8 *debug_plain_ptr, int *debug_plain_len)
|
2016-10-04 16:30:00 +00:00
|
|
|
{
|
2016-10-29 21:11:38 +00:00
|
|
|
const debugfile_ctx_t *debugfile_ctx = hashcat_ctx->debugfile_ctx;
|
|
|
|
const straight_ctx_t *straight_ctx = hashcat_ctx->straight_ctx;
|
|
|
|
const user_options_t *user_options = hashcat_ctx->user_options;
|
2016-10-04 16:30:00 +00:00
|
|
|
|
2016-10-29 21:11:38 +00:00
|
|
|
const u32 gidvid = plain->gidvid;
|
|
|
|
const u32 il_pos = plain->il_pos;
|
2016-10-04 16:30:00 +00:00
|
|
|
|
2016-10-15 17:30:57 +00:00
|
|
|
if (user_options->attack_mode != ATTACK_MODE_STRAIGHT) return 0;
|
2016-10-04 16:30:00 +00:00
|
|
|
|
|
|
|
const u32 debug_mode = debugfile_ctx->mode;
|
|
|
|
|
2016-10-15 17:30:57 +00:00
|
|
|
if (debug_mode == 0) return 0;
|
2016-10-04 16:30:00 +00:00
|
|
|
|
|
|
|
pw_t pw;
|
|
|
|
|
2016-10-15 17:30:57 +00:00
|
|
|
const int rc = gidd_to_pw_t (hashcat_ctx, device_param, gidvid, &pw);
|
|
|
|
|
|
|
|
if (rc == -1) return -1;
|
2016-10-04 16:30:00 +00:00
|
|
|
|
|
|
|
int plain_len = (int) pw.pw_len;
|
|
|
|
|
|
|
|
const u32 off = device_param->innerloop_pos + il_pos;
|
|
|
|
|
|
|
|
// save rule
|
|
|
|
if ((debug_mode == 1) || (debug_mode == 3) || (debug_mode == 4))
|
|
|
|
{
|
2016-10-29 21:11:38 +00:00
|
|
|
const int len = kernel_rule_to_cpu_rule ((char *) debug_rule_buf, &straight_ctx->kernel_rules_buf[off]);
|
|
|
|
|
|
|
|
debug_rule_buf[len] = 0;
|
|
|
|
|
|
|
|
*debug_rule_len = len;
|
2016-10-04 16:30:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// save plain
|
|
|
|
if ((debug_mode == 2) || (debug_mode == 3) || (debug_mode == 4))
|
|
|
|
{
|
|
|
|
memcpy (debug_plain_ptr, (char *) pw.i, (size_t) plain_len);
|
|
|
|
|
2016-10-29 21:11:38 +00:00
|
|
|
debug_plain_ptr[plain_len] = 0;
|
|
|
|
|
2016-10-04 16:30:00 +00:00
|
|
|
*debug_plain_len = plain_len;
|
|
|
|
}
|
2016-10-15 17:30:57 +00:00
|
|
|
|
|
|
|
return 0;
|
2016-10-04 16:30:00 +00:00
|
|
|
}
|
|
|
|
|
2016-10-06 15:26:15 +00:00
|
|
|
int outfile_init (hashcat_ctx_t *hashcat_ctx)
|
2016-10-06 13:40:27 +00:00
|
|
|
{
|
|
|
|
outfile_ctx_t *outfile_ctx = hashcat_ctx->outfile_ctx;
|
|
|
|
user_options_t *user_options = hashcat_ctx->user_options;
|
|
|
|
|
2016-10-12 09:27:10 +00:00
|
|
|
outfile_ctx->fp = NULL;
|
|
|
|
outfile_ctx->filename = user_options->outfile;
|
2016-10-06 13:40:27 +00:00
|
|
|
outfile_ctx->outfile_format = user_options->outfile_format;
|
|
|
|
outfile_ctx->outfile_autohex = user_options->outfile_autohex;
|
2016-10-06 15:26:15 +00:00
|
|
|
|
|
|
|
return 0;
|
2016-10-06 13:40:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void outfile_destroy (hashcat_ctx_t *hashcat_ctx)
|
|
|
|
{
|
|
|
|
outfile_ctx_t *outfile_ctx = hashcat_ctx->outfile_ctx;
|
|
|
|
|
|
|
|
memset (outfile_ctx, 0, sizeof (outfile_ctx_t));
|
|
|
|
}
|
|
|
|
|
2016-10-06 15:26:15 +00:00
|
|
|
int outfile_write_open (hashcat_ctx_t *hashcat_ctx)
|
2016-09-10 15:35:58 +00:00
|
|
|
{
|
2016-10-06 13:40:27 +00:00
|
|
|
outfile_ctx_t *outfile_ctx = hashcat_ctx->outfile_ctx;
|
|
|
|
|
2016-10-06 15:26:15 +00:00
|
|
|
if (outfile_ctx->filename == NULL) return 0;
|
2016-09-10 15:35:58 +00:00
|
|
|
|
2016-11-20 22:15:54 +00:00
|
|
|
FILE *fp = fopen (outfile_ctx->filename, "ab");
|
2016-09-10 15:35:58 +00:00
|
|
|
|
2016-11-20 22:15:54 +00:00
|
|
|
if (fp == NULL)
|
2016-09-10 15:35:58 +00:00
|
|
|
{
|
2017-02-04 01:53:50 +00:00
|
|
|
event_log_error (hashcat_ctx, "%s: %s", outfile_ctx->filename, strerror (errno));
|
2016-09-10 15:35:58 +00:00
|
|
|
|
2016-10-06 15:26:15 +00:00
|
|
|
return -1;
|
2016-09-10 15:35:58 +00:00
|
|
|
}
|
2016-10-06 15:26:15 +00:00
|
|
|
|
2016-11-20 22:15:54 +00:00
|
|
|
if (lock_file (fp) == -1)
|
2016-11-05 10:33:29 +00:00
|
|
|
{
|
2016-11-20 22:15:54 +00:00
|
|
|
fclose (fp);
|
|
|
|
|
2017-02-04 01:53:50 +00:00
|
|
|
event_log_error (hashcat_ctx, "%s: %s", outfile_ctx->filename, strerror (errno));
|
2016-11-05 10:33:29 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2016-11-20 22:15:54 +00:00
|
|
|
outfile_ctx->fp = fp;
|
|
|
|
|
2016-10-06 15:26:15 +00:00
|
|
|
return 0;
|
2016-09-10 15:35:58 +00:00
|
|
|
}
|
|
|
|
|
2016-10-06 13:40:27 +00:00
|
|
|
void outfile_write_close (hashcat_ctx_t *hashcat_ctx)
|
2016-09-10 15:35:58 +00:00
|
|
|
{
|
2016-10-06 13:40:27 +00:00
|
|
|
outfile_ctx_t *outfile_ctx = hashcat_ctx->outfile_ctx;
|
|
|
|
|
2016-10-12 09:27:10 +00:00
|
|
|
if (outfile_ctx->fp == NULL) return;
|
2016-09-10 15:35:58 +00:00
|
|
|
|
|
|
|
fclose (outfile_ctx->fp);
|
|
|
|
}
|
|
|
|
|
2016-10-12 09:27:10 +00:00
|
|
|
int outfile_write (hashcat_ctx_t *hashcat_ctx, const char *out_buf, const unsigned char *plain_ptr, const u32 plain_len, const u64 crackpos, const unsigned char *username, const u32 user_len, char tmp_buf[HCBUFSIZ_LARGE])
|
2016-09-10 15:35:58 +00:00
|
|
|
{
|
2016-11-04 21:12:25 +00:00
|
|
|
const hashconfig_t *hashconfig = hashcat_ctx->hashconfig;
|
|
|
|
const outfile_ctx_t *outfile_ctx = hashcat_ctx->outfile_ctx;
|
|
|
|
const user_options_t *user_options = hashcat_ctx->user_options;
|
2016-10-06 13:40:27 +00:00
|
|
|
|
2016-10-12 09:27:10 +00:00
|
|
|
int tmp_len = 0;
|
2016-10-10 11:10:50 +00:00
|
|
|
|
2016-10-19 10:42:41 +00:00
|
|
|
if (user_len > 0)
|
|
|
|
{
|
|
|
|
if (username != NULL)
|
|
|
|
{
|
|
|
|
memcpy (tmp_buf + tmp_len, username, user_len);
|
|
|
|
|
|
|
|
tmp_len += user_len;
|
|
|
|
|
|
|
|
if (outfile_ctx->outfile_format & (OUTFILE_FMT_HASH | OUTFILE_FMT_PLAIN | OUTFILE_FMT_HEXPLAIN | OUTFILE_FMT_CRACKPOS))
|
|
|
|
{
|
|
|
|
tmp_buf[tmp_len] = hashconfig->separator;
|
|
|
|
|
|
|
|
tmp_len += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-10 15:35:58 +00:00
|
|
|
if (outfile_ctx->outfile_format & OUTFILE_FMT_HASH)
|
|
|
|
{
|
2016-10-10 11:10:50 +00:00
|
|
|
const size_t out_len = strlen (out_buf);
|
|
|
|
|
|
|
|
memcpy (tmp_buf + tmp_len, out_buf, out_len);
|
|
|
|
|
|
|
|
tmp_len += out_len;
|
2016-09-10 15:35:58 +00:00
|
|
|
|
|
|
|
if (outfile_ctx->outfile_format & (OUTFILE_FMT_PLAIN | OUTFILE_FMT_HEXPLAIN | OUTFILE_FMT_CRACKPOS))
|
|
|
|
{
|
2016-10-10 11:10:50 +00:00
|
|
|
tmp_buf[tmp_len] = hashconfig->separator;
|
|
|
|
|
|
|
|
tmp_len += 1;
|
2016-09-10 15:35:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (outfile_ctx->outfile_format & OUTFILE_FMT_PLAIN)
|
|
|
|
{
|
2017-11-17 09:13:04 +00:00
|
|
|
bool convert_to_hex = false;
|
2016-11-05 12:27:08 +00:00
|
|
|
|
2017-11-17 09:13:04 +00:00
|
|
|
if (user_options->show == false)
|
|
|
|
{
|
|
|
|
if (user_options->outfile_autohex == true)
|
|
|
|
{
|
|
|
|
const bool always_ascii = (hashconfig->hash_type & OPTS_TYPE_PT_ALWAYS_ASCII) ? true : false;
|
|
|
|
|
|
|
|
convert_to_hex = need_hexify (plain_ptr, plain_len, hashconfig->separator, always_ascii);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (convert_to_hex)
|
2016-10-10 11:10:50 +00:00
|
|
|
{
|
|
|
|
tmp_buf[tmp_len++] = '$';
|
|
|
|
tmp_buf[tmp_len++] = 'H';
|
|
|
|
tmp_buf[tmp_len++] = 'E';
|
|
|
|
tmp_buf[tmp_len++] = 'X';
|
|
|
|
tmp_buf[tmp_len++] = '[';
|
|
|
|
|
2017-11-05 20:33:41 +00:00
|
|
|
exec_hexify (plain_ptr, plain_len, (u8 *) tmp_buf + tmp_len);
|
2016-10-10 11:10:50 +00:00
|
|
|
|
|
|
|
tmp_len += plain_len * 2;
|
|
|
|
|
|
|
|
tmp_buf[tmp_len++] = ']';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
memcpy (tmp_buf + tmp_len, plain_ptr, plain_len);
|
|
|
|
|
|
|
|
tmp_len += plain_len;
|
|
|
|
}
|
2016-09-10 15:35:58 +00:00
|
|
|
|
|
|
|
if (outfile_ctx->outfile_format & (OUTFILE_FMT_HEXPLAIN | OUTFILE_FMT_CRACKPOS))
|
|
|
|
{
|
2016-10-10 11:10:50 +00:00
|
|
|
tmp_buf[tmp_len] = hashconfig->separator;
|
|
|
|
|
|
|
|
tmp_len += 1;
|
2016-09-10 15:35:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (outfile_ctx->outfile_format & OUTFILE_FMT_HEXPLAIN)
|
|
|
|
{
|
2017-11-05 20:33:41 +00:00
|
|
|
exec_hexify (plain_ptr, plain_len, (u8 *) tmp_buf + tmp_len);
|
2016-10-10 11:10:50 +00:00
|
|
|
|
2016-12-18 12:11:54 +00:00
|
|
|
tmp_len += plain_len * 2;
|
2016-09-10 15:35:58 +00:00
|
|
|
|
|
|
|
if (outfile_ctx->outfile_format & (OUTFILE_FMT_CRACKPOS))
|
|
|
|
{
|
2016-10-10 11:10:50 +00:00
|
|
|
tmp_buf[tmp_len] = hashconfig->separator;
|
|
|
|
|
|
|
|
tmp_len += 1;
|
2016-09-10 15:35:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (outfile_ctx->outfile_format & OUTFILE_FMT_CRACKPOS)
|
|
|
|
{
|
2017-10-20 10:19:33 +00:00
|
|
|
tmp_len += snprintf (tmp_buf + tmp_len, HCBUFSIZ_LARGE - tmp_len, "%" PRIu64, crackpos);
|
2016-09-10 15:35:58 +00:00
|
|
|
}
|
|
|
|
|
2016-10-10 11:10:50 +00:00
|
|
|
tmp_buf[tmp_len] = 0;
|
|
|
|
|
2016-10-26 11:21:10 +00:00
|
|
|
if (outfile_ctx->fp != NULL)
|
2016-10-12 09:27:10 +00:00
|
|
|
{
|
2017-07-06 08:35:25 +00:00
|
|
|
hc_fwrite (tmp_buf, tmp_len, 1, outfile_ctx->fp);
|
|
|
|
hc_fwrite (EOL, strlen (EOL), 1, outfile_ctx->fp);
|
2016-10-12 09:27:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return tmp_len;
|
2016-09-10 15:35:58 +00:00
|
|
|
}
|