mirror of
https://github.com/hashcat/hashcat
synced 2024-12-09 02:13:10 +01:00
Fix missing TOPID in hashcat.log for user options
This commit is contained in:
parent
7147d659f9
commit
b16c15c151
@ -1014,10 +1014,6 @@ int hashcat_session_execute (hashcat_ctx_t *hashcat_ctx)
|
|||||||
status_ctx_t *status_ctx = hashcat_ctx->status_ctx;
|
status_ctx_t *status_ctx = hashcat_ctx->status_ctx;
|
||||||
user_options_t *user_options = hashcat_ctx->user_options;
|
user_options_t *user_options = hashcat_ctx->user_options;
|
||||||
|
|
||||||
// add all user options to logfile in case we want to debug some user session
|
|
||||||
|
|
||||||
user_options_logger (hashcat_ctx);
|
|
||||||
|
|
||||||
// start logfile entry
|
// start logfile entry
|
||||||
|
|
||||||
const time_t proc_start = time (NULL);
|
const time_t proc_start = time (NULL);
|
||||||
@ -1026,6 +1022,10 @@ int hashcat_session_execute (hashcat_ctx_t *hashcat_ctx)
|
|||||||
|
|
||||||
logfile_top_msg ("START");
|
logfile_top_msg ("START");
|
||||||
|
|
||||||
|
// add all user options to logfile in case we want to debug some user session
|
||||||
|
|
||||||
|
user_options_logger (hashcat_ctx);
|
||||||
|
|
||||||
// read dictionary cache
|
// read dictionary cache
|
||||||
|
|
||||||
dictstat_read (hashcat_ctx);
|
dictstat_read (hashcat_ctx);
|
||||||
|
Loading…
Reference in New Issue
Block a user