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

24 lines
1002 B
JSON

{
"name": "Minify",
"author": "Andrew Horton",
"version": "0.1",
"description": "Minify is a PHP5 app that can combine multiple CSS or Javascript files, compress their contents (i.e. removal of unnecessary whitespace/comments), and serve the results with HTTP encoding (gzip/deflate) and headers that allow optimal client-side caching. It uses an enhanced port of Douglas Crockford's JSMin library. http://code.google.com/p/minify/",
"website": null,
"matches": [
{
"name": "script tag minify.php",
"regexp": "(?-mix:<script[^>]+src=[\"'][^>]+\\/minify.php\\?[a-z]+=[^>]+[\"'])"
},
{
"name": "script tag /min/g=",
"certainty": 75,
"regexp": "(?-mix:<script[^>]+src=[\"'][^>]*\\/min\\/g=[^>]+[\"'])"
},
{
"name": "script tag /min/js?",
"certainty": 75,
"regexp": "(?-mix:<script[^>]+src=[\"'][^>]*\\/min\\/js\\?[^>]+[\"'])"
}
]
}