Logfile: Write per-session "recovered new" value to logfile

Fixes https://github.com/hashcat/hashcat/issues/3392
pull/3430/head
Jens Steube 2 years ago
parent a52b70d1c5
commit c884a5d02f

@ -127,6 +127,7 @@
- Modules: New LUKS v1 modules (29511-29543) which do not use `module_hash_binary_parse` to get data from containers anymore (use new tool `tools/luks2hashcat.py`).
- Modules: Renamed old LUKS module into LUKS v1 and added suffix *legacy* (14600).
- Workflow: Added basic workflow for GitHub Actions.
- Logfile: Write per-session "recovered new" value to logfile
* changes v6.2.4 -> v6.2.5

@ -395,6 +395,10 @@ static int inner2_loop (hashcat_ctx_t *hashcat_ctx)
status_ctx->accessible = false;
// update newly cracked hashes per session
logfile_sub_uint (hashes->digests_done_new);
EVENT (EVENT_CRACKER_FINISHED);
// mark sub logfile

@ -2692,6 +2692,8 @@ void hashes_logger (hashcat_ctx_t *hashcat_ctx)
logfile_top_uint (hashes->hashlist_format);
logfile_top_uint (hashes->hashes_cnt);
logfile_top_uint (hashes->digests_cnt);
logfile_top_uint (hashes->digests_done_pot);
logfile_top_uint (hashes->digests_done_zero);
logfile_top_uint (hashes->digests_done);
logfile_top_uint (hashes->salts_cnt);
logfile_top_uint (hashes->salts_done);

Loading…
Cancel
Save