forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
child_process: harden against prototype pollution
PR-URL: nodejs#48726 Reviewed-By: Matthew Aitken <maitken033380023@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
- Loading branch information
1 parent
97a6bb7
commit e41a9c5
Showing
2 changed files
with
64 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
import * as common from '../common/index.mjs'; | ||
import * as fixtures from '../common/fixtures.mjs'; | ||
import { EOL } from 'node:os'; | ||
import { strictEqual } from 'node:assert'; | ||
import cp from 'node:child_process'; | ||
|
||
// TODO(LiviaMedeiros): test on different platforms | ||
if (!common.isLinux) | ||
common.skip(); | ||
|
||
const expectedCWD = process.cwd(); | ||
const expectedUID = process.getuid(); | ||
|
||
for (const tamperedCwd of ['', '/tmp', '/not/existing/malicious/path', 42n]) { | ||
Object.prototype.cwd = tamperedCwd; | ||
|
||
cp.exec('pwd', common.mustSucceed((out) => { | ||
strictEqual(`${out}`, `${expectedCWD}${EOL}`); | ||
})); | ||
strictEqual(`${cp.execSync('pwd')}`, `${expectedCWD}${EOL}`); | ||
cp.execFile('pwd', common.mustSucceed((out) => { | ||
strictEqual(`${out}`, `${expectedCWD}${EOL}`); | ||
})); | ||
strictEqual(`${cp.execFileSync('pwd')}`, `${expectedCWD}${EOL}`); | ||
cp.spawn('pwd').stdout.on('data', common.mustCall((out) => { | ||
strictEqual(`${out}`, `${expectedCWD}${EOL}`); | ||
})); | ||
strictEqual(`${cp.spawnSync('pwd').stdout}`, `${expectedCWD}${EOL}`); | ||
|
||
delete Object.prototype.cwd; | ||
} | ||
|
||
for (const tamperedUID of [0, 1, 999, 1000, 0n, 'gwak']) { | ||
Object.prototype.uid = tamperedUID; | ||
|
||
cp.exec('id -u', common.mustSucceed((out) => { | ||
strictEqual(`${out}`, `${expectedUID}${EOL}`); | ||
})); | ||
strictEqual(`${cp.execSync('id -u')}`, `${expectedUID}${EOL}`); | ||
cp.execFile('id', ['-u'], common.mustSucceed((out) => { | ||
strictEqual(`${out}`, `${expectedUID}${EOL}`); | ||
})); | ||
strictEqual(`${cp.execFileSync('id', ['-u'])}`, `${expectedUID}${EOL}`); | ||
cp.spawn('id', ['-u']).stdout.on('data', common.mustCall((out) => { | ||
strictEqual(`${out}`, `${expectedUID}${EOL}`); | ||
})); | ||
strictEqual(`${cp.spawnSync('id', ['-u']).stdout}`, `${expectedUID}${EOL}`); | ||
|
||
delete Object.prototype.uid; | ||
} | ||
|
||
{ | ||
Object.prototype.execPath = '/not/existing/malicious/path'; | ||
|
||
// Does not throw ENOENT | ||
cp.fork(fixtures.path('empty.js')); | ||
|
||
delete Object.prototype.execPath; | ||
} |