-
-
Notifications
You must be signed in to change notification settings - Fork 33.5k
Closed
Labels
c++Issues and PRs that require attention from people who are familiar with C++.Issues and PRs that require attention from people who are familiar with C++.confirmed-bugIssues with confirmed bugs.Issues with confirmed bugs.v8 engineIssues and PRs related to the V8 dependency.Issues and PRs related to the V8 dependency.vmIssues and PRs related to the vm subsystem.Issues and PRs related to the vm subsystem.
Description
-
Version:
v14.6.0 -
Platform:
ubuntu 19.04
What steps will reproduce the bug?
const vm = require('vm');
var handler = {
getOwnPropertyDescriptor: () => {
return {};
}
};
const source = `p=6`;
var proxy = new Proxy({}, handler);
const ctx = vm.createContext(proxy);
script = new vm.Script(source);
script.runInContext(ctx);
How often does it reproduce? Is there a required condition?
nothing
What is the expected behavior?
no error
What do you see instead?
crash
attachment core.zip
Metadata
Metadata
Assignees
Labels
c++Issues and PRs that require attention from people who are familiar with C++.Issues and PRs that require attention from people who are familiar with C++.confirmed-bugIssues with confirmed bugs.Issues with confirmed bugs.v8 engineIssues and PRs related to the V8 dependency.Issues and PRs related to the V8 dependency.vmIssues and PRs related to the vm subsystem.Issues and PRs related to the vm subsystem.