1
mirror of https://github.com/hashcat/hashcat synced 2024-11-20 23:27:31 +01:00

added additional check for max. ESSID length to prevent eventual crashes

This commit is contained in:
philsmd 2016-03-09 11:13:41 +01:00
parent 8a448fe9e2
commit 8634bde118

View File

@ -10023,6 +10023,13 @@ int wpa_parse_hash (char *input_buf, uint input_len, hash_t *hash_buf)
uint salt_len = strlen (in.essid);
if (salt_len > 36)
{
log_info ("WARNING: the length of the ESSID is too long. The hccap file may be invalid or corrupted");
return (PARSER_SALT_LENGTH);
}
memcpy (salt->salt_buf, in.essid, salt_len);
salt->salt_len = salt_len;