mirror of
https://github.com/hashcat/hashcat.git
synced 2025-07-23 23:18:21 +00:00
Merge pull request #4306 from Chick3nman/json-fix
JSON device_id formatting fix
This commit is contained in:
commit
f199b8238b
@ -72,7 +72,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
|
||||
- Added display of password length mininum and maximum in the Kernel.Feature status line
|
||||
|
||||
|
@ -2838,7 +2838,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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user