Merge branch 'master' of github.com:ElbertF/Wappalyzer

main
Elbert Alias 11 years ago
commit f7ae790c70

@ -222,7 +222,7 @@
"Apache Tomcat": {
"website": "tomcat.apache.org",
"cats": [ 22 ],
"headers": { "Server": "Apache-Coyote(/1\\.1)?\\;version:\\1?4.1<: " }
"headers": { "Server": "Apache-Coyote(/1\\.1)?\\;version:\\1?4.1<:" }
},
"Apache Traffic Server": {
"website": "trafficserver.apache.org/",
@ -3429,6 +3429,12 @@
"website": "foundation.zurb.com",
"cats": [ 18 ],
"html": "<link[^>]+foundation[^>\"]+css"
},
"October CMS": {
"website": "octobercms.com",
"cats": [ 1 ],
"headers": { "Set-Cookie": "october_session=" },
"implies": "Laravel"
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 700 B

@ -78,7 +78,7 @@ var wappalyzer = (function() {
if ( matches ) {
matches.forEach(function(match, i) {
// Parse ternary operator
var ternary = new RegExp('\\\\' + i + '\\?([^:]+):(.+)$').exec(version);
var ternary = new RegExp('\\\\' + i + '\\?([^:]+):(.*)$').exec(version);
if ( ternary && ternary.length === 3 ) {
w.log({ match: match, i: i, ternary: ternary });

Loading…
Cancel
Save