mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-15 12:29:35 +00:00
240 lines
4.2 KiB
C
240 lines
4.2 KiB
C
/**
|
|
* Author......: Jens Steube <jens.steube@gmail.com>
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#ifndef _DATA_H
|
|
#define _DATA_H
|
|
|
|
typedef struct
|
|
{
|
|
/**
|
|
* threads
|
|
*/
|
|
|
|
uint devices_status;
|
|
uint devices_cnt;
|
|
uint devices_active;
|
|
|
|
hc_device_param_t *devices_param;
|
|
|
|
uint shutdown_inner;
|
|
uint shutdown_outer;
|
|
|
|
/**
|
|
* workload specific
|
|
*/
|
|
|
|
uint hardware_power_all;
|
|
uint kernel_power_all;
|
|
u64 kernel_power_final; // we save that so that all divisions are done from the same base
|
|
|
|
/**
|
|
* attack specific
|
|
*/
|
|
|
|
uint wordlist_mode;
|
|
uint hashlist_mode;
|
|
uint hashlist_format;
|
|
|
|
uint attack_mode;
|
|
uint attack_kern;
|
|
|
|
uint kernel_rules_cnt;
|
|
|
|
kernel_rule_t *kernel_rules_buf;
|
|
|
|
uint combs_mode;
|
|
uint combs_cnt;
|
|
|
|
uint bfs_cnt;
|
|
|
|
uint css_cnt;
|
|
cs_t *css_buf;
|
|
|
|
cs_t *root_css_buf;
|
|
cs_t *markov_css_buf;
|
|
|
|
char *rule_buf_l;
|
|
char *rule_buf_r;
|
|
int rule_len_l;
|
|
int rule_len_r;
|
|
|
|
/**
|
|
* opencl library stuff
|
|
*/
|
|
|
|
void *ocl;
|
|
|
|
/**
|
|
* hardware watchdog
|
|
*/
|
|
|
|
#if defined (HAVE_HWMON)
|
|
void *hm_adl;
|
|
void *hm_nvml;
|
|
void *hm_nvapi;
|
|
void *hm_xnvctrl;
|
|
hm_attrs_t hm_device[DEVICES_MAX];
|
|
#endif
|
|
|
|
/**
|
|
* hashes
|
|
*/
|
|
|
|
uint digests_cnt;
|
|
uint digests_done;
|
|
uint digests_saved;
|
|
|
|
void *digests_buf;
|
|
uint *digests_shown;
|
|
uint *digests_shown_tmp;
|
|
|
|
uint salts_cnt;
|
|
uint salts_done;
|
|
|
|
salt_t *salts_buf;
|
|
uint *salts_shown;
|
|
|
|
void *esalts_buf;
|
|
|
|
uint scrypt_tmp_size;
|
|
uint scrypt_tmto_final;
|
|
|
|
/**
|
|
* logging
|
|
*/
|
|
|
|
uint logfile_disable;
|
|
char *logfile;
|
|
char *topid;
|
|
char *subid;
|
|
|
|
/**
|
|
* crack-per-time
|
|
*/
|
|
|
|
cpt_t cpt_buf[CPT_BUF];
|
|
int cpt_pos;
|
|
time_t cpt_start;
|
|
u64 cpt_total;
|
|
|
|
/**
|
|
* user
|
|
*/
|
|
|
|
char *dictfile;
|
|
char *dictfile2;
|
|
char *mask;
|
|
uint maskcnt;
|
|
uint maskpos;
|
|
char *session;
|
|
char *hashfile;
|
|
char *homedir;
|
|
char *install_dir;
|
|
char *profile_dir;
|
|
char *session_dir;
|
|
char *shared_dir;
|
|
char *outfile;
|
|
uint outfile_format;
|
|
uint outfile_autohex;
|
|
uint outfile_check_timer;
|
|
char *eff_restore_file;
|
|
char *new_restore_file;
|
|
char *induction_directory;
|
|
char *outfile_check_directory;
|
|
uint loopback;
|
|
char *loopback_file;
|
|
uint restore;
|
|
uint restore_timer;
|
|
uint restore_disable;
|
|
uint status;
|
|
uint status_timer;
|
|
uint machine_readable;
|
|
uint quiet;
|
|
uint force;
|
|
uint benchmark;
|
|
uint runtime;
|
|
uint remove;
|
|
uint remove_timer;
|
|
uint debug_mode;
|
|
char *debug_file;
|
|
uint hex_charset;
|
|
uint hex_salt;
|
|
uint hex_wordlist;
|
|
uint pw_min;
|
|
uint pw_max;
|
|
uint powertune_enable;
|
|
uint scrypt_tmto;
|
|
uint segment_size;
|
|
char *truecrypt_keyfiles;
|
|
char *veracrypt_keyfiles;
|
|
uint veracrypt_pim;
|
|
uint workload_profile;
|
|
char *custom_charset_1;
|
|
char *custom_charset_2;
|
|
char *custom_charset_3;
|
|
char *custom_charset_4;
|
|
|
|
hashconfig_t *hashconfig;
|
|
|
|
#if defined (HAVE_HWMON)
|
|
uint gpu_temp_disable;
|
|
uint gpu_temp_abort;
|
|
uint gpu_temp_retain;
|
|
#endif
|
|
|
|
char **rp_files;
|
|
uint rp_files_cnt;
|
|
uint rp_gen;
|
|
uint rp_gen_seed;
|
|
|
|
FILE *pot_fp;
|
|
|
|
/**
|
|
* used for restore
|
|
*/
|
|
|
|
u64 skip;
|
|
u64 limit;
|
|
|
|
restore_data_t *rd;
|
|
|
|
u64 checkpoint_cur_words; // used for the "stop at next checkpoint" feature
|
|
|
|
/**
|
|
* status, timer
|
|
*/
|
|
|
|
time_t runtime_start;
|
|
time_t runtime_stop;
|
|
|
|
time_t prepare_time;
|
|
|
|
time_t proc_start;
|
|
time_t proc_stop;
|
|
|
|
u64 words_cnt;
|
|
u64 words_cur;
|
|
u64 words_base;
|
|
|
|
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
|
|
|
|
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
|
|
|
|
/**
|
|
* hash_info and username
|
|
*/
|
|
|
|
hashinfo_t **hash_info;
|
|
uint username;
|
|
|
|
} hc_global_data_t;
|
|
|
|
#endif // _DATA_H
|