Quantcast
Channel: JavaScript NoSQL Injection prevention in MongoDB - Stack Overflow
Viewing all articles
Browse latest Browse all 6

Answer by Willman.Codes for JavaScript NoSQL Injection prevention in MongoDB

$
0
0

In order to guard against query selector injections from a data object with unknown structure

Use mongo-sanitize to deeply sanitize via recursion:

const deepSanitize = (value) => {    if(Array.isArray(value)){        value.forEach(elm=>deepSanitize(elm))    }    if(typeof(value) === 'object'&& value !== null){        Object.values(value).forEach((elm)=>{            deepSanitize(elm)        })    }    return sanitize(value)}

For example with sanitize(req.query) nested query selectors will not be removed:

const req = {} req.query = { _id : { $ne: 1 } } console.log(req.query))               // { _id: { '$ne': 1 } }console.log(sanitize(req.query))      // { _id: { '$ne': 1 } }

Using deepSanitize(req.query) sanitized objects (including nested) are mutated:

console.log(deepSanitize(req.query))       // { _id: {} }console.log(req.query)                     // { _id: {} }

Eliminate object mutation with {...req.query}:

console.log(deepSanitize({...req.query}))  // { _id: {} }console.log(req.query)                     // { _id: { '$ne': 1 } }

Viewing all articles
Browse latest Browse all 6

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>