feat: add cache to block IPs from brute force attempts

This commit is contained in:
2025-07-05 16:09:36 -07:00
parent 42bad8c6c8
commit 4ca9042bcd
5 changed files with 79 additions and 1 deletions

7
server/src/cache/blockedIps.ts vendored Normal file
View File

@ -0,0 +1,7 @@
/**
* @copyright nhcarrigan
* @license Naomi's Public License
* @author Naomi Carrigan
*/
export const blockedIps: Array<{ ip: string; ttl: Date }> = [];