Cross-domain policy refers to the browser restrictions on script, stylesheet, and plugin execution across domains, protocols, and ports.
1
vote
1answer
34 views
heroku node js simple cross-domain issue
I worked with two nodejs (no Express) application :
webprocess
dataprocess
dataprocess sends back a rest message with this code :
var status = 200;
if (responseStatus) {
status = ...
0
votes
1answer
31 views
does Facebook allow CORS headers?
how can I discover if Facebook allowes cross domain requests ? Can I make a Javascript wich can handle a Cross Domain Request to Facebook?
0
votes
0answers
110 views
JW player 6 cross domain access denied
I have a HLS stream that can be viewed on an iPhone but not on a desktop. It returns the error "Cannot load M3U8: crossdomain access denied" message, but I have crossdomain.xml placed on wowza server ...
0
votes
1answer
31 views
Accessing objects and variables from swf across domains
I am trying to access a variable from a test.swf on b.com from a parent.swf on a.com.
test.swf:
Security.allowDomain("a.com");
var test = 0;
parent.swf:
var loader:Loader = new Loader();
var ...
0
votes
0answers
22 views
Detecting toolbar size from with in an Iframe
I would like to be able to detect the size of the viewport of a browsers (the browser without
the toolbars/scrollbars/border) from within a cross-domain iframe.
Regularly I could use ...
0
votes
0answers
57 views
Need Iframe content height for finding scroll position
I have a page which has an iframe with an external source.i.e the source from a different domain. My aim is to find the scroll position of that iframe content for analytics. I need to find the iframe ...
0
votes
1answer
75 views
Master policy file vs. crossdomain.xml in subdirectories
I have a swf on localhost which tries to read a text file from another server - example.com. The text file is in a subdirectory as follows: example.com/test/example.txt
First here are the contents of ...
0
votes
1answer
46 views
getJSON's fail event not being called when internet drops
I am running a single webpage 24/7 on two computers. One computer is running IE8, the other IE9. On this webpage is a javascript timer which runs $.getJSON to retrieve a cross-domain JSON object. The ...
1
vote
0answers
71 views
“ Message: Security error.” While Requesting a Https Uri using WebClient OR HttpWebRequest using SilverLight Client
My Silverlight Client and REST Web Server(Implented using ASP.NET Handlers) both are on same domain.
Both HTTP and HTTPS protocol bindings are configured in IIS 7.0
When Request a URI using HTTPS , i ...
0
votes
1answer
87 views
Socket.IO flashsocket security sandbox error
I have been playing around with node.js and socket.io for the past few days. Everything works fine on my local machine (windows using iss for a webserver), but when uploading it to my remote server ...
0
votes
1answer
159 views
Cross Domain AJAX Post using easyXdm
I am trying to get a cross domain AJAX post to work using the easyXdm library.
In my local development environment I have two sites:
1. http://localhost/MySite/ws/easyXDM/cors/index.html (EasyXdm ...
1
vote
0answers
75 views
Do cross domain iFrames cause security errors in different browsers?
We need to host another tool inside our own website (i.e. www.OurCompany.com) in an iFrame. The tool resides on a different URL (i.e. www.TheToolSite.com).
We do not need to interact with the content ...
-1
votes
1answer
120 views
Connecting to TCP server from flash socket on local environment
I have made a swf file for distribution version to clients to use on their computer.
and I have a TCP server connected from that swf file.
before testing it, I have read some articles related to ...
0
votes
0answers
679 views
How to suppress “Unsafe JavaScript attempt to access frame with URL” when doing cross-domain access
Does anyone know of a good solution to suppress the warning messages that are shown in the Chrome dev tool console "Unsafe JavaScript attempt to access frame with URL" that happens when trying to ...
2
votes
0answers
49 views
content security policy for HTML5 page with Social Plugins and API calls
What content security policy is recommended to use for an HTML5 page with the following:
1) Facebook plugins
2) Twitter plugins
3) Google Plus One
4) Google Translate
6) from cdn.mywebsite.com
...
0
votes
1answer
118 views
Cross Domain URL in jQuery
I have made a very simple index.php code as following
<!DOCTYPE html>
<head>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" ...
0
votes
0answers
91 views
Cannot load crossdomain.xml file
My website autoredirect in https everything that is http with the .htaccess.
One page has to serve an embedded .swf not secured by https
To prevent the failed loading of the embed I had to redirect ...
8
votes
3answers
646 views
Can't access an about:blank iframe in IE after the document.domain changes
Does anyone know of any workarounds to creating an about:blank iframe on a page in IE when the document.domain has changed?
IE doesn't seem to allow access to empty/dynamic iframes after the ...
1
vote
1answer
74 views
.getJSON works, .get does not
I have a function that uses .getJSON to get a JSON file from a server, get some data off it (a url is part of the data), and then call another function that needs to grab info from the parsed url (a ...
2
votes
2answers
436 views
Flash policy file not working (same domain, different port)
I'm at a loss. I can't figure out why Flash is not loading my policy file properly. I'm testing this from the Flash Debugger.
I've also tried from http://127.0.0.1:80/game (it sends a request to ...
4
votes
1answer
68 views
Interaction between JS and API server on different port
I have an API server running on port AAAA and the JS frontend app (emberjs, using yeoman) running on port BBBB on the development machine. On the live server these ports will be the same. ...
0
votes
2answers
42 views
Does Policy Request needs Delay?
My friend and i have been working on a multiplayer game in as3. Tests without policy request has successed on local, but at last we added it so we could test on the browser.
Weird stuff happened, ...
1
vote
1answer
168 views
asp.net web api security error from silverlight client
I am trying to access an ASP.NET WEB API service from a Silverlight client and am getting an error returned from the webclient of "Security Error." The service works fine from Fiddler or from a ...
2
votes
2answers
149 views
Dart application and cross domain policy
Is it possible to disable cross domain security checks in Chromium while running dart application in Dart VM ?
The problem is that it is running on its own port, and thus my application can't send ...
0
votes
1answer
131 views
Flex using assql to connect to database, Flex - Security Sandbox violation
I write a small flex project that connect to local database
the code is below:
_dbData=new DataBaseData();
_dbData.username="root";
_dbData.password="woxnsk";
...
0
votes
3answers
104 views
Detect when an iframe returns from a cross domain site
I have an iframe on my page that submits a form to a third party page. Once that third party is done with its calculation, it redirects back to my own site. I would like to detect when the iframe ...
2
votes
1answer
123 views
Upload to S3 with Flash isn't working
I'm using the YUI Uploader to try and upload directly to S3. The HTML5 version works fine, but when I fall back to Flash, it's failing. S3 is kicking back the error:
<Message>Invalid according ...
0
votes
0answers
29 views
Cross Domain in FourSquare Api
I'm getting cross domain issues with ouath 2 trying to connect to FourSquare Api, i get the token but it can be load it put the code that i use after the callback with the code
ajaxParams : ...
0
votes
1answer
90 views
How do I serve Flash policy files from an Eclipse plugin?
I have an Eclipse plugin that needs to open a pair of sockets to a flash application running on the local machine. Flash requires a policy file (blob of XML) giving permissions to access the ports in ...
2
votes
5answers
62 views
How do I protect sensitive information from cross site access?
My web application displays some sensitive information to a logged in user. The user visits another site without explicitly logging out of my site first. How do I ensure that the other site can not ...
1
vote
2answers
310 views
Zend Framework 2 - AJAX Request from other server
I have 2 domains (domain A, domain B).
On domain A is placed ZF2 application, and everything is ok.
On domain B is placed Landing Page (small site with form to collect data).
From Landing Page I ...
1
vote
0answers
17 views
With the implementation of the CORS security model will the cross-domain extension “permission” privilege be eliminated or absolete?
I have referenced the link below but the answers provided are not conclusive. If in fact the purpose of CORS from the website provider point of view is to restrict programmatic access to their ...
0
votes
0answers
473 views
Django Admin popups broken
I'm working on a Django project and, as part of good practices, I have my static content and media being served from cookieless domains. Of course, in order to do this and still use things like ...
0
votes
1answer
30 views
Swf restrictions
I have two swf (A and B) and inside A i am doing a urloader of B. It works fine. They are in the same directory.
Now what i want is to prevent everyone from accessing B (except A). I am using ...
1
vote
1answer
213 views
Cloud Foundry and Socket.IO Cross Domain Policy Issue
I'm receiving this kind of message everytime the browser load this URL:
http://volkova.cloudfoundry.com/socket.io/socket.io.js
<?xml version="1.0"?><!DOCTYPE cross-domain-policy SYSTEM ...
1
vote
1answer
206 views
Read parent variable from an cross domain iframe
i know there is a lot of ask about cross domain iframe but i definetly can solve my problem which is :
On page www.domain_A.com/test.php
<div id="test">this what i want</div>
<iframe ...
0
votes
1answer
99 views
Flash Player looks for crossdomain in site root URL and hangs
I have flash on my site.com and resources (images) on other site with IP address only (suppose 1.1.1.1).
I have itemrenderers with s:Image sorce="{FullPathTo1.1.1.1/imageName}".
In ...
0
votes
0answers
111 views
JSON/JSONP/PHP Headache D:
Ok, so basically what I am trying to do is bypass javascript's cross-domain/same-origin restrictions so that we can include a tagline at the bottom of clients' sites (that is hosted on our server and ...
0
votes
1answer
97 views
Ajax call works on one host but not on another
I am making an ajax call to the UPS address validation webservice.
If i make the call from my application with this domain it works (http://serverone.org/addrvalidator)
But it doesn't work if i use ...
0
votes
0answers
85 views
Silverlight Hosting - access a svc service from subdomain
I am hosting a Silverlight 4 application. The application uses an external wcf service which is developed by another company. this webservice had to be installed in the server. The installation ...
0
votes
0answers
223 views
Cross Domain Popup Communication to Parent Window
I have two sites one.com and two.com. After doing certain action on one.com, I am opening two.com and once the processing is finshed on two.com I want to notify it back to one.com.
I have the control ...
3
votes
3answers
118 views
Read javascript file in browser despite syntax error
Let's say I have a csv on a domain that I don't control at all and I want access to it on my page:
<script src="http://domainidontcontrol/blah.csv"></script>
Of course, this will throw ...
0
votes
0answers
126 views
Google Conversion Tracking code in https lightbox causing cross-domain error
Our homepage is non-secure http and a user signs up for a 30-day free trial of our product by clicking on a button that opens our registration form in a secure https iframe lightbox. The registration ...
0
votes
0answers
1k views
Using JSONRPC with JQuery?
How do I get JSONRPC working properly with JQuery on the client-side, on the referenced types of calls?
To represent my attempt, I've tried to create the smallest possible test-case:
Server[1]
...
0
votes
3answers
258 views
How to access the data from different server through AJAX call without JSONP?
I'm working on the project where the client has the back-end code in ServerA, and my front-end code, which is supposed to talk to back-end via AJAX requests is on ServerB, and they are in different ...
1
vote
1answer
72 views
actionscript 3 security class import
So affter just getting a (my first) working server up, (nothing big or impressive yet, kinof useless without the client eh?) and testing it with a whip-together C++ client, the next step is to make a ...
0
votes
1answer
516 views
responding policy-file-request of flash from c#
i have developed a server application with c# and a client application with flash action script 3.0. Flash socket asking for a policy file when called from a browser with a message
...
2
votes
1answer
31 views
Domain policy files on java phones
Anybody knows there are any tools available to view domain policy files on Java phones?
Help is highly appreciable.
Thanks
1
vote
1answer
736 views
Cross-subdomain AJAX works in Chrome, not IE
I have a local build of my site running at local.mydomain.com. I'm making ajax requests to api.mydomain.com which is running on an AWS server and returns JSON. In Chrome, I can call the API no ...
0
votes
1answer
193 views
Do I need a cross domain policy?
I'm working with a flex (3.5) application with a swf embedded in a php page which is communicating with a C# asp.net website, when I ran my project in debug mode through Visual Studio's 2008 and the ...

