OSV 1.4.0 · github-reviewed · 修改于 2021-03-19 07:43
发布时间
2021-03-19 07:47
GitHub 审查时间
2021-03-19 07:43
NVD 发布时间
2021-03-19 08:15
源文件
advisories/github-reviewed/2021/03/GHSA-f2rp-38vg-j3gh/GHSA-f2rp-38vg-j3gh.json
Anyone using Shescape to defend against shell injection may still be vulnerable against shell injection if the attacker manages to insert a null character into the payload. For example (on Windows):
const cp = require("child_process");
const shescape = require("shescape");
const nullChar = String.fromCharCode(0);
const payload = "foo\" && ls -al ${nullChar} && echo \"bar";
console.log(cp.execSync(`echo ${shescape.quote(payload)}`));
// foototal 3
// drwxr-xr-x 1 owner XXXXXX 0 Mar 13 18:44 .
// drwxr-xr-x 1 owner XXXXXX 0 Mar 13 00:09 ..
// drwxr-xr-x 1 owner XXXXXX 0 Mar 13 18:42 folder
// -rw-r--r-- 1 owner XXXXXX 0 Mar 13 18:42 file
The problem has been patched in v1.1.3 which you can upgrade to now. No further changes are required.
Alternatively, null characters can be stripped out manually using e.g. arg.replace(/\u{0}/gu, "")