Skip to content

Commit 240e079

Browse files
author
Max Schaefer
committed
Fix spurious character in code example.
1 parent 83a854c commit 240e079

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

javascript/ql/src/Security/CWE-078/examples/indirect-command-injection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ var cp = require("child_process");
22

33
const args = process.argv.slice(2);
44
const script = path.join(__dirname, 'bin', 'main.js');
5-
cp.execSync(`node ${script} ${args.join(' ')}"`); // BAD
5+
cp.execSync(`node ${script} ${args.join(' ')}`); // BAD

0 commit comments

Comments
 (0)