Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
vm2-process
Advanced tools
Run untrusted code via vm2, but inside a separate process which has additional restrictions:
npm install --save vm2-process
The following limits are the default, but they can be overridden.
CPU | 100 percent |
Memory | 2000 megabytes |
Execution Time | 1000 milliseconds |
import createVm2Pool from 'vm2-process';
const { run, drain } = createVm2Pool({ min: 1, max: 3 });
const result = await run('1 + 1');
console.log(result) // prints '2'
drain();
import createVm2Pool from 'vm2-process';
const { run, drain } = createVm2Pool({ min: 1, max: 3 });
const result = await run('1 + a', { a: 2 })
console.log(result) // prints '3'
drain();
import createVm2Pool from 'vm2-process';
const { run, drain } = createVm2Pool({
min: 1, /* min threads in the pool */
max: 3, /* max threads in the pool */
cpu: 100, /* in percent */
memory: 2000, /* in megabytes */
time: 1000 /* in milliseconds */
});
const result = await run('while (true) {}', null);
// above throws as it either takes too long or exceeds the memory limit
drain();
FAQs
Execute unsafe javascript code in a sandbox
The npm package vm2-process receives a total of 3 weekly downloads. As such, vm2-process popularity was classified as not popular.
We found that vm2-process demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.