2015-12-04 14:47:52 +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-06 16:44:05 +00:00
|
|
|
#ifndef _TYPES_H
|
|
|
|
#define _TYPES_H
|
2016-09-05 19:47:26 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
2016-09-16 15:01:18 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <string.h>
|
2016-09-05 19:47:26 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
2016-09-16 15:01:18 +00:00
|
|
|
#include <sys/time.h>
|
|
|
|
|
2016-09-29 13:19:12 +00:00
|
|
|
#define CPT_BUF 0x20000
|
|
|
|
#define PARAMCNT 64
|
|
|
|
|
2016-09-16 15:01:18 +00:00
|
|
|
#if defined (_WIN)
|
|
|
|
#include <windows.h>
|
|
|
|
#if defined (_BASETSD_H)
|
|
|
|
#else
|
|
|
|
typedef UINT8 uint8_t;
|
|
|
|
typedef UINT16 uint16_t;
|
|
|
|
typedef UINT32 uint32_t;
|
|
|
|
typedef UINT64 uint64_t;
|
|
|
|
typedef INT8 int8_t;
|
|
|
|
typedef INT16 int16_t;
|
|
|
|
typedef INT32 int32_t;
|
|
|
|
typedef INT64 int64_t;
|
|
|
|
#endif
|
|
|
|
#endif // _WIN
|
|
|
|
|
|
|
|
typedef uint8_t u8;
|
|
|
|
typedef uint16_t u16;
|
|
|
|
typedef uint32_t u32;
|
|
|
|
typedef uint64_t u64;
|
|
|
|
|
|
|
|
#include "ext_OpenCL.h"
|
|
|
|
#include "ext_ADL.h"
|
|
|
|
#include "ext_nvapi.h"
|
|
|
|
#include "ext_nvml.h"
|
|
|
|
#include "ext_xnvctrl.h"
|
|
|
|
|
|
|
|
// timer
|
|
|
|
|
|
|
|
#if defined (_WIN)
|
2016-09-20 11:18:47 +00:00
|
|
|
typedef LARGE_INTEGER hc_timer_t;
|
2016-09-16 15:01:18 +00:00
|
|
|
#elif defined (_POSIX)
|
2016-09-20 11:18:47 +00:00
|
|
|
typedef struct timeval hc_timer_t;
|
2016-09-16 15:01:18 +00:00
|
|
|
#endif
|
|
|
|
|
2016-09-20 11:18:47 +00:00
|
|
|
// thread
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-30 20:52:44 +00:00
|
|
|
#if defined (_POSIX)
|
|
|
|
#include <pthread.h>
|
|
|
|
#endif
|
|
|
|
|
2016-09-20 11:18:47 +00:00
|
|
|
#if defined (_WIN)
|
|
|
|
typedef HANDLE hc_thread_t;
|
|
|
|
typedef CRITICAL_SECTION hc_thread_mutex_t;
|
|
|
|
#elif defined (_POSIX)
|
|
|
|
typedef pthread_t hc_thread_t;
|
|
|
|
typedef pthread_mutex_t hc_thread_mutex_t;
|
|
|
|
#endif
|
|
|
|
|
2016-10-01 12:22:50 +00:00
|
|
|
// stat
|
|
|
|
|
|
|
|
#if defined (_POSIX)
|
|
|
|
typedef struct stat hc_stat;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined (_WIN)
|
|
|
|
#if defined (_MSC_VER)
|
|
|
|
typedef struct _stat64 hc_stat;
|
|
|
|
#else
|
|
|
|
typedef struct stat64 hc_stat;
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2016-09-20 11:18:47 +00:00
|
|
|
// enums
|
2016-09-08 07:21:25 +00:00
|
|
|
|
2016-09-24 10:05:56 +00:00
|
|
|
typedef enum amplifier_count
|
|
|
|
{
|
|
|
|
KERNEL_BFS = 1024,
|
|
|
|
KERNEL_COMBS = 1024,
|
|
|
|
KERNEL_RULES = 1024,
|
|
|
|
KERNEL_THREADS_MAX = 256,
|
|
|
|
KERNEL_THREADS_MAX_CPU = 1
|
|
|
|
|
|
|
|
} amplifier_count_t;
|
|
|
|
|
|
|
|
typedef enum vendor_id
|
|
|
|
{
|
2016-09-30 15:41:40 +00:00
|
|
|
VENDOR_ID_AMD = (1u << 0),
|
|
|
|
VENDOR_ID_APPLE = (1u << 1),
|
|
|
|
VENDOR_ID_INTEL_BEIGNET = (1u << 2),
|
|
|
|
VENDOR_ID_INTEL_SDK = (1u << 3),
|
|
|
|
VENDOR_ID_MESA = (1u << 4),
|
|
|
|
VENDOR_ID_NV = (1u << 5),
|
|
|
|
VENDOR_ID_POCL = (1u << 6),
|
|
|
|
VENDOR_ID_AMD_USE_INTEL = (1u << 7),
|
|
|
|
VENDOR_ID_GENERIC = (1u << 31)
|
2016-09-24 10:05:56 +00:00
|
|
|
|
|
|
|
} vendor_id_t;
|
|
|
|
|
|
|
|
typedef enum status_rc
|
|
|
|
{
|
2016-09-30 15:41:40 +00:00
|
|
|
STATUS_INIT = 0,
|
|
|
|
STATUS_AUTOTUNE = 1,
|
|
|
|
STATUS_RUNNING = 2,
|
|
|
|
STATUS_PAUSED = 3,
|
|
|
|
STATUS_EXHAUSTED = 4,
|
|
|
|
STATUS_CRACKED = 5,
|
|
|
|
STATUS_ABORTED = 6,
|
|
|
|
STATUS_QUIT = 7,
|
|
|
|
STATUS_BYPASS = 8,
|
2016-09-24 10:05:56 +00:00
|
|
|
|
|
|
|
} status_rc_t;
|
|
|
|
|
2016-09-08 07:21:25 +00:00
|
|
|
typedef enum wl_mode
|
|
|
|
{
|
2016-10-02 21:30:31 +00:00
|
|
|
WL_MODE_NONE = 0,
|
2016-09-08 07:21:25 +00:00
|
|
|
WL_MODE_STDIN = 1,
|
|
|
|
WL_MODE_FILE = 2,
|
|
|
|
WL_MODE_MASK = 3
|
|
|
|
|
|
|
|
} wl_mode_t;
|
|
|
|
|
|
|
|
typedef enum hl_mode
|
|
|
|
{
|
|
|
|
HL_MODE_FILE = 4,
|
|
|
|
HL_MODE_ARG = 5
|
|
|
|
|
|
|
|
} hl_mode_t;
|
|
|
|
|
|
|
|
typedef enum attack_mode
|
|
|
|
{
|
|
|
|
ATTACK_MODE_STRAIGHT = 0,
|
|
|
|
ATTACK_MODE_COMBI = 1,
|
|
|
|
ATTACK_MODE_TOGGLE = 2,
|
|
|
|
ATTACK_MODE_BF = 3,
|
|
|
|
ATTACK_MODE_PERM = 4,
|
|
|
|
ATTACK_MODE_TABLE = 5,
|
|
|
|
ATTACK_MODE_HYBRID1 = 6,
|
|
|
|
ATTACK_MODE_HYBRID2 = 7,
|
|
|
|
ATTACK_MODE_NONE = 100
|
|
|
|
|
|
|
|
} attack_mode_t;
|
|
|
|
|
|
|
|
typedef enum attack_kern
|
|
|
|
{
|
|
|
|
ATTACK_KERN_STRAIGHT = 0,
|
|
|
|
ATTACK_KERN_COMBI = 1,
|
|
|
|
ATTACK_KERN_BF = 3,
|
|
|
|
ATTACK_KERN_NONE = 100
|
|
|
|
|
|
|
|
} attack_kern_t;
|
|
|
|
|
|
|
|
typedef enum combinator_mode
|
|
|
|
{
|
|
|
|
COMBINATOR_MODE_BASE_LEFT = 10001,
|
|
|
|
COMBINATOR_MODE_BASE_RIGHT = 10002
|
|
|
|
|
|
|
|
} combinator_mode_t;
|
|
|
|
|
|
|
|
typedef enum kern_run
|
|
|
|
{
|
|
|
|
KERN_RUN_1 = 1000,
|
|
|
|
KERN_RUN_12 = 1500,
|
|
|
|
KERN_RUN_2 = 2000,
|
|
|
|
KERN_RUN_23 = 2500,
|
|
|
|
KERN_RUN_3 = 3000
|
|
|
|
|
|
|
|
} kern_run_t;
|
|
|
|
|
|
|
|
typedef enum kern_run_mp
|
|
|
|
{
|
|
|
|
KERN_RUN_MP = 101,
|
|
|
|
KERN_RUN_MP_L = 102,
|
|
|
|
KERN_RUN_MP_R = 103
|
|
|
|
|
|
|
|
} kern_run_mp_t;
|
|
|
|
|
2016-09-24 09:08:35 +00:00
|
|
|
typedef enum rule_functions
|
|
|
|
{
|
|
|
|
RULE_OP_MANGLE_NOOP = ':',
|
|
|
|
RULE_OP_MANGLE_LREST = 'l',
|
|
|
|
RULE_OP_MANGLE_UREST = 'u',
|
|
|
|
RULE_OP_MANGLE_LREST_UFIRST = 'c',
|
|
|
|
RULE_OP_MANGLE_UREST_LFIRST = 'C',
|
|
|
|
RULE_OP_MANGLE_TREST = 't',
|
|
|
|
RULE_OP_MANGLE_TOGGLE_AT = 'T',
|
|
|
|
RULE_OP_MANGLE_REVERSE = 'r',
|
|
|
|
RULE_OP_MANGLE_DUPEWORD = 'd',
|
|
|
|
RULE_OP_MANGLE_DUPEWORD_TIMES = 'p',
|
|
|
|
RULE_OP_MANGLE_REFLECT = 'f',
|
|
|
|
RULE_OP_MANGLE_ROTATE_LEFT = '{',
|
|
|
|
RULE_OP_MANGLE_ROTATE_RIGHT = '}',
|
|
|
|
RULE_OP_MANGLE_APPEND = '$',
|
|
|
|
RULE_OP_MANGLE_PREPEND = '^',
|
|
|
|
RULE_OP_MANGLE_DELETE_FIRST = '[',
|
|
|
|
RULE_OP_MANGLE_DELETE_LAST = ']',
|
|
|
|
RULE_OP_MANGLE_DELETE_AT = 'D',
|
|
|
|
RULE_OP_MANGLE_EXTRACT = 'x',
|
|
|
|
RULE_OP_MANGLE_OMIT = 'O',
|
|
|
|
RULE_OP_MANGLE_INSERT = 'i',
|
|
|
|
RULE_OP_MANGLE_OVERSTRIKE = 'o',
|
|
|
|
RULE_OP_MANGLE_TRUNCATE_AT = '\'',
|
|
|
|
RULE_OP_MANGLE_REPLACE = 's',
|
|
|
|
RULE_OP_MANGLE_PURGECHAR = '@',
|
|
|
|
RULE_OP_MANGLE_TOGGLECASE_REC = 'a',
|
|
|
|
RULE_OP_MANGLE_DUPECHAR_FIRST = 'z',
|
|
|
|
RULE_OP_MANGLE_DUPECHAR_LAST = 'Z',
|
|
|
|
RULE_OP_MANGLE_DUPECHAR_ALL = 'q',
|
|
|
|
RULE_OP_MANGLE_EXTRACT_MEMORY = 'X',
|
|
|
|
RULE_OP_MANGLE_APPEND_MEMORY = '4',
|
|
|
|
RULE_OP_MANGLE_PREPEND_MEMORY = '6',
|
|
|
|
|
|
|
|
RULE_OP_MEMORIZE_WORD = 'M',
|
|
|
|
|
|
|
|
RULE_OP_REJECT_LESS = '<',
|
|
|
|
RULE_OP_REJECT_GREATER = '>',
|
|
|
|
RULE_OP_REJECT_CONTAIN = '!',
|
|
|
|
RULE_OP_REJECT_NOT_CONTAIN = '/',
|
|
|
|
RULE_OP_REJECT_EQUAL_FIRST = '(',
|
|
|
|
RULE_OP_REJECT_EQUAL_LAST = ')',
|
|
|
|
RULE_OP_REJECT_EQUAL_AT = '=',
|
|
|
|
RULE_OP_REJECT_CONTAINS = '%',
|
|
|
|
RULE_OP_REJECT_MEMORY = 'Q',
|
|
|
|
|
|
|
|
RULE_OP_MANGLE_SWITCH_FIRST = 'k',
|
|
|
|
RULE_OP_MANGLE_SWITCH_LAST = 'K',
|
|
|
|
RULE_OP_MANGLE_SWITCH_AT = '*',
|
|
|
|
RULE_OP_MANGLE_CHR_SHIFTL = 'L',
|
|
|
|
RULE_OP_MANGLE_CHR_SHIFTR = 'R',
|
|
|
|
RULE_OP_MANGLE_CHR_INCR = '+',
|
|
|
|
RULE_OP_MANGLE_CHR_DECR = '-',
|
|
|
|
RULE_OP_MANGLE_REPLACE_NP1 = '.',
|
|
|
|
RULE_OP_MANGLE_REPLACE_NM1 = ',',
|
|
|
|
RULE_OP_MANGLE_DUPEBLOCK_FIRST = 'y',
|
|
|
|
RULE_OP_MANGLE_DUPEBLOCK_LAST = 'Y',
|
|
|
|
RULE_OP_MANGLE_TITLE = 'E',
|
|
|
|
|
|
|
|
} rule_functions_t;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-24 10:05:56 +00:00
|
|
|
typedef enum salt_type
|
|
|
|
{
|
|
|
|
SALT_TYPE_NONE = 1,
|
|
|
|
SALT_TYPE_EMBEDDED = 2,
|
|
|
|
SALT_TYPE_INTERN = 3,
|
|
|
|
SALT_TYPE_EXTERN = 4,
|
|
|
|
SALT_TYPE_VIRTUAL = 5
|
|
|
|
|
|
|
|
} salt_type_t;
|
|
|
|
|
|
|
|
typedef enum opti_type
|
|
|
|
{
|
2016-09-30 15:41:40 +00:00
|
|
|
OPTI_TYPE_ZERO_BYTE = (1u << 1),
|
|
|
|
OPTI_TYPE_PRECOMPUTE_INIT = (1u << 2),
|
|
|
|
OPTI_TYPE_PRECOMPUTE_MERKLE = (1u << 3),
|
|
|
|
OPTI_TYPE_PRECOMPUTE_PERMUT = (1u << 4),
|
|
|
|
OPTI_TYPE_MEET_IN_MIDDLE = (1u << 5),
|
|
|
|
OPTI_TYPE_EARLY_SKIP = (1u << 6),
|
|
|
|
OPTI_TYPE_NOT_SALTED = (1u << 7),
|
|
|
|
OPTI_TYPE_NOT_ITERATED = (1u << 8),
|
|
|
|
OPTI_TYPE_PREPENDED_SALT = (1u << 9),
|
|
|
|
OPTI_TYPE_APPENDED_SALT = (1u << 10),
|
|
|
|
OPTI_TYPE_SINGLE_HASH = (1u << 11),
|
|
|
|
OPTI_TYPE_SINGLE_SALT = (1u << 12),
|
|
|
|
OPTI_TYPE_BRUTE_FORCE = (1u << 13),
|
|
|
|
OPTI_TYPE_RAW_HASH = (1u << 14),
|
|
|
|
OPTI_TYPE_SLOW_HASH_SIMD = (1u << 15),
|
|
|
|
OPTI_TYPE_USES_BITS_8 = (1u << 16),
|
|
|
|
OPTI_TYPE_USES_BITS_16 = (1u << 17),
|
|
|
|
OPTI_TYPE_USES_BITS_32 = (1u << 18),
|
|
|
|
OPTI_TYPE_USES_BITS_64 = (1u << 19)
|
2016-09-24 10:05:56 +00:00
|
|
|
|
|
|
|
} opti_type_t;
|
|
|
|
|
|
|
|
typedef enum opts_type
|
|
|
|
{
|
2016-09-30 15:41:40 +00:00
|
|
|
OPTS_TYPE_PT_UNICODE = (1u << 0),
|
|
|
|
OPTS_TYPE_PT_UPPER = (1u << 1),
|
|
|
|
OPTS_TYPE_PT_LOWER = (1u << 2),
|
|
|
|
OPTS_TYPE_PT_ADD01 = (1u << 3),
|
|
|
|
OPTS_TYPE_PT_ADD02 = (1u << 4),
|
|
|
|
OPTS_TYPE_PT_ADD80 = (1u << 5),
|
|
|
|
OPTS_TYPE_PT_ADDBITS14 = (1u << 6),
|
|
|
|
OPTS_TYPE_PT_ADDBITS15 = (1u << 7),
|
|
|
|
OPTS_TYPE_PT_GENERATE_LE = (1u << 8),
|
|
|
|
OPTS_TYPE_PT_GENERATE_BE = (1u << 9),
|
|
|
|
OPTS_TYPE_PT_NEVERCRACK = (1u << 10), // if we want all possible results
|
|
|
|
OPTS_TYPE_PT_BITSLICE = (1u << 11),
|
|
|
|
OPTS_TYPE_ST_UNICODE = (1u << 12),
|
|
|
|
OPTS_TYPE_ST_UPPER = (1u << 13),
|
|
|
|
OPTS_TYPE_ST_LOWER = (1u << 14),
|
|
|
|
OPTS_TYPE_ST_ADD01 = (1u << 15),
|
|
|
|
OPTS_TYPE_ST_ADD02 = (1u << 16),
|
|
|
|
OPTS_TYPE_ST_ADD80 = (1u << 17),
|
|
|
|
OPTS_TYPE_ST_ADDBITS14 = (1u << 18),
|
|
|
|
OPTS_TYPE_ST_ADDBITS15 = (1u << 19),
|
|
|
|
OPTS_TYPE_ST_GENERATE_LE = (1u << 20),
|
|
|
|
OPTS_TYPE_ST_GENERATE_BE = (1u << 21),
|
|
|
|
OPTS_TYPE_ST_HEX = (1u << 22),
|
|
|
|
OPTS_TYPE_ST_BASE64 = (1u << 23),
|
|
|
|
OPTS_TYPE_HASH_COPY = (1u << 24),
|
|
|
|
OPTS_TYPE_HOOK12 = (1u << 25),
|
|
|
|
OPTS_TYPE_HOOK23 = (1u << 26)
|
2016-09-24 10:05:56 +00:00
|
|
|
|
|
|
|
} opts_type_t;
|
|
|
|
|
|
|
|
typedef enum dgst_size
|
|
|
|
{
|
2016-09-29 12:56:02 +00:00
|
|
|
DGST_SIZE_4_2 = (2 * sizeof (u32)), // 8
|
|
|
|
DGST_SIZE_4_4 = (4 * sizeof (u32)), // 16
|
|
|
|
DGST_SIZE_4_5 = (5 * sizeof (u32)), // 20
|
|
|
|
DGST_SIZE_4_6 = (6 * sizeof (u32)), // 24
|
|
|
|
DGST_SIZE_4_8 = (8 * sizeof (u32)), // 32
|
|
|
|
DGST_SIZE_4_16 = (16 * sizeof (u32)), // 64 !!!
|
|
|
|
DGST_SIZE_4_32 = (32 * sizeof (u32)), // 128 !!!
|
|
|
|
DGST_SIZE_4_64 = (64 * sizeof (u32)), // 256
|
|
|
|
DGST_SIZE_8_8 = (8 * sizeof (u64)), // 64 !!!
|
|
|
|
DGST_SIZE_8_16 = (16 * sizeof (u64)), // 128 !!!
|
|
|
|
DGST_SIZE_8_25 = (25 * sizeof (u64)) // 200
|
2016-09-24 10:05:56 +00:00
|
|
|
|
|
|
|
} dgst_size_t;
|
|
|
|
|
|
|
|
typedef enum attack_exec
|
|
|
|
{
|
|
|
|
ATTACK_EXEC_OUTSIDE_KERNEL = 10,
|
|
|
|
ATTACK_EXEC_INSIDE_KERNEL = 11
|
|
|
|
|
|
|
|
} attack_exec_t;
|
|
|
|
|
2016-09-30 07:34:06 +00:00
|
|
|
typedef enum hlfmt_name
|
|
|
|
{
|
|
|
|
HLFMT_HASHCAT = 0,
|
|
|
|
HLFMT_PWDUMP = 1,
|
|
|
|
HLFMT_PASSWD = 2,
|
|
|
|
HLFMT_SHADOW = 3,
|
|
|
|
HLFMT_DCC = 4,
|
|
|
|
HLFMT_DCC2 = 5,
|
|
|
|
HLFMT_NETNTLM1 = 7,
|
|
|
|
HLFMT_NETNTLM2 = 8,
|
|
|
|
HLFMT_NSLDAP = 9,
|
|
|
|
HLFMT_NSLDAPS = 10
|
|
|
|
|
|
|
|
} hlfmt_name_t;
|
|
|
|
|
|
|
|
typedef enum outfile_fmt
|
|
|
|
{
|
2016-09-30 15:41:40 +00:00
|
|
|
OUTFILE_FMT_HASH = (1u << 0),
|
|
|
|
OUTFILE_FMT_PLAIN = (1u << 1),
|
|
|
|
OUTFILE_FMT_HEXPLAIN = (1u << 2),
|
|
|
|
OUTFILE_FMT_CRACKPOS = (1u << 3)
|
2016-09-30 07:34:06 +00:00
|
|
|
|
|
|
|
} outfile_fmt_t;
|
|
|
|
|
|
|
|
typedef enum parser_rc
|
|
|
|
{
|
|
|
|
PARSER_OK = 0,
|
|
|
|
PARSER_COMMENT = -1,
|
|
|
|
PARSER_GLOBAL_ZERO = -2,
|
|
|
|
PARSER_GLOBAL_LENGTH = -3,
|
|
|
|
PARSER_HASH_LENGTH = -4,
|
|
|
|
PARSER_HASH_VALUE = -5,
|
|
|
|
PARSER_SALT_LENGTH = -6,
|
|
|
|
PARSER_SALT_VALUE = -7,
|
|
|
|
PARSER_SALT_ITERATION = -8,
|
|
|
|
PARSER_SEPARATOR_UNMATCHED = -9,
|
|
|
|
PARSER_SIGNATURE_UNMATCHED = -10,
|
|
|
|
PARSER_HCCAP_FILE_SIZE = -11,
|
|
|
|
PARSER_HCCAP_EAPOL_SIZE = -12,
|
|
|
|
PARSER_PSAFE2_FILE_SIZE = -13,
|
|
|
|
PARSER_PSAFE3_FILE_SIZE = -14,
|
|
|
|
PARSER_TC_FILE_SIZE = -15,
|
|
|
|
PARSER_VC_FILE_SIZE = -16,
|
|
|
|
PARSER_SIP_AUTH_DIRECTIVE = -17,
|
|
|
|
PARSER_UNKNOWN_ERROR = -255
|
|
|
|
|
|
|
|
} parser_rc_t;
|
|
|
|
|
2016-09-06 09:49:26 +00:00
|
|
|
/**
|
2016-09-16 15:01:18 +00:00
|
|
|
* structs
|
2016-09-06 09:49:26 +00:00
|
|
|
*/
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct salt
|
2015-12-04 14:47:52 +00:00
|
|
|
{
|
2016-09-16 15:01:18 +00:00
|
|
|
u32 salt_buf[16];
|
|
|
|
u32 salt_buf_pc[8];
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-16 15:01:18 +00:00
|
|
|
u32 salt_len;
|
|
|
|
u32 salt_iter;
|
|
|
|
u32 salt_sign[2];
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-16 15:01:18 +00:00
|
|
|
u32 keccak_mdlen;
|
|
|
|
u32 truecrypt_mdlen;
|
2016-03-01 17:56:46 +00:00
|
|
|
|
2016-09-16 15:01:18 +00:00
|
|
|
u32 digests_cnt;
|
|
|
|
u32 digests_done;
|
2016-04-02 12:36:02 +00:00
|
|
|
|
2016-09-16 15:01:18 +00:00
|
|
|
u32 digests_offset;
|
2016-04-02 12:36:02 +00:00
|
|
|
|
2016-09-16 15:01:18 +00:00
|
|
|
u32 scrypt_N;
|
|
|
|
u32 scrypt_r;
|
|
|
|
u32 scrypt_p;
|
2016-01-21 16:20:02 +00:00
|
|
|
|
2016-09-06 09:49:26 +00:00
|
|
|
} salt_t;
|
2016-01-21 16:20:02 +00:00
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct user
|
2015-12-04 14:47:52 +00:00
|
|
|
{
|
|
|
|
char *user_name;
|
2016-09-16 15:01:18 +00:00
|
|
|
u32 user_len;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
|
|
|
} user_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct hashinfo
|
2015-12-04 14:47:52 +00:00
|
|
|
{
|
|
|
|
user_t *user;
|
|
|
|
char *orighash;
|
|
|
|
|
|
|
|
} hashinfo_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct hash
|
2015-12-04 14:47:52 +00:00
|
|
|
{
|
|
|
|
void *digest;
|
|
|
|
salt_t *salt;
|
|
|
|
void *esalt;
|
|
|
|
int cracked;
|
|
|
|
hashinfo_t *hash_info;
|
|
|
|
|
|
|
|
} hash_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct outfile_data
|
2016-09-24 09:08:35 +00:00
|
|
|
{
|
|
|
|
char *file_name;
|
|
|
|
long seek;
|
|
|
|
time_t ctime;
|
|
|
|
|
|
|
|
} outfile_data_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct logfile_ctx
|
2016-09-23 19:41:05 +00:00
|
|
|
{
|
|
|
|
bool enabled;
|
|
|
|
|
|
|
|
char *logfile;
|
|
|
|
char *topid;
|
|
|
|
char *subid;
|
|
|
|
|
|
|
|
} logfile_ctx_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct hashes
|
2016-09-16 15:01:18 +00:00
|
|
|
{
|
|
|
|
char *hashfile;
|
|
|
|
|
|
|
|
u32 hashlist_mode;
|
|
|
|
u32 hashlist_format;
|
|
|
|
|
|
|
|
u32 digests_cnt;
|
|
|
|
u32 digests_done;
|
|
|
|
u32 digests_saved;
|
|
|
|
|
|
|
|
void *digests_buf;
|
|
|
|
u32 *digests_shown;
|
|
|
|
u32 *digests_shown_tmp;
|
|
|
|
|
|
|
|
u32 salts_cnt;
|
|
|
|
u32 salts_done;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-16 15:01:18 +00:00
|
|
|
salt_t *salts_buf;
|
|
|
|
u32 *salts_shown;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-16 15:01:18 +00:00
|
|
|
void *esalts_buf;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-16 15:01:18 +00:00
|
|
|
u32 hashes_cnt;
|
|
|
|
hash_t *hashes_buf;
|
|
|
|
|
|
|
|
hashinfo_t **hash_info;
|
|
|
|
|
|
|
|
} hashes_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
struct hashconfig
|
2016-09-16 15:01:18 +00:00
|
|
|
{
|
|
|
|
char separator;
|
|
|
|
|
|
|
|
u32 hash_mode;
|
|
|
|
u32 hash_type;
|
|
|
|
u32 salt_type;
|
|
|
|
u32 attack_exec;
|
|
|
|
u32 opts_type;
|
|
|
|
u32 kern_type;
|
|
|
|
u32 dgst_size;
|
|
|
|
u32 opti_type;
|
|
|
|
u32 dgst_pos0;
|
|
|
|
u32 dgst_pos1;
|
|
|
|
u32 dgst_pos2;
|
|
|
|
u32 dgst_pos3;
|
|
|
|
|
2016-09-28 09:11:14 +00:00
|
|
|
u32 is_salted;
|
|
|
|
u32 esalt_size;
|
|
|
|
u32 tmp_size;
|
|
|
|
u32 hook_size;
|
|
|
|
|
2016-09-28 11:51:00 +00:00
|
|
|
u32 pw_min;
|
|
|
|
u32 pw_max;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
int (*parse_func) (char *, u32, hash_t *, const struct hashconfig *);
|
2016-09-16 15:01:18 +00:00
|
|
|
};
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct hashconfig hashconfig_t;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct pw
|
2015-12-04 14:47:52 +00:00
|
|
|
{
|
2016-02-22 10:57:37 +00:00
|
|
|
u32 i[16];
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-02-22 10:57:37 +00:00
|
|
|
u32 pw_len;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-02-22 10:57:37 +00:00
|
|
|
u32 alignment_placeholder_1;
|
|
|
|
u32 alignment_placeholder_2;
|
|
|
|
u32 alignment_placeholder_3;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
|
|
|
} pw_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct bf
|
2015-12-04 14:47:52 +00:00
|
|
|
{
|
2016-09-16 15:01:18 +00:00
|
|
|
u32 i;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
|
|
|
} bf_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct bs_word
|
2015-12-04 14:47:52 +00:00
|
|
|
{
|
2016-09-16 15:01:18 +00:00
|
|
|
u32 b[32];
|
2015-12-04 14:47:52 +00:00
|
|
|
|
|
|
|
} bs_word_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct comb
|
2015-12-04 14:47:52 +00:00
|
|
|
{
|
2016-09-16 15:01:18 +00:00
|
|
|
u32 i[8];
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-09-16 15:01:18 +00:00
|
|
|
u32 pw_len;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
|
|
|
} comb_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct cpt
|
2015-12-04 14:47:52 +00:00
|
|
|
{
|
2016-09-16 15:01:18 +00:00
|
|
|
u32 cracked;
|
2015-12-04 14:47:52 +00:00
|
|
|
time_t timestamp;
|
|
|
|
|
|
|
|
} cpt_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct plain
|
2015-12-04 14:47:52 +00:00
|
|
|
{
|
2016-09-16 15:01:18 +00:00
|
|
|
u32 salt_pos;
|
|
|
|
u32 digest_pos;
|
|
|
|
u32 hash_pos;
|
|
|
|
u32 gidvid;
|
|
|
|
u32 il_pos;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
|
|
|
} plain_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct wordl
|
2015-12-04 14:47:52 +00:00
|
|
|
{
|
2016-09-16 15:01:18 +00:00
|
|
|
u32 word_buf[16];
|
2015-12-04 14:47:52 +00:00
|
|
|
|
|
|
|
} wordl_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct wordr
|
2015-12-04 14:47:52 +00:00
|
|
|
{
|
2016-09-16 15:01:18 +00:00
|
|
|
u32 word_buf[1];
|
2015-12-04 14:47:52 +00:00
|
|
|
|
|
|
|
} wordr_t;
|
|
|
|
|
2016-10-01 10:33:59 +00:00
|
|
|
typedef struct hc_device_param
|
2016-09-16 15:01:18 +00:00
|
|
|
{
|
|
|
|
cl_device_id device;
|
|
|
|
cl_device_type device_type;
|
|
|
|
|
|
|
|
u32 device_id;
|
|
|
|
u32 platform_devices_id; // for mapping with hms devices
|
|
|
|
|
|
|
|
bool skipped;
|
|
|
|
|
|
|
|
u32 sm_major;
|
|
|
|
u32 sm_minor;
|
|
|
|
u32 kernel_exec_timeout;
|
|
|
|
|
|
|
|
u32 device_processors;
|
|
|
|
u64 device_maxmem_alloc;
|
|
|
|
u64 device_global_mem;
|
|
|
|
u32 device_maxclock_frequency;
|
|
|
|
size_t device_maxworkgroup_size;
|
|
|
|
|
|
|
|
u32 vector_width;
|
|
|
|
|
|
|
|
u32 kernel_threads;
|
|
|
|
u32 kernel_loops;
|
|
|
|
u32 kernel_accel;
|
|
|
|
u32 kernel_loops_min;
|
|
|
|
u32 kernel_loops_max;
|
|
|
|
u32 kernel_accel_min;
|
|
|
|
u32 kernel_accel_max;
|
|
|
|
u32 kernel_power;
|
|
|
|
u32 hardware_power;
|
|
|
|
|
|
|
|
size_t size_pws;
|
|
|
|
size_t size_tmps;
|
|
|
|
size_t size_hooks;
|
|
|
|
size_t size_bfs;
|
|
|
|
size_t size_combs;
|
|
|
|
size_t size_rules;
|
|
|
|
size_t size_rules_c;
|
|
|
|
size_t size_root_css;
|
|
|
|
size_t size_markov_css;
|
|
|
|
size_t size_digests;
|
|
|
|
size_t size_salts;
|
|
|
|
size_t size_shown;
|
|
|
|
size_t size_results;
|
|
|
|
size_t size_plains;
|
|
|
|
|
|
|
|
FILE *combs_fp;
|
|
|
|
comb_t *combs_buf;
|
|
|
|
|
|
|
|
void *hooks_buf;
|
|
|
|
|
|
|
|
pw_t *pws_buf;
|
|
|
|
u32 pws_cnt;
|
|
|
|
|
|
|
|
u64 words_off;
|
|
|
|
u64 words_done;
|
|
|
|
|
|
|
|
u32 outerloop_pos;
|
|
|
|
u32 outerloop_left;
|
|
|
|
|
|
|
|
u32 innerloop_pos;
|
|
|
|
u32 innerloop_left;
|
|
|
|
|
|
|
|
u32 exec_pos;
|
|
|
|
double exec_ms[EXEC_CACHE];
|
|
|
|
|
|
|
|
// workaround cpu spinning
|
|
|
|
|
|
|
|
double exec_us_prev1[EXPECTED_ITERATIONS];
|
|
|
|
double exec_us_prev2[EXPECTED_ITERATIONS];
|
|
|
|
double exec_us_prev3[EXPECTED_ITERATIONS];
|
|
|
|
|
|
|
|
// this is "current" speed
|
|
|
|
|
|
|
|
u32 speed_pos;
|
|
|
|
u64 speed_cnt[SPEED_CACHE];
|
|
|
|
double speed_ms[SPEED_CACHE];
|
|
|
|
|
|
|
|
hc_timer_t timer_speed;
|
|
|
|
|
|
|
|
// device specific attributes starting
|
|
|
|
|
|
|
|
char *device_name;
|
|
|
|
char *device_vendor;
|
|
|
|
char *device_name_chksum;
|
|
|
|
char *device_version;
|
|
|
|
char *driver_version;
|
|
|
|
|
|
|
|
bool opencl_v12;
|
|
|
|
|
|
|
|
double nvidia_spin_damp;
|
|
|
|
|
|
|
|
cl_platform_id platform;
|
|
|
|
|
|
|
|
cl_uint device_vendor_id;
|
|
|
|
cl_uint platform_vendor_id;
|
|
|
|
|
|
|
|
cl_kernel kernel1;
|
|
|
|
cl_kernel kernel12;
|
|
|
|
cl_kernel kernel2;
|
|
|
|
cl_kernel kernel23;
|
|
|
|
cl_kernel kernel3;
|
|
|
|
cl_kernel kernel_mp;
|
|
|
|
cl_kernel kernel_mp_l;
|
|
|
|
cl_kernel kernel_mp_r;
|
|
|
|
cl_kernel kernel_amp;
|
|
|
|
cl_kernel kernel_tm;
|
|
|
|
cl_kernel kernel_weak;
|
|
|
|
cl_kernel kernel_memset;
|
|
|
|
|
|
|
|
cl_context context;
|
|
|
|
|
|
|
|
cl_program program;
|
|
|
|
cl_program program_mp;
|
|
|
|
cl_program program_amp;
|
|
|
|
|
|
|
|
cl_command_queue command_queue;
|
|
|
|
|
|
|
|
cl_mem d_pws_buf;
|
|
|
|
cl_mem d_pws_amp_buf;
|
|
|
|
cl_mem d_words_buf_l;
|
|
|
|
cl_mem d_words_buf_r;
|
|
|
|
cl_mem d_rules;
|
|
|
|
cl_mem d_rules_c;
|
|
|
|
cl_mem d_combs;
|
|
|
|
cl_mem d_combs_c;
|
|
|
|
cl_mem d_bfs;
|
|
|
|
cl_mem d_bfs_c;
|
|
|
|
cl_mem d_tm_c;
|
|
|
|
cl_mem d_bitmap_s1_a;
|
|
|
|
cl_mem d_bitmap_s1_b;
|
|
|
|
cl_mem d_bitmap_s1_c;
|
|
|
|
cl_mem d_bitmap_s1_d;
|
|
|
|
cl_mem d_bitmap_s2_a;
|
|
|
|
cl_mem d_bitmap_s2_b;
|
|
|
|
cl_mem d_bitmap_s2_c;
|
|
|
|
cl_mem d_bitmap_s2_d;
|
|
|
|
cl_mem d_plain_bufs;
|
|
|
|
cl_mem d_digests_buf;
|
|
|
|
cl_mem d_digests_shown;
|
|
|
|
cl_mem d_salt_bufs;
|
|
|
|
cl_mem d_esalt_bufs;
|
|
|
|
cl_mem d_bcrypt_bufs;
|
|
|
|
cl_mem d_tmps;
|
|
|
|
cl_mem d_hooks;
|
|
|
|
cl_mem d_result;
|
|
|
|
cl_mem d_scryptV0_buf;
|
|
|
|
cl_mem d_scryptV1_buf;
|
|
|
|
cl_mem d_scryptV2_buf;
|
|
|
|
cl_mem d_scryptV3_buf;
|
|
|
|
cl_mem d_root_css_buf;
|
|
|
|
cl_mem d_markov_css_buf;
|
|
|
|
|
|
|
|
void *kernel_params[PARAMCNT];
|
|
|
|
void *kernel_params_mp[PARAMCNT];
|
|
|
|
void *kernel_params_mp_r[PARAMCNT];
|
|
|
|
void *kernel_params_mp_l[PARAMCNT];
|
|
|
|
void *kernel_params_amp[PARAMCNT];
|
|
|
|
void *kernel_params_tm[PARAMCNT];
|
|
|
|
void *kernel_params_memset[PARAMCNT];
|
|
|
|
|
|
|
|
u32 kernel_params_buf32[PARAMCNT];
|
|
|
|
|
|
|
|
u32 kernel_params_mp_buf32[PARAMCNT];
|
|
|
|
u64 kernel_params_mp_buf64[PARAMCNT];
|
|
|
|
|
|
|
|
u32 kernel_params_mp_r_buf32[PARAMCNT];
|
|
|
|
u64 kernel_params_mp_r_buf64[PARAMCNT];
|
|
|
|
|
|
|
|
u32 kernel_params_mp_l_buf32[PARAMCNT];
|
|
|
|
u64 kernel_params_mp_l_buf64[PARAMCNT];
|
|
|
|
|
|
|
|
u32 kernel_params_amp_buf32[PARAMCNT];
|
|
|
|
u32 kernel_params_memset_buf32[PARAMCNT];
|
2016-10-01 10:33:59 +00:00
|
|
|
|
|
|
|
} hc_device_param_t;
|
2016-09-16 15:01:18 +00:00
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct opencl_ctx
|
2016-09-16 15:01:18 +00:00
|
|
|
{
|
2016-09-30 10:21:09 +00:00
|
|
|
bool enabled;
|
2016-09-16 15:01:18 +00:00
|
|
|
|
|
|
|
void *ocl;
|
|
|
|
|
2016-09-17 15:05:01 +00:00
|
|
|
cl_uint platforms_cnt;
|
2016-09-16 15:01:18 +00:00
|
|
|
cl_platform_id *platforms;
|
|
|
|
|
2016-09-17 15:05:01 +00:00
|
|
|
cl_uint platform_devices_cnt;
|
2016-09-16 15:01:18 +00:00
|
|
|
cl_device_id *platform_devices;
|
|
|
|
|
|
|
|
u32 devices_cnt;
|
|
|
|
u32 devices_active;
|
|
|
|
|
|
|
|
hc_device_param_t *devices_param;
|
|
|
|
|
2016-09-28 09:49:08 +00:00
|
|
|
u32 hardware_power_all;
|
|
|
|
|
|
|
|
u32 kernel_power_all;
|
|
|
|
u64 kernel_power_final; // we save that so that all divisions are done from the same base
|
|
|
|
|
2016-09-16 15:01:18 +00:00
|
|
|
u32 opencl_platforms_filter;
|
|
|
|
u32 devices_filter;
|
|
|
|
cl_device_type device_types_filter;
|
|
|
|
|
2016-09-21 14:07:49 +00:00
|
|
|
double target_ms;
|
2016-09-16 15:01:18 +00:00
|
|
|
|
|
|
|
int need_adl;
|
|
|
|
int need_nvml;
|
|
|
|
int need_nvapi;
|
|
|
|
int need_xnvctrl;
|
|
|
|
|
2016-09-17 15:05:01 +00:00
|
|
|
int force_jit_compilation;
|
|
|
|
|
2016-09-16 15:01:18 +00:00
|
|
|
} opencl_ctx_t;
|
|
|
|
|
|
|
|
#if defined (__APPLE__)
|
|
|
|
typedef struct cpu_set
|
|
|
|
{
|
|
|
|
u32 count;
|
|
|
|
|
|
|
|
} cpu_set_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* AES context. */
|
|
|
|
typedef struct aes_context
|
|
|
|
{
|
2016-09-30 15:41:40 +00:00
|
|
|
int bits;
|
2016-09-16 15:01:18 +00:00
|
|
|
|
|
|
|
u32 rek[60];
|
|
|
|
u32 rdk[60];
|
|
|
|
|
|
|
|
} aes_context_t;
|
|
|
|
|
|
|
|
typedef aes_context_t aes_ctx;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct debugfile_ctx
|
2016-09-16 15:01:18 +00:00
|
|
|
{
|
2016-09-30 09:48:14 +00:00
|
|
|
bool enabled;
|
|
|
|
|
2016-09-16 15:01:18 +00:00
|
|
|
FILE *fp;
|
|
|
|
char *filename;
|
|
|
|
u32 mode;
|
|
|
|
|
|
|
|
} debugfile_ctx_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct dictstat
|
2016-09-16 15:01:18 +00:00
|
|
|
{
|
|
|
|
u64 cnt;
|
|
|
|
|
|
|
|
#if defined (_POSIX)
|
|
|
|
struct stat stat;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined (_WIN)
|
|
|
|
struct __stat64 stat;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
} dictstat_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct dictstat_ctx
|
2016-09-16 15:01:18 +00:00
|
|
|
{
|
2016-09-24 11:01:17 +00:00
|
|
|
bool enabled;
|
|
|
|
|
2016-09-16 15:01:18 +00:00
|
|
|
char *filename;
|
|
|
|
|
|
|
|
dictstat_t *base;
|
|
|
|
|
|
|
|
#if defined (_POSIX)
|
|
|
|
size_t cnt;
|
|
|
|
#else
|
|
|
|
u32 cnt;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
} dictstat_ctx_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct hm_attrs
|
2016-09-16 15:01:18 +00:00
|
|
|
{
|
|
|
|
HM_ADAPTER_ADL adl;
|
|
|
|
HM_ADAPTER_NVML nvml;
|
|
|
|
HM_ADAPTER_NVAPI nvapi;
|
|
|
|
HM_ADAPTER_XNVCTRL xnvctrl;
|
|
|
|
|
|
|
|
int od_version;
|
|
|
|
|
2016-09-28 20:28:44 +00:00
|
|
|
bool fan_get_supported;
|
|
|
|
bool fan_set_supported;
|
2016-09-16 15:01:18 +00:00
|
|
|
|
|
|
|
} hm_attrs_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct loopback_ctx
|
2016-09-16 15:01:18 +00:00
|
|
|
{
|
2016-09-30 10:07:49 +00:00
|
|
|
bool enabled;
|
|
|
|
|
2016-09-16 15:01:18 +00:00
|
|
|
FILE *fp;
|
|
|
|
char *filename;
|
|
|
|
|
|
|
|
} loopback_ctx_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct cs
|
2016-09-16 15:01:18 +00:00
|
|
|
{
|
|
|
|
u32 cs_buf[0x100];
|
|
|
|
u32 cs_len;
|
|
|
|
|
|
|
|
} cs_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct mf
|
2016-09-27 18:02:12 +00:00
|
|
|
{
|
|
|
|
char mf_buf[0x100];
|
|
|
|
int mf_len;
|
|
|
|
|
|
|
|
} mf_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct hcstat_table
|
2016-09-16 15:01:18 +00:00
|
|
|
{
|
|
|
|
u32 key;
|
|
|
|
u64 val;
|
|
|
|
|
|
|
|
} hcstat_table_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct outfile_ctx
|
2016-09-16 15:01:18 +00:00
|
|
|
{
|
|
|
|
char *filename;
|
|
|
|
|
|
|
|
FILE *fp;
|
|
|
|
|
|
|
|
u32 outfile_format;
|
|
|
|
u32 outfile_autohex;
|
|
|
|
|
|
|
|
} outfile_ctx_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct pot
|
2016-09-16 15:01:18 +00:00
|
|
|
{
|
|
|
|
char plain_buf[HCBUFSIZ_TINY];
|
|
|
|
int plain_len;
|
|
|
|
|
|
|
|
hash_t hash;
|
|
|
|
|
|
|
|
} pot_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct potfile_ctx
|
2016-09-16 15:01:18 +00:00
|
|
|
{
|
2016-09-30 10:37:29 +00:00
|
|
|
bool enabled;
|
2016-09-16 15:01:18 +00:00
|
|
|
|
|
|
|
FILE *fp;
|
|
|
|
char *filename;
|
|
|
|
|
|
|
|
pot_t *pot;
|
|
|
|
|
|
|
|
u32 pot_cnt;
|
|
|
|
u32 pot_avail;
|
|
|
|
u32 pot_hashes_avail;
|
|
|
|
|
|
|
|
} potfile_ctx_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct restore_data
|
2016-09-16 15:01:18 +00:00
|
|
|
{
|
|
|
|
int version;
|
|
|
|
char cwd[256];
|
|
|
|
u32 pid;
|
|
|
|
|
2016-10-02 22:01:37 +00:00
|
|
|
u32 dicts_pos;
|
2016-09-25 23:18:00 +00:00
|
|
|
u32 masks_pos;
|
2016-09-16 15:01:18 +00:00
|
|
|
|
|
|
|
u64 words_cur;
|
|
|
|
|
|
|
|
u32 argc;
|
|
|
|
char **argv;
|
|
|
|
|
|
|
|
} restore_data_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct restore_ctx
|
2016-09-24 23:02:44 +00:00
|
|
|
{
|
|
|
|
bool enabled;
|
|
|
|
|
|
|
|
int argc;
|
|
|
|
char **argv;
|
|
|
|
|
|
|
|
char *eff_restore_file;
|
|
|
|
char *new_restore_file;
|
|
|
|
|
|
|
|
restore_data_t *rd;
|
|
|
|
|
|
|
|
} restore_ctx_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct cpu_rule
|
2016-09-16 15:01:18 +00:00
|
|
|
{
|
|
|
|
u32 len;
|
|
|
|
|
2016-09-22 20:54:20 +00:00
|
|
|
char buf[32];
|
2016-09-16 15:01:18 +00:00
|
|
|
|
|
|
|
} cpu_rule_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct kernel_rule
|
2016-09-16 15:01:18 +00:00
|
|
|
{
|
2016-09-22 20:54:20 +00:00
|
|
|
u32 cmds[32];
|
2016-09-16 15:01:18 +00:00
|
|
|
|
|
|
|
} kernel_rule_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct out
|
2016-09-16 15:01:18 +00:00
|
|
|
{
|
|
|
|
FILE *fp;
|
|
|
|
|
|
|
|
char buf[BUFSIZ];
|
|
|
|
int len;
|
|
|
|
|
|
|
|
} out_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct tuning_db_alias
|
2016-09-16 15:01:18 +00:00
|
|
|
{
|
|
|
|
char *device_name;
|
|
|
|
char *alias_name;
|
|
|
|
|
|
|
|
} tuning_db_alias_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct tuning_db_entry
|
2016-09-16 15:01:18 +00:00
|
|
|
{
|
|
|
|
char *device_name;
|
|
|
|
int attack_mode;
|
|
|
|
int hash_type;
|
|
|
|
int workload_profile;
|
|
|
|
int vector_width;
|
|
|
|
int kernel_accel;
|
|
|
|
int kernel_loops;
|
|
|
|
|
|
|
|
} tuning_db_entry_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct tuning_db
|
2016-09-16 15:01:18 +00:00
|
|
|
{
|
2016-09-30 10:58:06 +00:00
|
|
|
bool enabled;
|
|
|
|
|
2016-09-16 15:01:18 +00:00
|
|
|
tuning_db_alias_t *alias_buf;
|
|
|
|
int alias_cnt;
|
|
|
|
|
|
|
|
tuning_db_entry_t *entry_buf;
|
|
|
|
int entry_cnt;
|
|
|
|
|
|
|
|
} tuning_db_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct wl_data
|
2016-09-16 15:01:18 +00:00
|
|
|
{
|
2016-09-30 11:02:15 +00:00
|
|
|
bool enabled;
|
|
|
|
|
2016-09-16 15:01:18 +00:00
|
|
|
char *buf;
|
2016-09-30 14:43:59 +00:00
|
|
|
u64 incr;
|
|
|
|
u64 avail;
|
|
|
|
u64 cnt;
|
|
|
|
u64 pos;
|
2016-09-16 15:01:18 +00:00
|
|
|
|
2016-09-30 14:43:59 +00:00
|
|
|
void (*func) (char *, u64, u64 *, u64 *);
|
2016-09-22 09:35:08 +00:00
|
|
|
|
2016-09-16 15:01:18 +00:00
|
|
|
} wl_data_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct user_options
|
2016-09-20 14:04:22 +00:00
|
|
|
{
|
2016-09-20 15:04:31 +00:00
|
|
|
bool usage;
|
|
|
|
bool version;
|
|
|
|
bool quiet;
|
|
|
|
bool benchmark;
|
|
|
|
bool stdout_flag;
|
|
|
|
bool show;
|
|
|
|
bool left;
|
|
|
|
bool username;
|
|
|
|
bool remove;
|
|
|
|
u32 remove_timer;
|
|
|
|
u64 skip;
|
|
|
|
u64 limit;
|
|
|
|
bool force;
|
|
|
|
bool keyspace;
|
|
|
|
bool potfile_disable;
|
|
|
|
char *potfile_path;
|
|
|
|
u32 debug_mode;
|
|
|
|
char *debug_file;
|
|
|
|
char *induction_dir;
|
|
|
|
char *outfile_check_dir;
|
|
|
|
u32 runtime;
|
|
|
|
u32 hash_mode;
|
|
|
|
u32 attack_mode;
|
|
|
|
char *outfile;
|
|
|
|
u32 outfile_format;
|
|
|
|
bool outfile_autohex;
|
|
|
|
u32 outfile_check_timer;
|
|
|
|
bool restore;
|
|
|
|
u32 restore_timer;
|
|
|
|
bool restore_disable;
|
|
|
|
bool status;
|
|
|
|
u32 status_timer;
|
|
|
|
bool machine_readable;
|
|
|
|
bool loopback;
|
|
|
|
u32 weak_hash_threshold;
|
|
|
|
char *session;
|
|
|
|
bool hex_charset;
|
|
|
|
bool hex_salt;
|
|
|
|
bool hex_wordlist;
|
|
|
|
u32 rp_gen;
|
|
|
|
u32 rp_gen_func_min;
|
|
|
|
u32 rp_gen_func_max;
|
|
|
|
u32 rp_gen_seed;
|
|
|
|
char *rule_buf_l;
|
|
|
|
char *rule_buf_r;
|
|
|
|
bool increment;
|
|
|
|
u32 increment_min;
|
|
|
|
u32 increment_max;
|
|
|
|
char *cpu_affinity;
|
|
|
|
bool opencl_info;
|
|
|
|
char *opencl_devices;
|
|
|
|
char *opencl_platforms;
|
|
|
|
char *opencl_device_types;
|
|
|
|
u32 opencl_vector_width;
|
|
|
|
char *truecrypt_keyfiles;
|
|
|
|
char *veracrypt_keyfiles;
|
|
|
|
u32 veracrypt_pim;
|
|
|
|
u32 workload_profile;
|
|
|
|
u32 kernel_accel;
|
|
|
|
u32 kernel_loops;
|
|
|
|
u32 nvidia_spin_damp;
|
|
|
|
bool gpu_temp_disable;
|
|
|
|
u32 gpu_temp_abort;
|
|
|
|
u32 gpu_temp_retain;
|
|
|
|
bool powertune_enable;
|
|
|
|
bool logfile_disable;
|
|
|
|
u32 segment_size;
|
|
|
|
u32 scrypt_tmto;
|
|
|
|
char separator;
|
|
|
|
u32 bitmap_min;
|
|
|
|
u32 bitmap_max;
|
|
|
|
bool markov_disable;
|
|
|
|
bool markov_classic;
|
|
|
|
u32 markov_threshold;
|
|
|
|
char *markov_hcstat;
|
|
|
|
char *custom_charset_1;
|
|
|
|
char *custom_charset_2;
|
|
|
|
char *custom_charset_3;
|
|
|
|
char *custom_charset_4;
|
|
|
|
u32 rp_files_cnt;
|
|
|
|
char **rp_files;
|
|
|
|
|
|
|
|
bool attack_mode_chgd;
|
|
|
|
bool hash_mode_chgd;
|
|
|
|
bool increment_max_chgd;
|
|
|
|
bool increment_min_chgd;
|
|
|
|
bool kernel_accel_chgd;
|
|
|
|
bool kernel_loops_chgd;
|
|
|
|
bool nvidia_spin_damp_chgd;
|
|
|
|
bool opencl_vector_width_chgd;
|
|
|
|
bool outfile_format_chgd;
|
|
|
|
bool remove_timer_chgd;
|
|
|
|
bool rp_gen_seed_chgd;
|
|
|
|
bool runtime_chgd;
|
|
|
|
bool workload_profile_chgd;
|
2016-09-21 20:07:10 +00:00
|
|
|
bool segment_size_chgd;
|
2016-09-20 14:04:22 +00:00
|
|
|
|
2016-10-02 21:30:31 +00:00
|
|
|
char *hc_bin;
|
|
|
|
|
|
|
|
int hc_argc;
|
|
|
|
char **hc_argv;
|
|
|
|
|
2016-09-20 14:04:22 +00:00
|
|
|
} user_options_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct user_options_extra
|
2016-09-21 09:09:12 +00:00
|
|
|
{
|
|
|
|
u32 attack_kern;
|
2016-09-21 14:07:49 +00:00
|
|
|
|
|
|
|
u32 rule_len_r;
|
|
|
|
u32 rule_len_l;
|
|
|
|
|
2016-09-21 14:25:36 +00:00
|
|
|
u32 wordlist_mode;
|
|
|
|
|
2016-10-02 21:30:31 +00:00
|
|
|
char *hc_hash; // can be filename or string
|
|
|
|
|
|
|
|
int hc_workc; // can be 0 in bf-mode = default mask
|
|
|
|
char **hc_workv;
|
2016-09-21 09:09:12 +00:00
|
|
|
|
|
|
|
} user_options_extra_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct bitmap_ctx
|
2016-09-22 14:23:36 +00:00
|
|
|
{
|
2016-09-30 09:48:14 +00:00
|
|
|
bool enabled;
|
|
|
|
|
2016-09-22 14:23:36 +00:00
|
|
|
u32 bitmap_bits;
|
|
|
|
u32 bitmap_nums;
|
|
|
|
u32 bitmap_size;
|
|
|
|
u32 bitmap_mask;
|
|
|
|
u32 bitmap_shift1;
|
|
|
|
u32 bitmap_shift2;
|
|
|
|
|
|
|
|
u32 *bitmap_s1_a;
|
|
|
|
u32 *bitmap_s1_b;
|
|
|
|
u32 *bitmap_s1_c;
|
|
|
|
u32 *bitmap_s1_d;
|
|
|
|
u32 *bitmap_s2_a;
|
|
|
|
u32 *bitmap_s2_b;
|
|
|
|
u32 *bitmap_s2_c;
|
|
|
|
u32 *bitmap_s2_d;
|
|
|
|
|
|
|
|
} bitmap_ctx_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct folder_config
|
2016-09-21 21:06:11 +00:00
|
|
|
{
|
|
|
|
char *cwd;
|
|
|
|
char *install_dir;
|
|
|
|
char *profile_dir;
|
|
|
|
char *session_dir;
|
|
|
|
char *shared_dir;
|
|
|
|
char *cpath_real;
|
|
|
|
|
|
|
|
} folder_config_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct induct_ctx
|
2016-09-22 15:06:53 +00:00
|
|
|
{
|
|
|
|
bool enabled;
|
|
|
|
|
|
|
|
char *root_directory;
|
|
|
|
|
|
|
|
char **induction_dictionaries;
|
|
|
|
int induction_dictionaries_cnt;
|
2016-09-29 12:46:51 +00:00
|
|
|
int induction_dictionaries_pos;
|
2016-09-22 15:06:53 +00:00
|
|
|
|
|
|
|
} induct_ctx_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct outcheck_ctx
|
2016-09-27 11:13:07 +00:00
|
|
|
{
|
|
|
|
bool enabled;
|
|
|
|
|
|
|
|
char *root_directory;
|
|
|
|
|
|
|
|
} outcheck_ctx_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct straight_ctx
|
2016-09-27 11:13:07 +00:00
|
|
|
{
|
|
|
|
bool enabled;
|
|
|
|
|
|
|
|
u32 kernel_rules_cnt;
|
|
|
|
kernel_rule_t *kernel_rules_buf;
|
|
|
|
|
2016-09-29 12:46:51 +00:00
|
|
|
char **dicts;
|
|
|
|
u32 dicts_pos;
|
|
|
|
u32 dicts_cnt;
|
|
|
|
u32 dicts_avail;
|
|
|
|
|
|
|
|
char *dict;
|
|
|
|
|
2016-09-27 11:13:07 +00:00
|
|
|
} straight_ctx_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct combinator_ctx
|
2016-09-27 16:32:09 +00:00
|
|
|
{
|
|
|
|
bool enabled;
|
|
|
|
|
2016-10-05 13:41:56 +00:00
|
|
|
char *scratch_buf;
|
|
|
|
|
2016-09-29 12:46:51 +00:00
|
|
|
char *dict1;
|
|
|
|
char *dict2;
|
2016-09-27 16:32:09 +00:00
|
|
|
|
|
|
|
u32 combs_mode;
|
|
|
|
u32 combs_cnt;
|
|
|
|
|
|
|
|
} combinator_ctx_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct mask_ctx
|
2016-09-25 23:18:00 +00:00
|
|
|
{
|
2016-09-26 13:11:46 +00:00
|
|
|
bool enabled;
|
|
|
|
|
2016-09-25 23:18:00 +00:00
|
|
|
cs_t mp_sys[6];
|
|
|
|
cs_t mp_usr[4];
|
|
|
|
|
2016-09-26 15:50:47 +00:00
|
|
|
u64 bfs_cnt;
|
2016-09-25 23:18:00 +00:00
|
|
|
|
|
|
|
cs_t *css_buf;
|
|
|
|
u32 css_cnt;
|
|
|
|
|
|
|
|
hcstat_table_t *root_table_buf;
|
|
|
|
hcstat_table_t *markov_table_buf;
|
|
|
|
|
|
|
|
cs_t *root_css_buf;
|
|
|
|
cs_t *markov_css_buf;
|
|
|
|
|
|
|
|
bool mask_from_file;
|
|
|
|
|
|
|
|
char **masks;
|
|
|
|
u32 masks_pos;
|
|
|
|
u32 masks_cnt;
|
|
|
|
u32 masks_avail;
|
|
|
|
|
|
|
|
char *mask;
|
|
|
|
|
2016-09-27 18:02:12 +00:00
|
|
|
mf_t *mfs;
|
|
|
|
|
2016-09-25 23:18:00 +00:00
|
|
|
} mask_ctx_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct hwmon_ctx
|
2016-09-28 13:26:56 +00:00
|
|
|
{
|
|
|
|
bool enabled;
|
|
|
|
|
|
|
|
void *hm_adl;
|
|
|
|
void *hm_nvml;
|
|
|
|
void *hm_nvapi;
|
|
|
|
void *hm_xnvctrl;
|
|
|
|
|
|
|
|
hm_attrs_t *hm_device;
|
|
|
|
|
2016-09-28 20:28:44 +00:00
|
|
|
ADLOD6MemClockState *od_clock_mem_status;
|
|
|
|
int *od_power_control_status;
|
|
|
|
unsigned int *nvml_power_limit;
|
|
|
|
|
2016-09-28 13:26:56 +00:00
|
|
|
} hwmon_ctx_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct cpt_ctx
|
2016-09-29 13:19:12 +00:00
|
|
|
{
|
2016-09-30 09:48:14 +00:00
|
|
|
bool enabled;
|
|
|
|
|
2016-09-29 13:19:12 +00:00
|
|
|
cpt_t *cpt_buf;
|
|
|
|
int cpt_pos;
|
|
|
|
time_t cpt_start;
|
|
|
|
u64 cpt_total;
|
|
|
|
|
|
|
|
} cpt_ctx_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct status_ctx
|
2016-09-29 20:27:04 +00:00
|
|
|
{
|
2016-09-29 21:49:33 +00:00
|
|
|
/**
|
|
|
|
* main status
|
|
|
|
*/
|
|
|
|
|
2016-09-29 21:25:29 +00:00
|
|
|
u32 devices_status;
|
|
|
|
|
2016-09-29 21:49:33 +00:00
|
|
|
/**
|
|
|
|
* thread control
|
|
|
|
*/
|
|
|
|
|
2016-09-29 21:25:29 +00:00
|
|
|
bool run_main_level1;
|
|
|
|
bool run_main_level2;
|
|
|
|
bool run_main_level3;
|
|
|
|
bool run_thread_level1;
|
|
|
|
bool run_thread_level2;
|
|
|
|
|
2016-09-29 21:49:33 +00:00
|
|
|
bool shutdown_inner;
|
|
|
|
bool shutdown_outer;
|
|
|
|
|
|
|
|
hc_thread_mutex_t mux_dispatcher;
|
|
|
|
hc_thread_mutex_t mux_counter;
|
|
|
|
hc_thread_mutex_t mux_hwmon;
|
|
|
|
hc_thread_mutex_t mux_display;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* workload
|
|
|
|
*/
|
|
|
|
|
|
|
|
u64 words_cnt;
|
|
|
|
u64 words_cur;
|
|
|
|
u64 words_base;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* progress
|
|
|
|
*/
|
|
|
|
|
2016-09-29 20:27:04 +00:00
|
|
|
u64 *words_progress_done; // progress number of words done per salt
|
|
|
|
u64 *words_progress_rejected; // progress number of words rejected per salt
|
|
|
|
u64 *words_progress_restored; // progress number of words restored per salt
|
|
|
|
|
2016-09-29 21:49:33 +00:00
|
|
|
/**
|
|
|
|
* timer
|
|
|
|
*/
|
|
|
|
|
|
|
|
time_t runtime_start;
|
|
|
|
time_t runtime_stop;
|
|
|
|
|
|
|
|
time_t prepare_start;
|
|
|
|
time_t prepare_time;
|
|
|
|
|
|
|
|
time_t proc_start;
|
|
|
|
time_t proc_stop;
|
|
|
|
|
|
|
|
hc_timer_t timer_running; // timer on current dict
|
|
|
|
hc_timer_t timer_paused; // timer on current dict
|
|
|
|
|
|
|
|
double ms_paused; // timer on current dict
|
|
|
|
|
2016-09-29 20:27:04 +00:00
|
|
|
} status_ctx_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct hashcat_ctx
|
2016-09-16 15:01:18 +00:00
|
|
|
{
|
2016-09-28 09:55:02 +00:00
|
|
|
bitmap_ctx_t *bitmap_ctx;
|
|
|
|
combinator_ctx_t *combinator_ctx;
|
2016-09-29 13:19:12 +00:00
|
|
|
cpt_ctx_t *cpt_ctx;
|
2016-09-28 09:55:02 +00:00
|
|
|
debugfile_ctx_t *debugfile_ctx;
|
2016-09-30 20:52:44 +00:00
|
|
|
dictstat_ctx_t *dictstat_ctx;
|
|
|
|
folder_config_t *folder_config;
|
2016-09-28 09:55:02 +00:00
|
|
|
hashconfig_t *hashconfig;
|
|
|
|
hashes_t *hashes;
|
2016-09-28 13:26:56 +00:00
|
|
|
hwmon_ctx_t *hwmon_ctx;
|
2016-09-28 09:55:02 +00:00
|
|
|
induct_ctx_t *induct_ctx;
|
|
|
|
logfile_ctx_t *logfile_ctx;
|
|
|
|
loopback_ctx_t *loopback_ctx;
|
|
|
|
mask_ctx_t *mask_ctx;
|
|
|
|
opencl_ctx_t *opencl_ctx;
|
|
|
|
outcheck_ctx_t *outcheck_ctx;
|
|
|
|
outfile_ctx_t *outfile_ctx;
|
|
|
|
potfile_ctx_t *potfile_ctx;
|
|
|
|
restore_ctx_t *restore_ctx;
|
2016-09-29 20:27:04 +00:00
|
|
|
status_ctx_t *status_ctx;
|
2016-09-28 09:55:02 +00:00
|
|
|
straight_ctx_t *straight_ctx;
|
2016-09-30 10:58:06 +00:00
|
|
|
tuning_db_t *tuning_db;
|
2016-09-28 09:55:02 +00:00
|
|
|
user_options_extra_t *user_options_extra;
|
|
|
|
user_options_t *user_options;
|
2016-09-30 20:52:44 +00:00
|
|
|
wl_data_t *wl_data;
|
|
|
|
|
|
|
|
} hashcat_ctx_t;
|
|
|
|
|
2016-10-01 09:54:00 +00:00
|
|
|
typedef struct thread_param
|
2016-09-30 20:52:44 +00:00
|
|
|
{
|
|
|
|
u32 tid;
|
|
|
|
|
|
|
|
hashcat_ctx_t *hashcat_ctx;
|
2016-09-28 09:55:02 +00:00
|
|
|
|
2016-09-30 20:52:44 +00:00
|
|
|
} thread_param_t;
|
2016-09-16 15:01:18 +00:00
|
|
|
|
2016-09-06 16:44:05 +00:00
|
|
|
#endif // _TYPES_H
|