mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-27 20:29:39 +02:00
9 lines
236 B
JavaScript
9 lines
236 B
JavaScript
const { execSync } = require('child_process');
|
|||
|
|||
function dispatch(cmdParam, urlParam) {
|
|||
execSync(cmdParam); // param 0 -> SHELL_ESCAPE sink
|
|||
fetch(urlParam); // param 1 -> SSRF sink
|
|||
}
|
|||
|
|||
module.exports = { dispatch };
|