mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
cbc3ef64ce
Allow reading from stdio streams that are conventionally associated with process output, since this is only convention. This involves disabling the oddness around closing stdio streams. Its purpose is to prevent the file descriptors 0 through 2 from being closed, since doing so can lead to information leaks when new file descriptors are being opened; instead, not doing anything seems like a more reasonable choice. Fixes: https://github.com/nodejs/node/issues/21203 PR-URL: https://github.com/nodejs/node/pull/23053 Reviewed-By: James M Snell <jasnell@gmail.com>
4 lines
108 B
JavaScript
4 lines
108 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
process.stderr.on('data', common.mustCall(console.log));
|