UNPKG

@aikidosec/firewall

Version:

Zen by Aikido is an embedded Web Application Firewall that autonomously protects Node.js apps against common and critical attacks

12 lines (11 loc) 293 B
import { Token } from "./Token"; export type IPList = { source: string; description: string; ips: string[]; }; export declare function fetchBlockedLists(token: Token): Promise<{ blockedIPAddresses: IPList[]; allowedIPAddresses: IPList[]; blockedUserAgents: string; }>;