We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
During my tests, the $secure_link_hmac_expires variable value was overridden by the $secure_link_hmac_token one.
$secure_link_hmac_expires
$secure_link_hmac_token
It might be due to the goto not_found when it is negative:
goto not_found
228 if (expires < 0) { 229 goto not_found; 230 } 231 232 ctx = ngx_pcalloc(r->pool, sizeof(ngx_http_secure_link_ctx_t)); 233 if (ctx == NULL) { 234 return NGX_ERROR; 235 } 236 237 ngx_http_set_ctx(r, ctx, ngx_http_hmac_secure_link_module); 238 239 ctx->expires.len = value.len; 240 ctx->expires.data = value.data;
Or to the initialization issue fixed in this fork else:
area9innovation@6ac01a2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
During my tests, the
$secure_link_hmac_expires
variable value was overridden by the$secure_link_hmac_token
one.It might be due to the
goto not_found
when it is negative:Or to the initialization issue fixed in this fork else:
area9innovation@6ac01a2
The text was updated successfully, but these errors were encountered: