VincentGoyal / brokencrystals

A Broken Application - Very Vulnerable!
MIT License
0 stars 0 forks source link

js/command-line-injection #49

Open armorcodegithubpreprod[bot] opened 4 months ago

armorcodegithubpreprod[bot] commented 4 months ago

Uncontrolled command line Using externally controlled strings in a command line may allow a malicious user to change the meaning of the command. This command line depends on a user-provided value. Commit SHA: 459cd0fa4ebaaec6cee08c99e42c2050d46521c4 Line Number: 130 Tool Name: CodeQL

File Path: src/app.controller.ts:130

Mitigation: # Uncontrolled command line Code that passes user input directly to require('child_process').exec, or some other library routine that executes a command, allows the user to execute malicious code.

Recommendation

If possible, use hard-coded string literals to specify the command to run or library to load. Instead of passing the user input directly to the process or library function, examine the user input and then choose among hard-coded string literals.

If the applicable libraries or commands cannot be determined at compile time, then add code to verify that the user input string is safe before using it.

Example

The following example shows code that takes a shell script that can be changed maliciously by a user, and passes it straight to child_process.exec without examining it first.

var cp = require("child_process"),
    http = require('http'),
    url = require('url');

var server = http.createServer(function(req, res) {
    let cmd = url.parse(req.url, true).query.path;

    cp.exec(cmd); // BAD
});

References

Impact: See Description

Tool Finding Id: 9

Finding Id : 52851327

armorcodegithubpreprod[bot] commented 4 months ago

Finding [52851327] status changed to Confirmed Note:
by vincent.goyal@armorcode.io via ArmorCode Platform