Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 250 Bytes

README.md

File metadata and controls

16 lines (10 loc) · 250 Bytes

Loop-Injection-example

there is 1 vulnerability

  1. loop-injection in index.vuln.js line 25
var obj = req.body

for (let index = 0; index < obj.length; index++) {
    const element = obj.length[index];
    
}
res.end('finished')