You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rate_limiter.py: INCR then EXPIRE are not atomic; if EXPIRE is lost (Redis reconnect) the counter key persists forever with no TTL, permanently blocking the IP (DoS).
Fix: use INCR with EXPIRE only when TTL is -1, or a single SET ... NX EX command.
rate_limiter.py: INCR then EXPIRE are not atomic; if EXPIRE is lost (Redis reconnect) the counter key persists forever with no TTL, permanently blocking the IP (DoS).
Fix: use INCR with EXPIRE only when TTL is -1, or a single SET ... NX EX command.