c0ca774238
If an object has a defined property, that is enumerable, and this property throws an error, it will make JSON stringify throw an error, and potentially bring down the program. The solution so far is to try-catch with the usual json stringifyer, that guards against circular references. If this throws an error we will attempt to guard against defined properties; and return [Throws] if a property throws an error when accesed. The following examples illustrate the problem: ```js var obj = {}; obj.__defineGetter__('foo', function() { throw new Error('ouch!'); }); JSON.stringify(obj.foo); // error thrown ``` And using `Object.defineProperty`: ```js var obj = {}; Object.defineProperty(obj, 'foo', { get: function() { throw new Error('ouch!'); } enumerable: true // enumerable is false by default }); JSON.stringify(obj.foo); // error thrown ``` The cases we have seen in production is third party modules that has enumerable getters that try to access properties on undefined objects. Fixes #182. |
||
---|---|---|
.. | ||
corpus | ||
buffer.test.js | ||
child-behaviour.test.js | ||
cli.test.js | ||
ctor.test.js | ||
cycles.test.js | ||
dtrace.test.js | ||
error-event.test.js | ||
level.test.js | ||
log-some.js | ||
log.test.js | ||
other-api.test.js | ||
process-exit.js | ||
process-exit.test.js | ||
raw-stream.test.js | ||
ringbuffer.test.js | ||
safe-json-stringify-1.js | ||
safe-json-stringify-2.js | ||
safe-json-stringify-3.js | ||
safe-json-stringify-4.js | ||
safe-json-stringify.test.js | ||
serializers.test.js | ||
stream-levels.test.js | ||
tap4nodeunit.js |