SSL: overcame possible buffer over-read in ngx_ssl_error().
It appeared that ERR_error_string_n() cannot handle zero buffer size well enough and causes over-read. The problem has also been fixed in OpenSSL: https://git.openssl.org/?p=openssl.git;h=e5c1361580d8de79682958b04a5f0d262e680f8b
This commit is contained in:
parent
42dca0fee6
commit
5171bbb41a
1 changed files with 3 additions and 1 deletions
|
@ -2137,7 +2137,9 @@ ngx_ssl_error(ngx_uint_t level, ngx_log_t *log, ngx_err_t err, char *fmt, ...)
|
|||
break;
|
||||
}
|
||||
|
||||
if (p >= last) {
|
||||
/* ERR_error_string_n() requires at least one byte */
|
||||
|
||||
if (p >= last - 1) {
|
||||
goto next;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue