mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-27 20:29:39 +02:00
6 lines
158 B
JavaScript
6 lines
158 B
JavaScript
const { getUserInput, sanitize } = require('./utils');
|
|||
|
|||
// Tainted: source flows directly to eval without sanitization
|
|||
const raw = getUserInput();
|
|||
eval(raw);
|