Files
OneForAll-mirror/data/rules/whatweb/crossdomain.xml.json
T
2020-07-29 00:02:06 +08:00

25 lines
693 B
JSON

{
"name": "crossdomain_xml",
"author": "Brendan Coles <bcoles@gmail.com>",
"version": "0.1",
"description": "This plugin extracts allowed domain from crossdomain.xml",
"website": null,
"matches": [
{
"text": "<cross-domain-policy>",
"url": "crossdomain.xml"
},
{
"text": "<site-control permitted-cross-domain-policies=\"none\"/>",
"string": "none",
"module": "Permit",
"url": "crossdomain.xml"
},
{
"module": "Allow",
"url": "crossdomain.xml",
"regexp": "(?-mix:<allow-access-from domain=\"([^\"]+)\")"
}
]
}