I'm doing some analysis of some Javascript and I want to keep javascript enabled, but disable all alert() boxes and self.location redirects.

Currently I'm using a regex proxy, but that seems like overkill.

I can override some native methods but not others in Firefox i.e.

window.alert = function('') { return null; }
alert('test!') // works as expected

However when I try to similarly overwrite window.location = (which is an alias for the method call window.assign() ) it does not work

window.location.assign = function('') { return null; }
window.location.assign('#') // redirects :(

I've tried setting Window.prototype.location.assign but i get a "Cannot modify properties of a WrappedNative" exception.

Any alternatives to NoScript for fine grained JS control, or is it possible to overwrite certain Native JS methods?

link|improve this question
Why would you want to be able to do this? I've seen alert and confirm overwritten to create custom dialogs, but why overwrite location? – Prestaul Jul 16 '09 at 4:02
working with some malicious code – Joel P. Dec 3 '09 at 22:40
feedback

1 Answer

This suggested solution for disabling alert might work.

link|improve this answer
I think adsafe.org is exactly what I was looking for, Thanks! – Joel P. Jul 16 '09 at 17:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.