Yes, I need to enable cross-site scripting for internal testing of the application I'm working on. I would use Chrome's disable-xss-auditor or disable-web-security switches, but it looks like they are no longer included in the chrome assembly:
http://src.chromium.org/svn/trunk/src/chrome/common/chrome_switches.cc
I am mainly trying to ensure that a javascript application running locally on pages served by Apache (also running locally) is allowed to run scripts from a resource running on another server on our network.
Failed to enable xss for Firefox, Chrome, or my least favorite - IE, will there be a way to start some kind of proxy process to change the headers to allow xss to happen? Any quick way to use Apache modem modification or some of them for this?
Again, this is for testing only. During production, all these scripts are run from the same server, so you donβt even need to sign them, but when developing and testing it is much easier to work only with those parts of the application that you need and do not have to run the rest of the application, which requires Installing a complete application server.
source share