vote up 1 vote down star
1

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?

flag
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 at 4:02
working with some malicious code – Joel P. Dec 3 at 22:40

1 Answer

vote up 1 vote down

This suggested solution for disabling alert might work.

link|flag
I think adsafe.org is exactly what I was looking for, Thanks! – Joel P. Jul 16 at 17:44

Your Answer

Get an OpenID
or

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