mirror of
https://github.com/elicpeter/nyx.git
synced 2026-07-03 20:41:00 +02:00
6 lines
174 B
JavaScript
6 lines
174 B
JavaScript
function downloadFile(req, res) {
|
|||
var userPath = req.query.path;
|
|||
// VULN: user-controlled path flows into res.download (path traversal)
|
|||
res.download(userPath);
|
|||
}
|