4
<cross-domain-policy>
 <allow-access-from domain="*" secure="false"/>
 <site-control permitted-cross-domain-policies="master-only"/>
</cross-domain-policy>

I would like to ask two questions:

  1. Is this crossdomain.xml vulnerable (the file is placed on the root of the host e.g. www.example.com/crossdomain.xml)?

  2. How I can exploit or test similar files?

schroeder
  • 123,438
  • 55
  • 284
  • 319
Michal Koczwara
  • 1,580
  • 3
  • 15
  • 27
  • 1
    I'm sure you've seen this because it's from a quick google but http://sethsec.blogspot.com/2014/03/exploiting-misconfigured-crossdomainxml.html looks like the most comprehensive resource for exploiting this type of vulnerability. – Justin Moore Aug 19 '15 at 21:20

1 Answers1

7

This crossdomain.xml policy file revokes all protection that the Same Origin Policy provides.

I use the crossdomain proof of concept tool, which has a simple interface to test SOP bypasses.

rook
  • 46,916
  • 10
  • 92
  • 181