up vote 23 down vote favorite
11
share [g+] share [fb]

I've been reading that Adobe has made crossdomain.xml stricter in flash 9-10 and I'm wondering of someone can paste me a copy of one that they know works. Having some trouble finding a recent sample on Adobe's site.

link|improve this question

feedback

5 Answers

up vote 25 down vote accepted

This is what I've been using for development:

<?xml version="1.0" ?>
<cross-domain-policy>
<allow-access-from domain="*" />
</cross-domain-policy>

This is a very liberal approach, but is fine for my application.

link|improve this answer
+1 for "very liberal approach, but fine for testing" – jcolebrand Nov 5 '10 at 14:43
1  
This works in a sense, but please note the risks: this means that any website can send requests to your website on the user's behalf, cookies and all, and read the response without issue. For most web apps, this is a huge security vulnerability. So, while this approach has its place, please know the risks and take a strict whitelist approach when necessary (which is almost always for production apps). – Matchu Aug 19 '11 at 23:38
feedback

If you're using webservices, you'll also need the 'allow-http-request-headers-from' element. Here's our default, development, 'allow everything' policy.

<?xml version="1.0" ?>
<cross-domain-policy>
  <site-control permitted-cross-domain-policies="master-only"/>
  <allow-access-from domain="*"/>
  <allow-http-request-headers-from domain="*" headers="*"/>
</cross-domain-policy>
link|improve this answer
5  
perhaps you should mention if / how this could be dangerous? – philfreo Nov 11 '10 at 23:14
feedback

Take a look at Twitter's:

http://twitter.com/crossdomain.xml

link|improve this answer
feedback

Here's a nice page w/ some discussion of what to have and not have on the file: http://www.hardened-php.net/library/poking_new_holes_with_flash_crossdomain_policy_files.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.