]> git.kaiwu.me - nginx.git/commit
The new auth_delay directive for delaying unauthorized requests.
authorRuslan Ermilov <ru@nginx.com>
Tue, 7 Apr 2020 22:02:17 +0000 (01:02 +0300)
committerRuslan Ermilov <ru@nginx.com>
Tue, 7 Apr 2020 22:02:17 +0000 (01:02 +0300)
commitb82c08f6102d65a5e5902e6fa85082e184a75003
treed5b20ceb8275a543c044fe6f2b7747204c45ed41
parent65ae8b315211988a821bdc32050768f41571ddae
The new auth_delay directive for delaying unauthorized requests.

The request processing is delayed by a timer.  Since nginx updates
internal time once at the start of each event loop iteration, this
normally ensures constant time delay, adding a mitigation from
time-based attacks.

A notable exception to this is the case when there are no additional
events before the timer expires.  To ensure constant-time processing
in this case as well, we trigger an additional event loop iteration
by posting a dummy event for the next event loop iteration.
src/http/ngx_http_core_module.c
src/http/ngx_http_core_module.h