Hi there,
I was reading the source code of this repository for a project of mine and came across this line of code: routes/error-tracker.js#L102
If you follow where the value of req.body flows in the code, you can can see that it ends in a call to deleter() in utils/cache.js. So my question is this: which function is responsible for sanitizing req? It can be potentially exploited (or just result in an undesired behavior). I could not find information about it in the repository so I apologize if I misread or overlooked something.
Thanks
Hi there,
I was reading the source code of this repository for a project of mine and came across this line of code:
routes/error-tracker.js#L102If you follow where the value of
req.bodyflows in the code, you can can see that it ends in a call todeleter()inutils/cache.js. So my question is this: which function is responsible for sanitizingreq? It can be potentially exploited (or just result in an undesired behavior). I could not find information about it in the repository so I apologize if I misread or overlooked something.Thanks