mirror of
https://github.com/cesanta/mongoose.git
synced 2024-11-28 13:49:01 +08:00
Check HTTP chunk size, ensure it's reasonable
CL: mg: Check HTTP chunk size, ensure it's reasonable PUBLISHED_FROM=d9f6babd314c092b42ce9e7fe31d6b30a38366a2
This commit is contained in:
parent
05c687e251
commit
8b42353039
@ -6311,6 +6311,10 @@ static size_t mg_http_parse_chunk(char *buf, size_t len, char **chunk_data,
|
||||
n *= 16;
|
||||
n += (s[i] >= '0' && s[i] <= '9') ? s[i] - '0' : tolower(s[i]) - 'a' + 10;
|
||||
i++;
|
||||
if (i > 6) {
|
||||
/* Chunk size is unreasonable. */
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
/* Skip new line */
|
||||
|
@ -564,6 +564,10 @@ static size_t mg_http_parse_chunk(char *buf, size_t len, char **chunk_data,
|
||||
n *= 16;
|
||||
n += (s[i] >= '0' && s[i] <= '9') ? s[i] - '0' : tolower(s[i]) - 'a' + 10;
|
||||
i++;
|
||||
if (i > 6) {
|
||||
/* Chunk size is unreasonable. */
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
/* Skip new line */
|
||||
|
Loading…
Reference in New Issue
Block a user