0
votes
1answer
47 views
What is the most straightforward GWT workaround for same origin policy restriction (trying to query google maps api)?
Hello --
I am trying to do some basic geocoding using the google maps API and a GWT dyanmic web project in Eclipse. For example, query the following URL:
…
1
vote
1answer
42 views
depress same origin policy
Hi.
I have a 'toolbar' that displays some code on the top of the window, and then I load an iframe with an external site. I realize that I can't get the active link the user is on because it would be …
0
votes
2answers
120 views
GWT interface to Solr index
I have a solr index on a remote server and need to create a search page interface. I am using GWT to code the pages and XML-HTTP to query the index and receive the response. The problem is the …
5
votes
4answers
120 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 …
0
votes
1answer
56 views
How to get the url of a webpage that is embedding another page in an iframe on a different origin domain
Webpage A is embedded in an iframe inside of webpage B. A and B are on two different domains and therefore the same origin policy prevents A from accessing properties of B like so;
location = …
0
votes
1answer
33 views
Iframe Url after initial page is navigated from
Hey i am wondering if their is a way to get the URL of the page showen in a iframe with php or javascript. i want it so that when i user clicks a link in the iframe so it isnt the initial iframed page …
2
votes
4answers
123 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. …
1
vote
1answer
294 views
Why does my JavaScript / jQuery interaction with a child window raise a “permission denied” error?
I have some code that I would swear was working a month ago. However, now the code throws a
permission denied to get property Window.jQuery error. I can see this error in the Firefox error console.
…
1
vote
3answers
175 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 …
1
vote
3answers
149 views
Any logical loop holes in this idea for preventing Cross Site Request Forgery?
I've read several XSRF solutions that rely on adding more tokens to the response, which do help protect code that only runs on POST.
i.e. this would be a one step attack relying on a page that …
0
votes
2answers
304 views
How do I build an iframe with the same domain as the page in Safari/WebKit
The scene: I'm writing an embeddable widget. It takes the form of a <script> tag, which builds an iframe containing everything it needs to display. The iframe has no src, and the script writes …
0
votes
2answers
455 views
How do I bypass a same origin policy violation for one local file to another?
I'm trying to semi-recreate Mozilla's demo usage of JavaScript + <video> + <canvas> with files that aren't hosted on a server.
Loading my document causes the error console to report this …
0
votes
2answers
130 views
Do cross-domain policies restrict downloading from different protocols for the same domain?
Cross-domain policies restricts downloading content from another domain:
http://mysiteA.com <--NO--> http://myothersite.com
But is downloading from the same domain via a different …
6
votes
2answers
430 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 …
0
votes
1answer
994 views
Is there any way to bypass NS_ERROR_DOM_BAD_URI when cross site access is disabled?
I'm doing an XSS report for my university, and I'm doing some tests with calling external webpages using AJAX.
The code I'm using for this example is very simple, and one of my target case-studies is …
