Skip to content

Commit a1db6d4

Browse files
authored
Merge pull request hashcat#3655 from Chick3nman/show-username
Add error message when mixing --show and --username
2 parents a59e772 + 7e22899 commit a1db6d4

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

docs/changes.txt

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
- Status Code: Add specific return code for self-test fail (-11)
5858
- SCRYPT: Increase buffer sizes in module for hash mode 8900 to allow longer SCRYPT digests
5959
- 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
6061

6162
* changes v6.2.5 -> v6.2.6
6263

src/user_options.c

+7
Original file line numberDiff line numberDiff line change
@@ -1007,6 +1007,13 @@ int user_options_sanity (hashcat_ctx_t *hashcat_ctx)
10071007
}
10081008
}
10091009

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+
10101017
if (user_options->show == true || user_options->left == true)
10111018
{
10121019
if (user_options->remove == true)

0 commit comments

Comments
 (0)