/** * In-memory rate limiter for admin login. * Max 5 attempts per IP per 15 minutes. */ const MAX_ATTEMPTS = 5; const WINDOW_MS = 15 * 60 * 1000; // 15 minutes interface RateLimitEntry { count: number; resetAt: number; } const attempts = new Map(); // Clean up expired entries periodically setInterval(() => { const now = Date.now(); for (const [key, entry] of attempts) { if (entry.resetAt <= now) { attempts.delete(key); } } }, 60_000).unref(); /** * Check if the IP is rate limited. Returns remaining attempts, or 0 if blocked. */ export function checkRateLimit(ip: string): { allowed: boolean; remaining: number; retryAfterMs: number } { const now = Date.now(); const entry = attempts.get(ip); if (!entry || entry.resetAt <= now) { // New window attempts.set(ip, { count: 1, resetAt: now + WINDOW_MS }); return { allowed: true, remaining: MAX_ATTEMPTS - 1, retryAfterMs: 0 }; } if (entry.count >= MAX_ATTEMPTS) { return { allowed: false, remaining: 0, retryAfterMs: entry.resetAt - now }; } entry.count++; return { allowed: true, remaining: MAX_ATTEMPTS - entry.count, retryAfterMs: 0 }; }