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

main
Elbert Alias 11 years ago
commit f7ae790c70

@ -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 });