Вот что делает официальный парсер JavaScript :
// In the second stage, we run the text against regular expressions that look
// for non-JSON patterns. We are especially concerned with '()' and 'new'
// because they can cause invocation, and '=' because it can cause mutation.
// But just to be safe, we want to reject all unexpected forms.
// We split the second stage into 4 regexp operations in order to work around
// crippling inefficiencies in IE's and Safari's regexp engines. First we
// replace the JSON backslash pairs with '@' (a non-JSON character). Second, we
// replace all simple value tokens with ']' characters. Third, we delete all
// open brackets that follow a colon or comma or that begin the text. Finally,
// we look to see that the remaining characters are only whitespace or ']' or
// ',' or ':' or '{' or '}'. If that is so, then the text is safe for eval.
if (/^[\],:{}\s]*$/.
test(text.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, '@').
replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, ']').
replace(/(?:^|:|,)(?:\s*\[)+/g, ''))) {
// In the third stage we use the eval function to compile the text into a
// JavaScript structure. The '{' operator is subject to a syntactic ambiguity
// in JavaScript: it can begin a block or an object literal. We wrap the text
// in parens to eliminate the ambiguity.
j = eval('(' + text + ')');
...
За исключением встроенной поддержки синтаксического анализа JSON , которая есть в современных браузерах, это то, что делают все (основанные на библиотеках) защищенные парсеры JSON (то есть тест перед регулярным выражением eval
) .
Защищенные библиотеки (в дополнение к официальной реализации json2)
Функция прототипа isJSON
.
Mootools 'функция JSON.decode
(опять же, с помощью теста регулярных выражений до eval
).
Небезопасные библиотеки :
dojo's fromJson
делает не безопасным eval
ing. Вот их полная реализация (без комментариев) :
dojo.fromJson = function(json) {
return eval("(" + json + ")");
}
jQuery не обеспечивает безопасное использование JSON eval
, но см. Функцию secureEvalJSON
официального плагина (строка 143).