handle "/../" case more reliably
This commit is contained in:
parent
7d0fecc6cb
commit
7e4621bfa3
1 changed files with 9 additions and 5 deletions
|
@ -1134,11 +1134,15 @@ ngx_http_parse_complex_uri(ngx_http_request_t *r, ngx_uint_t merge_slashes)
|
|||
#endif
|
||||
case '/':
|
||||
state = sw_slash;
|
||||
u -= 4;
|
||||
u -= 5;
|
||||
for ( ;; ) {
|
||||
if (u < r->uri.data) {
|
||||
return NGX_HTTP_PARSE_INVALID_REQUEST;
|
||||
}
|
||||
while (*(u - 1) != '/') {
|
||||
if (*u == '/') {
|
||||
u++;
|
||||
break;
|
||||
}
|
||||
u--;
|
||||
}
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue