@aikidosec/firewall
Version:
Zen by Aikido is an embedded Web Application Firewall that autonomously protects Node.js apps against common and critical attacks
3 lines (2 loc) • 333 B
TypeScript
export type Kind = "nosql_injection" | "sql_injection" | "shell_injection" | "path_traversal" | "ssrf" | "code_injection";
export declare function attackKindHumanName(kind: Kind): "a NoSQL injection" | "an SQL injection" | "a shell injection" | "a path traversal attack" | "a server-side request forgery" | "a JavaScript injection";