Disable Same-Origin Check in FireFox 6
NickName:Chris Lees Ask DateTime:2011-08-28T04:25:48

Disable Same-Origin Check in FireFox 6

I'm trying to debug an XMPP application I'm building in javascript. I want to use FireBug because I think it works really well as far as javascript debuggers go. The problem I'm having is an XSS issue. The XMPP server we're using is located on another machine an I need to connect to it.

I can debug no problem in Chrome using the --disable-web-security flag when opening the application. I just can't seem to find the Firefox equivalent (if there even is one). Every thing I'm finding on the issue is years old targeting ancient versions of Firefox.

I was hoping it would be a config value in about:config or at least an extension I could install but I'm coming up blank.

Copyright Notice:Content Author:「Chris Lees」,Reproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/7217134/disable-same-origin-check-in-firefox-6

Answers
Josef Pfleger 2012-01-29T17:26:13

I've written a simple one-button Firefox add-on that adds the CORS headers to every request. Works for me.",


More about “Disable Same-Origin Check in FireFox 6” related questions

Disable Same-Origin Check in FireFox 6

I'm trying to debug an XMPP application I'm building in javascript. I want to use FireBug because I think it works really well as far as javascript debuggers go. The problem I'm having is an XSS ...

Show Detail

select list disable option not working in firefox developer edition

Select list disable option is not working in firefox developer edition. Here is sample fiddle for select list disable option.I have check this fiddle in firefox standard edition and developer edi...

Show Detail

Is there any way one can disable or prevent same-origin AJAX?

While answering this question on Security.SE, I realized that there may be a need for a way to disable AJAX requests from all domains, including the original domain itself. This would be useful if ...

Show Detail

Disabling same-origin policy in Safari

For development purposes, I need to disable the same-origin policy in Safari (on Windows) on my machine. In Chrome, this can be done by launching with the flag --disable-web-security. Is there an

Show Detail

Check the real availability of IndexedDB in Firefox

I have to check the IndexedDB availability for the Firefox browser only. Currently I do the trick with this : var IDB_SUPPORTED = 'indexedDB' in window; Simple. But if I disable IndexedDB in about:

Show Detail

How to disable the incompatible add-ons prompt at Firefox start?

I'm running some Robot Framework integration tests with Firefox 21.0 for Ubuntu. Recently my Firefox was updated and now it always pops up a prompt about incompatible add-ons when it starts. That's

Show Detail

disable default stylesheets in firefox

I use view - page style option to disable style-sheet. Or I can use this add-on... https://addons.mozilla.org/en-us/firefox/addon/disable-css/ 1) But I will like to know if there is any way to loa...

Show Detail

How to Disable Save As dialog in Firefox

How to disable Save As dialog while pressing Ctrl+S Description: I am developing one web application.Here When i am going to form submitting using "Ctrl+S",In Firefox before submitting "save As d...

Show Detail

How do you disable Cross-Origin-Policy for iframes in Chrome?

I am running my chrome instance with the --user-data-dir="folder" --disable-web-security flags, but apparently the cross origin policy is still being enforced. I can't access the elements of an i...

Show Detail

Disable urlbar filter - Firefox 28

I want to demonstrate DOM "Local" Based Cross Site Scripting on Firefox ver. 28. I have this script on index.php <SCRIPT> var pos=document.URL.indexOf("jmeno=")+6; document.write(document.UR

Show Detail