views:

83

answers:

1

What policy would be enforced by the following crossdomain.xml that contains no allow statements.

<cross-domain-policy>
  <site-control permitted-cross-domain-policies="all"/>
</cross-domain-policy>

Does this implicitly deny or accept everything?

+1  A: 

I haven't checked but since by default the requests are blocked, I'd say that that will also deny any request coming from a different subdomain (this depends on the Flash Player version though). I think FP7 blocked on the top level domain, and everything after that (FP8, FP9, FP10) block everything on the subdomain level.

Details on this can be found from Adobe http://www.adobe.com/devnet/flashplayer/articles/fplayer9%5Fsecurity.html

Matti