mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-21 20:18:06 +02:00
7 lines
131 B
JavaScript
7 lines
131 B
JavaScript
const { exec } = require('child_process');
|
|||
|
|||
function handle_request(req) {
|
|||
ensureAuthenticated(req);
|
|||
exec(req.body.cmd);
|
|||
}
|