Snyk has a proof-of-concept or detailed explanation of how to exploit this vulnerability.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsUpgrade vboxmanage.js
to version 1.0.9 or higher.
vboxmanage.js is an A wrapper for VirtualBox CLI with Promises
Affected versions of this package are vulnerable to Command Injection. The vmname
parameter is used to build the command that is passed to the child_process.exec
function without any check.
var VBox = require('vboxmanage.js');
VBox.start(';touch HACKED;').then(function () {}).catch(function (err) {});