1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-14 11:48:57 +00:00

Merge pull request #3838 from PenguinKeeper7/master

Prevent file-unsafe characters in --session
This commit is contained in:
Jens Steube 2023-08-21 20:59:48 +02:00 committed by GitHub
commit 3c3737ed3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1384,6 +1384,22 @@ int user_options_sanity (hashcat_ctx_t *hashcat_ctx)
}
}
#if defined (_WIN)
char invalid_characters[] = "/<>:\"\\|?*";
#else
char invalid_characters[] = "/";
#endif
for (size_t i = 0; strlen (user_options->session) > i; i++)
{
if (strchr (invalid_characters, user_options->session[i]) != NULL)
{
event_log_error (hashcat_ctx, "Invalid --session value - must not contain invalid characters.");
return -1;
}
}
if (user_options->cpu_affinity != NULL)
{
if (strlen (user_options->cpu_affinity) == 0)