File tree 2 files changed +8
-0
lines changed
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 57
57
- Status Code: Add specific return code for self-test fail (-11)
58
58
- SCRYPT: Increase buffer sizes in module for hash mode 8900 to allow longer SCRYPT digests
59
59
- Unicode: Update UTF8 to UTF16 conversion to match RFC 3629
60
+ - User Options: Added error message when mixing --username and --show to warn users of exponential delay
60
61
61
62
* changes v6.2.5 -> v6.2.6
62
63
Original file line number Diff line number Diff line change @@ -1007,6 +1007,13 @@ int user_options_sanity (hashcat_ctx_t *hashcat_ctx)
1007
1007
}
1008
1008
}
1009
1009
1010
+ if ((user_options -> show == true) && (user_options -> username == true))
1011
+ {
1012
+ event_log_error (hashcat_ctx , "Mixing --show with --username can cause exponential delay in output." );
1013
+
1014
+ return 0 ;
1015
+ }
1016
+
1010
1017
if (user_options -> show == true || user_options -> left == true)
1011
1018
{
1012
1019
if (user_options -> remove == true)
You can’t perform that action at this time.
0 commit comments