#VU25349 OS Command Injection in promise-probe - CVE-2019-10791
Published: February 14, 2020
promise-probe
dottgonzo
Description
The vulnerability allows a remote attacker to execute arbitrary shell commands on the target system.
The vulnerability exists due to improper input validation within the "ffprobe"(file) and "createMuteOgg"(outputFile, options) functions. A remote unauthenticated attacker can execute arbitrary OS commands on the target system.
Successful exploitation of this vulnerability may result in complete compromise of vulnerable system.
PoC:
var root = require("promise-probe");
root.ffprobe("& touch JHU");
root.createMuteOgg("123",{seconds:"& touch JHU &"});
root.createMuteOgg("& touch JHU",{});