My Spider Sense warns me that using eval() to parse incoming JSON is a bad idea. I'm just wondering if JSON.parse() - which I assume is a part of JavaScript and not a browser-specific function - is more secure.
|
You are more vulnerable to attacks if using Note that older browsers didn't support |
||||
|
|
|
Not all browsers have native JSON support so there will be times where you need to use
|
|||
|
|
|
All JSON.parse implementations most likely use eval() JSON.parse is based on Douglas Crockford's https://github.com/douglascrockford/JSON-js/blob/master/json2.js, which uses eval() right there on line 469
The advantage of JSON.parse is that it verifies the argument is correct JSON syntax. |
|||||
|
|
If you parse the JSON with Also, JSON's |
|||
|
|
|
JSON is just a subset of JavaScript. But |
|||||||
|