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

main
Elbert Alias 11 years ago
commit f7ae790c70

@ -222,7 +222,7 @@
"Apache Tomcat": { "Apache Tomcat": {
"website": "tomcat.apache.org", "website": "tomcat.apache.org",
"cats": [ 22 ], "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": { "Apache Traffic Server": {
"website": "trafficserver.apache.org/", "website": "trafficserver.apache.org/",
@ -3429,6 +3429,12 @@
"website": "foundation.zurb.com", "website": "foundation.zurb.com",
"cats": [ 18 ], "cats": [ 18 ],
"html": "<link[^>]+foundation[^>\"]+css" "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 ) { if ( matches ) {
matches.forEach(function(match, i) { matches.forEach(function(match, i) {
// Parse ternary operator // Parse ternary operator
var ternary = new RegExp('\\\\' + i + '\\?([^:]+):(.+)$').exec(version); var ternary = new RegExp('\\\\' + i + '\\?([^:]+):(.*)$').exec(version);
if ( ternary && ternary.length === 3 ) { if ( ternary && ternary.length === 3 ) {
w.log({ match: match, i: i, ternary: ternary }); w.log({ match: match, i: i, ternary: ternary });