зеркало из https://github.com/microsoft/git.git
url: do not read past end of buffer
url_decode_internal could have been tricked into reading past the length of the **query buffer if there are fewer than 2 characters after a % (in a null-terminated string, % would have to be the last character). Prevent this from happening by checking len before decoding the % sequence. Helped-by: René Scharfe <l.s.r@web.de> Signed-off-by: Matthew DeVore <matvore@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Родитель
aeb582a983
Коммит
3f6b8a6177
2
url.c
2
url.c
|
@ -46,7 +46,7 @@ static char *url_decode_internal(const char **query, int len,
|
|||
break;
|
||||
}
|
||||
|
||||
if (c == '%') {
|
||||
if (c == '%' && (len < 0 || len >= 3)) {
|
||||
int val = hex2chr(q + 1);
|
||||
if (0 <= val) {
|
||||
strbuf_addch(out, val);
|
||||
|
|
Загрузка…
Ссылка в новой задаче