You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the functions below in virtualbox.js, could allow for a user to inject additional commands with the cmd variable (ex: "; pwd") resulting in remote command execution assuming this was public facing.
function vboxcontrol(cmd, callback) {
command('VBoxControl ' + cmd, callback);
}
function vboxmanage(cmd, callback) {
command(vBoxManageBinary + cmd, callback);
}