-
Notifications
You must be signed in to change notification settings - Fork 457
/
crossdomain.xml
21 lines (20 loc) · 1.08 KB
/
crossdomain.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<site-control permitted-cross-domain-policies="all"/>
<allow-access-from domain="local.git" secure="false"/>
<allow-access-from domain="local.evil" secure="false"/>
<allow-access-from domain="rubaxa.org" secure="false"/>
<allow-access-from domain="*.rubaxa.org" secure="false"/>
<allow-access-from domain="github.com" secure="false"/>
<allow-access-from domain="*.github.com" secure="false"/>
<allow-access-from domain="github.io" secure="false"/>
<allow-access-from domain="*.github.io" secure="false"/>
<allow-access-from domain="mail.ru" secure="false"/>
<allow-access-from domain="*.mail.ru" secure="false"/>
<allow-access-from domain="imgsmail.ru" secure="false"/>
<allow-access-from domain="*.imgsmail.ru" secure="false"/>
<allow-access-from domain="img.imgsmail.ru" secure="false"/>
<allow-access-from domain="*.img.imgsmail.ru" secure="false"/>
<allow-http-request-headers-from domain="*" headers="*" secure="false"/>
</cross-domain-policy>