Tech
01/19/2024, 3:11 AMrouting {
rateLimiter(/*name*/) {
authentication {
/*route defs*/
}
}
}
Which is fine however, I want the Rate Limiter to run first before authentication to prevent brute force attacks on the key.
Even if I switch the order authentication runs first.
Is there a way to fix this?Aleksei Tirman [JB]
01/19/2024, 7:04 AMAuthenticationInterceptors
plugin intercepts the route's pipeline in a later phase than the one which is intercepted by the RateLimitInterceptors
plugin.Tech
01/19/2024, 11:17 AMAleksei Tirman [JB]
01/19/2024, 11:32 AMTech
01/19/2024, 11:44 AMAleksei Tirman [JB]
01/19/2024, 3:57 PMTech
01/19/2024, 4:00 PMTech
01/20/2024, 4:35 PMAleksei Tirman [JB]
01/22/2024, 8:06 AMTech
01/23/2024, 12:49 PM