From 238110cd045fcd42ea6e56883e588b0092140353 Mon Sep 17 00:00:00 2001 From: Chick3nman Date: Thu, 10 Jul 2025 05:39:10 -0500 Subject: [PATCH 1/2] Fix JSON Integer formatting --- src/terminal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/terminal.c b/src/terminal.c index 6a54eb142..3f7b9354f 100644 --- a/src/terminal.c +++ b/src/terminal.c @@ -2632,7 +2632,7 @@ void status_display_status_json (hashcat_ctx_t *hashcat_ctx) printf (","); } - printf (" { \"device_id\": %02u,", device_id + 1); + printf (" { \"device_id\": %u,", device_id + 1); char *device_name_json_encoded = (char *) hcmalloc (strlen (device_info->device_name) * 2); From e4daa498a3ae1a11cc24b7300845fb0e8ff90468 Mon Sep 17 00:00:00 2001 From: Chick3nman Date: Thu, 10 Jul 2025 05:40:47 -0500 Subject: [PATCH 2/2] Fix typo in changes.txt --- docs/changes.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/changes.txt b/docs/changes.txt index de2d26bcd..a22ca8f13 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -70,7 +70,7 @@ - Added new feature (-Y) that creates N virtual instances for each device in your system at the cost of N times the device memory consumption - Added options --benchmark-min and --benchmark-max to set a hash-mode range to be used during the benchmark -- Added option --total-candidates to provide the total candidate count for an attack insteda of the internal "--keyspace" value +- Added option --total-candidates to provide the total candidate count for an attack instead of the internal "--keyspace" value - Added option --backend-devices-keepfree to configure X percentage of device memory available to keep free ##