mcp-server-semgrep
Version:
MCP Server for Semgrep Integration - static code analysis with AI
30 lines (24 loc) • 499 B
JavaScript
async function okTest() {
const p = Deno.run({
cmd: ["echo", "hello"],
});
await p.status();
}
async function test1(userInput) {
const p = Deno.run({
// ruleid: deno-dangerous-run
cmd: [userInput, "hello"],
stdout: "piped",
stderr: "piped",
});
await p.status();
}
async function test1(userInput) {
const p = Deno.run({
// ruleid: deno-dangerous-run
cmd: ["bash", "-c", userInput],
stdout: "piped",
stderr: "piped",
});
await p.status();
}