1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-01-16 10:40:58 +00:00

Updated status code: set -10 for autotune failure

This commit is contained in:
Gabriele Gristina 2022-01-21 20:28:13 +01:00
parent 6175459b0a
commit 10fa1434ca
2 changed files with 15 additions and 14 deletions

View File

@ -1,16 +1,17 @@
status codes on exit: status codes on exit:
===================== =====================
-8 = mixed backend errors (combo of -3, -4, -5, -6, -7 errors type) -10 = autotune failure
-7 = backend error: Invalid module_extra_buffer_size -8 = mixed backend errors (combo of -3, -4, -5, -6, -7 errors type)
-6 = backend error: Too many compute units to keep minimum kernel accel limit -7 = backend error: Invalid module_extra_buffer_size
-5 = backend error: main kernel build error -6 = backend error: Too many compute units to keep minimum kernel accel limit
-4 = backend error: memory hit -5 = backend error: main kernel build error
-3 = backend error: skipping hash-type due to module_unstable_warning settings -4 = backend error: memory hit
-2 = gpu-watchdog alarm -3 = backend error: skipping hash-type due to module_unstable_warning settings
-1 = error -2 = gpu-watchdog alarm
0 = OK/cracked -1 = error
1 = exhausted 0 = OK/cracked
2 = aborted 1 = exhausted
3 = aborted by checkpoint 2 = aborted
4 = aborted by runtime 3 = aborted by checkpoint
4 = aborted by runtime

View File

@ -266,7 +266,7 @@ static int inner2_loop (hashcat_ctx_t *hashcat_ctx)
event_log_warning (hashcat_ctx, "You can use --force to override this, but do not report related errors."); event_log_warning (hashcat_ctx, "You can use --force to override this, but do not report related errors.");
event_log_warning (hashcat_ctx, NULL); event_log_warning (hashcat_ctx, NULL);
return -1; return -10;
} }
} }
} }