UNPKG

@aikidosec/firewall

Version:

Zen by Aikido is an embedded Application Firewall that autonomously protects Node.js apps against common and critical attacks, provides rate limiting, detects malicious traffic (including bots), and more.

31 lines (30 loc) 1.44 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.checkContextForShellInjection = checkContextForShellInjection; const attackPath_1 = require("../../helpers/attackPath"); const extractStringsFromUserInputCached_1 = require("../../helpers/extractStringsFromUserInputCached"); const getSourceForUserString_1 = require("../../helpers/getSourceForUserString"); const detectShellInjection_1 = require("./detectShellInjection"); /** * This function goes over all the different input types in the context and checks * if it's a possible shell Injection, if so the function returns an InterceptorResult */ function checkContextForShellInjection({ command, operation, context, }) { for (const str of (0, extractStringsFromUserInputCached_1.extractStringsFromUserInputCached)(context)) { if ((0, detectShellInjection_1.detectShellInjection)(command, str)) { const source = (0, getSourceForUserString_1.getSourceForUserString)(context, str); if (source) { return { operation: operation, kind: "shell_injection", source: source, pathsToPayload: (0, attackPath_1.getPathsToPayload)(str, context[source]), metadata: { command: command, }, payload: str, }; } } } }