Comments on: Enumerating objects / methods in Javascript https://grey-panther.net/2009/01/enumerating-objects-methods-in-javascript.html Just another WordPress site Wed, 07 Jan 2009 06:13:09 +0000 hourly 1 https://wordpress.org/?v=6.5.2 By: Anonymous https://grey-panther.net/2009/01/enumerating-objects-methods-in-javascript.html#comment-556 Wed, 07 Jan 2009 06:13:09 +0000 https://grey-panther.net/?p=479#comment-556 Great writeup on object enumeration via reflection, but the are some constraints that limit its use in terms of fuzzing. The problem with function enumeration in Javascript is that it depends on the browser. Internet Explorer used to crash if you iterated a native object (for i in window.alert); now it just returns undefined. I don’t believe this method works with ActionScript, since some of the ASnative functions are undocumented and not exported via the API or object space. The method above works great for fuzzing the native DOM of Firefox 🙂

]]>