The same origin policy prevents a document or script loaded from one origin from getting or setting properties of a document from another origin.
267
votes
9answers
325k views
XmlHttpRequest error: Origin null is not allowed by Access-Control-Allow-Origin
I'm developing a page that pulls images from Flickr and Panoramio via jQuery's AJAX support.
The Flickr side is working fine, but when I try to $.get(url, callback) from Panoramio, I see an error in ...
25
votes
9answers
19k views
Can I disable SOP (Same Origin Policy) on any browser for development?
I want to develop JavaScript on my Windows machine. Do you know a browser where I can turn off Same Origin Policy so I can develop locally? Firefox would be optimal.
Or if you know a proxy I could ...
5
votes
2answers
10k views
Getting around same origin policy in javascript without server side scripts
I have an environment that doesn't allow server side scripting really (it is extremely difficult to get a script "installed" on the server). I tried using an iframe to violate javascript's same origin ...
12
votes
5answers
44k views
Google Chrome --allow-file-access-from-files disabled for Chrome Beta 8
I have been developing an AJAX application using jQuery and Microsoft Seadragon technology.
I need to have access to the html5 canvas function toDataURL.
With Google Chrome, the same origin rule ...
24
votes
3answers
28k views
Circumventing Chrome Access-control-allow-origin on the local file system?
I've read the other same origin policy topics here on SO, but I haven't seen any solutions related to the local file system.
I have a web app (In a loose sense of the word) that must be local served. ...
23
votes
10answers
1k views
How can ASP.NET or ASP.NET MVC be protected from related domain cookie attacks?
The related domain cookie attack (more info) allows machines in the same DNS domain to add additional cookies that will also be sent to other computers in the same domain.
This can cause issues with ...
11
votes
8answers
6k views
HTML5 Canvas getImageData and Same Origin Policy
I have a site running at pixie.strd6.com and images hosted through Amazon S3 with a CNAME for images.pixie.strd6.com.
I would like to be able to draw these images to an HTML5 canvas and call the ...
9
votes
2answers
4k views
Same Origin Policy - AJAX & using Public APIs
I know if on my own webpage, if my user is on :
http://www.example.com/form.php
and I make an ajax request from that page to :
http://example.com/responder.php
It will fail because of the Same ...
4
votes
1answer
2k views
Can Cross-Origin Resource Sharing headers authorize X-Domain IFRAME access?
Adjusting the height of an IFRAME to match its content page's height can be a real drag when the containing and content pages are not from the same domain.
Do the Cross-Origin Resource Sharing (CORS) ...
7
votes
3answers
391 views
Get List of jQuery UI themes - from an URL (same-origin-policy)
Does anyone know a way to get list of jQuery themes from http://jquery-ui.googlecode.com/svn/tags/1.8.23/themes/ ?
I am creating simple webpage with themes roller where the user can switch themes ...
9
votes
7answers
5k views
Firefox Cross Domain Request
I need to make a cross domain request from a script that runs in firefox (it's just for development purposes).
Can this be achieved? maybe modifying the about:config keys?
Thanks!
1
vote
3answers
6k views
Access child iFrame DOM from parent page
Here is the deal:
domain.com/page -- Parent page (document.domain=domain.com) contains an iframe
sub.domain.com/page -- Child iframe (document.domain=not set) is on a subdomain
Is there any way to ...
14
votes
2answers
4k views
JavaScript Same Origin Policy - How does it apply to different subdomains?
How does the Same Origin Policy apply to the following two domains?
http://server1.MyDomain.com
http://server2.MyDomain.com
Can I run JS on a page hosted on server1, if the content is retreived ...
6
votes
4answers
826 views
Why are AJAX requests limited to same domain?
Something I find really confusing, is why are ajax requests limited to the same domain? What is the reasoning behind this?
I don't see any problem with requesting files from external locations, also ...
4
votes
8answers
5k views
Is there a way to bypass Javascript / jQuery's same origin policy for local access?
Trying to use ajax, getJSON, and functions like that to fetch an external URL from a local (non-server) development computer. Is there a way to bypass the same origin policy, so that I can test ...
0
votes
1answer
7k views
How do I use Access-Control-Allow-Origin? Does it just go in between the html head tags?
I've been reading about Access-Control-Allow-Origin because it seems effective at allowing cross domain requests since I have access to the external site. My question is how do I use ...
10
votes
3answers
12k views
Same-origin policy workaround using document.domain in Javascript
I am running into same-origin policy issues in Javascript. I've read about a workaround for this using the document.domain variable, but I cannot get the workaround to work. The workaround is that ...
7
votes
2answers
9k views
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 ...
9
votes
2answers
3k views
Why do frame breakers work cross-domain, and can you conditionally use frame breakers?
I've been investigating frame breaking code recently and have come across some really bizarre behavior related to the same origins policy that I am having trouble understanding.
Suppose I've got a ...
7
votes
4answers
1k views
Can iframe pages tell when they are iframed?
So I know that if I include an iFrame to a page that is not on the same domain I can't access that iframe's DOM via browser policy, but can a page that is in an iframe do any kind of parent document ...
5
votes
4answers
995 views
Same origin policy
Maybe some of you can help me get a better understanding of the javascript same origin policy.
The same origin policy is defined as following (http://en.wikipedia.org/wiki/Same_origin_policy):
In ...
4
votes
2answers
534 views
How does the same origin policy apply to IP addresses
I have a server on our company intranet that runs JBoss. I want to send API calls to this server from my machine, also on the intranet, and get the resulting XML responses using JQuery.
I read the ...
2
votes
1answer
152 views
How does Same Origin Policy apply to browser extensions?
Given a browser extension that sends information from one webpage to an entirely different server, is this violating the same origin policy?
2
votes
2answers
2k views
Will jQuery .load() Work On PhoneGap?
I know that the jQuery .load() function has a "problem": You can't retrieve pages that are outside of the current domain, because of the Same Origin Policy, but I remember when I was developing ...
6
votes
4answers
456 views
What's the point of the Anti-Cross-Domain policy?
Why did the creators of the HTML DOM and/or Javascript decide to disallow cross-domain requests?
I can see some very small security benefits of disallowing it but in the long run it seems to be an ...
6
votes
1answer
5k views
Jquery .load Same origin policy
Is there anyway i can fool the Jquery .load Same origin policy? The closest i've come is with this tutorial.
But that only deals with rss feeds.
4
votes
3answers
914 views
Why is $.post() subject to same-origin policy, but submitting a form with method='POST' okay?
I'm working on a web-based tool which streamlines the work we do at my office. The tools provided to us by our partner have a generic login that our entire floor uses, but it times out every 30 ...
2
votes
2answers
901 views
Why Cross-Domain AJAX call is not allowed?
Except for JSONP why is same domain policy is being followed?
2
votes
4answers
4k views
Work around for the same origin policy problem
I have a problem where I have a frameset consisting of a parent frame loaded from one domain and a contained frame from a different domain. The contained domain also sets a cookie before the frameset ...
1
vote
1answer
239 views
crossDomain heartbeat cant parse jsonp data with jquery
I embbeding my module, an asp.net project, in a "portal", the portal generate an iframe to my url, i know its a shit but i dont made it.
To avoid session in main "portal" end while user iterating with ...
1
vote
1answer
566 views
running GWT application from remote machine
I am developing some GWT application that some third-part will need to import into his own website.
The application that I am developing consist hosted on my machine which say at:
...
0
votes
1answer
702 views
How can access and the origin policy in chrome as I'm not using a server
I want to change the origin policy in chrome, how can I access it and modify it?
Many thanks
5
votes
4answers
3k views
Disable the Same Origin Policy / making cross domain XMLHttpRequests in WebKit WebViews?
I would like to disable the same origin policy on XMLHttpRequests in my own embedded WebViews. I have control over the pages loaded / code being executed in the WebView, so I do not care about ...
9
votes
2answers
13k views
Chrome - disable web security - no longer working
The command --disable-web-security to allow for cross domain requests on Chrome is no longer working, I presume due to the latest update. Is there a workaround for this, besides downloading an older ...
6
votes
3answers
145 views
What is the threat model for the same origin policy?
http://en.wikipedia.org/wiki/Same_origin_policy
The same origin policy prevents a script from one site talking to another site. Wiki says it's an "important security concept", but I'm not clear on ...
4
votes
3answers
675 views
Same origin policy — JavaScript calling PHP
I know that this is a popular topic, but I've yet to find an answer that's completely comprehensive.
I'm trying to create a simple way for our 'customers' to place a Google Map on their website, ...
3
votes
6answers
3k views
Cross domain xmlhttp
I am writing this javascript that will be used on several other domains which calls a php script(only on my domain) to return an array. I am using xmlhttp and it works great when testing on my ...
2
votes
3answers
764 views
Request external website data using jQuery ajax
I've tried reading up about this and not really sure where to start, so hoping somebody will be able to point me in the right direction.
Basically I'm trying to use jQuery ajax to read an external ...
1
vote
1answer
1k views
window.name as a data transport: a valid approach?
Overview and original question
window.name is an interesting beast. MDN's description hints at the original intent:
The name of the window is used primarily for setting targets for hyperlinks and ...
13
votes
2answers
3k views
How to track Tweet Button clicks?
I want to track tweet button clicks via Google Analytics, but tweet button is an iframe with content from another domain. Is there some tricks to add callbacks for tweet button click?
7
votes
2answers
772 views
How to circumvent same-origin policy for a 3rd party https site?
I have a http:// site that needs to access a 3rd party JSON API that is exposed on an https:// site. I've read through Ways to circumvent the same-origin policy, but it seems the methods described ...
6
votes
1answer
130 views
Wouldn't have been simpler to just discard cookies for cross-domain XHR?
I keep fighting with strange limitations when developing for the web. One of them is the same-origin limitation for AJAX requests and I'm asking myself if instead of blocking requests to cross-domain ...
3
votes
2answers
515 views
Catching same origin exception in Javascript?
I'm trying to create my own XMLHttpRequest framework to learn how this things work internally.
A thing that puzzles me is that I cannot find how to catch a "Same origin" exception.
The idea behind ...
6
votes
2answers
7k views
Any hosted versions of jQuery that have the 'Access-Control-Allow-Origin: *' header set?
I have been working with jQuery recently and ran into a problem where I couldn't include it in a userscript because XmlHttpRequest uses the same origin policy. After further testing I found that most ...
4
votes
2answers
729 views
JSON Proxy in Java / Play! Framework
I have a Play! application and from the JavaScript we now have run in to the Same Origin Policy Problem.
What I want is that JavaScript ajax calls go to our own server and that this server again ...
4
votes
3answers
811 views
Why does new Facebook Javascript SDK not violate the “same origin policy”?
The new Facebook Javascript SDK can let any website login as a Facebook user and fetch data of a user...
So it will be, www.example.com including some Javascript from Facebook, but as I recall, that ...
3
votes
2answers
502 views
With respect to client side security, does CORS do anything other than subvert same-origin-policy?
(and if not, does it actually improve client side security?)
I'm thinking of the case where a script from server X uses XHR to obtain and run untrusted code from server Y (which supports CORS).
...
2
votes
2answers
1k views
Access-Control-Allow-Origin problems on the same domain
How is it possible that when I try to make an XMLHTTPRequest from a javascript file to a web service located on the very same domain, I get:
Origin http://mydomain.com is not allowed by ...
2
votes
1answer
1k views
How to disable same origin policy in Chrome extension?
Maybe are there some settings to disable this in extension context. Since I'm developing an extension it should be my own responsibility to not shoot my own goal. It is very frustrating to fiddle with ...
2
votes
1answer
687 views
Same origin host, different ports in JS
for the two hosts
http://1.com.local/
http://2.com.local:8080/
how can I use document.domain to enable DOM-Manipulation between the two? If i set both to com.local it doesn't work, because the 2nd ...