bugfix: escapse location in ngx_http_static_module to fix security issuse

pull/611/head
lijunlong 5 years ago
parent dcec858a71
commit cbb6f0f131

@ -1,39 +1,48 @@
diff --git a/src/http/modules/ngx_http_static_module.c b/src/http/modules/ngx_http_static_module.c diff --git a/src/http/modules/ngx_http_static_module.c b/src/http/modules/ngx_http_static_module.c
index 282d6ee..cb5b6c1 100644 index 282d6ee9..e889540d 100644
--- a/src/http/modules/ngx_http_static_module.c --- a/src/http/modules/ngx_http_static_module.c
+++ b/src/http/modules/ngx_http_static_module.c +++ b/src/http/modules/ngx_http_static_module.c
@@ -44,6 +44,20 @@ ngx_module_t ngx_http_static_module = { @@ -58,6 +58,8 @@ ngx_http_static_handler(ngx_http_request_t *r)
NGX_MODULE_V1_PADDING ngx_chain_t out;
}; ngx_open_file_info_t of;
ngx_http_core_loc_conf_t *clcf;
+ u_char *uri;
+ uintptr_t escape;
+static ngx_int_t if (!(r->method & (NGX_HTTP_GET|NGX_HTTP_HEAD|NGX_HTTP_POST))) {
+ngx_http_check_safe_location(u_char *str, size_t len) return NGX_HTTP_NOT_ALLOWED;
+{ @@ -162,9 +164,20 @@ ngx_http_static_handler(ngx_http_request_t *r)
+ u_char ch;
+ size_t i;
+
+ for (i = 0; i < len; i++) {
+ ch = str[i];
+ if (ch <= 31 || ch == 127) {
+ return NGX_ERROR;
+ }
+ }
+ return NGX_OK;
+}
static ngx_int_t *last = '/';
ngx_http_static_handler(ngx_http_request_t *r)
@@ -183,6 +197,13 @@ ngx_http_static_handler(ngx_http_request_t *r) + escape = 2 * ngx_escape_uri(NULL, location, len, NGX_ESCAPE_URI);
+ if (escape > 0) {
+ uri = ngx_pnalloc(r->pool, len + 2 * escape);
+ if (uri == NULL) {
+ return NGX_ERROR;
+ }
+ ngx_escape_uri(uri, location, len, NGX_ESCAPE_URI);
+ location = uri;
+ len += 2 * escape;
+ }
} else {
+ escape = 2 * ngx_escape_uri(NULL, r->uri.data, r->uri.len, NGX_ESCAPE_URI);
if (r->args.len) {
- len += r->args.len + 1;
+ len += r->args.len + 1 + escape;
}
location = ngx_pnalloc(r->pool, len);
@@ -173,7 +186,11 @@ ngx_http_static_handler(ngx_http_request_t *r)
return NGX_HTTP_INTERNAL_SERVER_ERROR;
} }
}
+ if (ngx_http_check_safe_location(location, len) != NGX_OK) { - last = ngx_copy(location, r->uri.data, r->uri.len);
+ ngx_http_clear_location(r); + if (escape > 0) {
+ ngx_log_error(NGX_LOG_ERR, log, NGX_HTTP_INTERNAL_SERVER_ERROR, + last = (u_char *)ngx_escape_uri(location, r->uri.data, r->uri.len, NGX_ESCAPE_URI);
+ "bad uri, control characters are not allowed"); + } else {
+ return NGX_HTTP_INTERNAL_SERVER_ERROR; + last = ngx_copy(location, r->uri.data, r->uri.len);
+ } + }
+
r->headers_out.location->hash = 1; *last = '/';
ngx_str_set(&r->headers_out.location->key, "Location");
r->headers_out.location->value.len = len;

Loading…
Cancel
Save