Skip to content

Commit d6379e1

Browse files
authoredAug 28, 2022
Merge pull request #468 from XmiliaH/fix-467
Fix 467
2 parents 58478a5 + d9a7f3c commit d6379e1

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed
 

‎lib/setup-sandbox.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ Object.defineProperties(global, {
6767
global: {value: global, writable: true, configurable: true, enumerable: true},
6868
globalThis: {value: global, writable: true, configurable: true},
6969
GLOBAL: {value: global, writable: true, configurable: true},
70-
root: {value: global, writable: true, configurable: true}
70+
root: {value: global, writable: true, configurable: true},
71+
Error: {value: LocalError}
7172
});
7273

7374
if (!localReflectDefineProperty(global, 'VMError', {

‎test/vm.js

+7
Original file line numberDiff line numberDiff line change
@@ -1070,6 +1070,13 @@ describe('VM', () => {
10701070
Error.prepareStackTrace = undefined;
10711071
stack.process
10721072
`));
1073+
assert.throws(()=>vm2.run(`(()=>{
1074+
const OldError = Error;
1075+
global.Error = {prepareStackTrace: (_, c) => c.map(c => c.getThis()).find(a => a && a.process)};
1076+
const { stack } = new OldError();
1077+
global.Error = OldError;
1078+
return stack.process.mainModule;
1079+
})()`));
10731080
});
10741081

10751082
it('Node internal prepareStackTrace attack', () => {

0 commit comments

Comments
 (0)
Please sign in to comment.