Disable authentication in FireFox 6

I am trying to debug an XMPP application that I am creating in javascript. I want to use FireBug because I think it works very well as far as javascript debuggers go. The problem I am facing is the XSS problem. The XMPP server that we use is located on another computer, and I need to connect to it.

I can debug problems in Chrome using the flag --disable-web-security when opening the application. I just can't find the equivalent of Firefox (if there is even one). All I find in this question is years aimed at ancient versions of Firefox.

I was hoping this would be the configuration value in about: config, or at least the extension that I could install, but I will do.

+4
source share
2 answers

I wrote a simple single-line Firefox add- in that adds CORS for each request. It works for me.

+2
source

You can try this if FireFox 6 has about:config with this property

 about:config -> security.fileuri.strict_origin_policy -> false 
0
source

Source: https://habr.com/ru/post/1369318/


All Articles