JamesOsgood / mongodb-grafana

MongoDB plugin for Grafana
MIT License
464 stars 213 forks source link

Use eval instead of JSON.parse #68

Open arthurdarcet opened 5 years ago

arthurdarcet commented 5 years ago

This handles:

spatecon commented 1 year ago

Using eval on server side for this type of logic is overkill. It can lead to exploits, allowing not only the use of new Date(), but also file I/O and SSRF.

Here's an example.