mirror of
https://github.com/hashcat/hashcat.git
synced 2025-02-16 17:42:04 +00:00
Merge pull request #3838 from PenguinKeeper7/master
Prevent file-unsafe characters in --session
This commit is contained in:
commit
3c3737ed3e
@ -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 (user_options->cpu_affinity != NULL)
|
||||||
{
|
{
|
||||||
if (strlen (user_options->cpu_affinity) == 0)
|
if (strlen (user_options->cpu_affinity) == 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user