Merge pull request #275 from philsmd/master

fixed some parser checks to avoid crashes (-m 5300/5400)
pull/276/head
Jens Steube 8 years ago
commit ee315fb8a1

@ -163,6 +163,10 @@ Type.: Bug
File.: Host
Desc.: Fixed some checks in the parser of -m 1711 = SSHA-512(Base64), LDAP {SSHA512}
Type.: Bug
File.: Host
Desc.: Fixed some checks in the parser of -m 5300 = IKE-PSK MD5 and -m 5400 = IKE-PSK SHA1
* changes v2.00 -> v2.01:
Type.: Bug

@ -12195,6 +12195,8 @@ int ikepsk_md5_parse_hash (char *input_buf, uint input_len, hash_t *hash_buf)
in_off[0] = strtok (input_buf, ":");
if (in_off[0] == NULL) return (PARSER_SEPARATOR_UNMATCHED);
in_len[0] = strlen (in_off[0]);
size_t i;
@ -12280,6 +12282,8 @@ int ikepsk_sha1_parse_hash (char *input_buf, uint input_len, hash_t *hash_buf)
in_off[0] = strtok (input_buf, ":");
if (in_off[0] == NULL) return (PARSER_SEPARATOR_UNMATCHED);
in_len[0] = strlen (in_off[0]);
size_t i;

Loading…
Cancel
Save