Tagged Questions

The same origin policy prevents a document or script loaded from one origin from getting or setting properties of a document from another origin.

learn more… | top users | synonyms

90
votes
10answers
16k views

Ways to circumvent the same-origin policy

The same origin policy I wanted to make a community wiki regarding HTML/JS same-origin policies to hopefully help anyone searching for this topic. This is one of the most searched-for topics on SO ...
73
votes
7answers
115k 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 ...
14
votes
11answers
9k views

Can I disable SOP (Same Origin Policy) on any browser for development?

I want to develop JS on my windows machine. Do you know a browser where I can turn off SOP so I can develop? Firefox would be optimal. Or if you know a proxy I could use for a SOAP/WSDL site it would ...
13
votes
3answers
10k 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. ...
9
votes
3answers
5k 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 ...
9
votes
3answers
538 views

“Same origin policy” and scripts loaded from google - a vulnerable solution?

I read the question here in SO "jQuery Linking vs. Download" and I somehow don't get it. What happens if you host a page on http://yourserver.com, but load jQuery library from ...
8
votes
2answers
2k 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
2answers
2k 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
2answers
909 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 ...
6
votes
3answers
230 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
6k 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 ...
6
votes
3answers
899 views

JavaScript to detect if the parent frame is of the same origin?

I'm looking for a cross-browser way to detect whether the parent frame is the same origin as my frame, preferably without printing warnings on the JavaScript error console. The following seems to ...
6
votes
7answers
2k 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!
6
votes
3answers
1k views

S3 browser upload via POST: unable to handle errors gracefully

I am writing an app where I want the customer to be able to upload to Amazon S3 straight from the browser. I can make this work just fine. But when errors occur, I want to handle them more ...
6
votes
3answers
1k views

Is google AJAX Libraries API bypassing same origin policy?

From: https://developer.mozilla.org/En/Same_origin_policy_for_JavaScript The same origin policy prevents a document or script loaded from one origin from getting or setting properties of a document ...
5
votes
2answers
164 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 ...
5
votes
2answers
400 views

Why do some cross-domain JSON-requests fail but others don't?

I have a little trouble understanding the security bit around JSON, because often things that in theory should not work, seemingly do. AFAIK, calls from a script on a page that resides on domain A, ...
5
votes
4answers
708 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 ...
4
votes
2answers
54 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
2answers
304 views

GWT : separate js + css + images from server

We'd like to have the following configuration : one server is replying to GWT RPC : x.com (the one running Java) another server is serving js / css / images : y.com (for bandwith optimization) So ...
4
votes
3answers
1k 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?
4
votes
1answer
3k 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 tut. But that only deals with rss feeds.
4
votes
3answers
2k 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 ...
3
votes
1answer
26 views

AJAX in jsFiddle

How do you simulate jQuery $.get() to load data from a different domain in jsFiddle? /* This won't work in jsFiddle. */ $.get("http://www.google.com", function(data) { ... } ); As we know, ...
3
votes
2answers
154 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 ...
3
votes
1answer
112 views

Why is cross-domain JSONP safe, but cross-domainJSON not?

I'm having trouble connecting some dots having recently learned of JSONP. Here's my understanding: Cross-domain XmlHttpRequests for any content (including JSON) is banned, due to the same origin ...
3
votes
4answers
305 views

Would this be a good idea against XSS?

as it isn't really popular to use Origin / X-Frame-Options http header and I don't think the new CSP in Firefox would be better (overhead, complicate, etc.) I want to make a proposal for a new ...
3
votes
2answers
311 views

Send post to a different domain using JS

I'd like a post request to be sent once a certain text input field is changed, using javascript. So here is my current code: <input name="message" onchange="$.ajax({type: \"POST\", url: ...
3
votes
1answer
527 views

Does the Windows Phone 7 WebBrowser control implement a same origin policy?

I have some HTML files I'm putting in Isolated Storage and then loading them up in a Windows Phone 7 WebBrowser control. I want to make an AJAX request in JavaScript to a remote host to get some data. ...
3
votes
1answer
2k 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 ...
3
votes
2answers
271 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 ...
3
votes
3answers
352 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
4k 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 ...
3
votes
2answers
143 views

What is the best way to find out that access to the parent window has restrictions due to the same origin policy?

My current solution: function isAccessToWindowRestricted(w) { try { return !w.location.href; } catch (e) { return true; } } Any better ideas? Is there a 'legal' way without try-catch? ...
3
votes
4answers
421 views

Can one use Ajax on Google App Engine as a logged in user over https from a non-appspot.com domain?

Suppose: You have a website http://www.example.com that redirects to a project on Google App Engine (i.e. example.appspot.com); you want communications to pass between the user over SSL (i.e. ...
2
votes
3answers
53 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
1answer
27 views

Recording Audio in a Java Applet (Policy File Options)

I built a quick applet to record audio and send the audio to a server. Everything works great with exception of the policy file issues. I can't very well have users open up the policy tool and edit ...
2
votes
4answers
58 views

How can I work around the same-origin policy to develop AJAX client code for a Google AppEngine site?

I'm working with someone who has a Google AppEngine site with a custom API located there. I need to write some AJAX Javascript to interface with the custom API on the site, but I'm getting ...
2
votes
1answer
49 views

How can I prevent an iframe from accessing parent frame?

I've got a page with an iframe. The page and the source of the iframe are in different domains. Inside the iframe I'm using a rich text editor called CuteEditor (which has turned out to be not so ...
2
votes
2answers
97 views

How to turn a url segment into a single parameter in Play! Framework

Problem I want url segmenthere/is/a/reuqest/to/letsay/a/user to turn into one single parameter orginalRequest in Play! route Why To solve Same Origin Policy with json and ajax, we have decided to ...
2
votes
4answers
154 views

Bypassing the Same Origin Policy for authenticated XmlHttpRequests

I have a website on foo.com serving PageA. PageA has some JQuery within it that requests via XmlHttpRequest some JSON data from a CouchDb instance residing at bar.com. As I understand it the same ...
2
votes
1answer
71 views

How Come a CDN or External JavaScript File works in a Web Site?

First off, I'm embarassed that I don't know this. I know these things work, but just not sure why. There is something I still don't get about CDNs and stuff like Google Analytics or Adsense. If these ...
2
votes
1answer
84 views

How do I enforce same origin policy iframe restrictions on an iframe in my own domain?

I am the creator of http://labcss.net, and I have a security issue I need to solve. labcss is similar to jsFiddle, only jsFiddle execute their Javascript code in a sanbox. Since I need to heavily ...
2
votes
2answers
306 views

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 ...
2
votes
1answer
183 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) ...
2
votes
1answer
145 views

Is it a same origin policy violation to manipulate image data you retrieved from another site using PHP and cURL?

I was wondering if same origin policy is violated if you retrieve an image using PHP and cURL and manipulate it using HTML5 canvas? I know getImageData and putImageData doesn't work for images ...
2
votes
4answers
331 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 ...
2
votes
1answer
263 views

same-origin-policy conflicting with basic authentication?

After configuring the webservice-server to support CORS by adding Header set Access-Control-Allow-Origin "*" to the apache virtual host conf, a new problem occured. I call the webservice using ...
2
votes
2answers
119 views

Same origin issue (file upload)

The client is on domain foo.com and needs to upload (send POST XMLHttpRequest) to upload.foo.com. This is restricted because of the same origin policy. However, the work around that I managed to come ...
2
votes
1answer
183 views

Does Ajax - cross domain request return the request header?

I know that the ajax-cross domain call will not return the data from server. however, does it return a http header, like 200, 404..etc?

1 2 3 4 5