Refactoring

main
Elbert Filius 8 years ago
parent f445a79c50
commit f0073652cb

@ -6,7 +6,6 @@
<script src="js/browser-polyfill.js"></script> <script src="js/browser-polyfill.js"></script>
<script src="js/wappalyzer.js"></script> <script src="js/wappalyzer.js"></script>
<script src="js/defaults.js"></script>
<script src="js/driver.js"></script> <script src="js/driver.js"></script>
<script src="js/network.js"></script> <script src="js/network.js"></script>
</head> </head>

@ -14,12 +14,12 @@ var wappalyzer = (function() {
*/ */
var Application = function(app, detected) { var Application = function(app, detected) {
this.app = app; this.app = app;
this.confidence = {}; this.confidence = { };
this.confidenceTotal = 0; this.confidenceTotal = 0;
this.detected = Boolean(detected); this.detected = Boolean(detected);
this.excludes = []; this.excludes = [ ];
this.version = ''; this.version = '';
this.versions = []; this.versions = [ ];
}; };
Application.prototype = { Application.prototype = {
@ -27,7 +27,9 @@ var wappalyzer = (function() {
* Calculate confidence total * Calculate confidence total
*/ */
getConfidence: function() { getConfidence: function() {
var total = 0, id; var
id,
total = 0;
for ( id in this.confidence ) { for ( id in this.confidence ) {
total += this.confidence[id]; total += this.confidence[id];
@ -67,7 +69,7 @@ var wappalyzer = (function() {
this.detected = true; this.detected = true;
// Set confidence level // Set confidence level
this.confidence[type + ' ' + ( key ? key + ' ' : '' ) + pattern.regex] = pattern.confidence ? pattern.confidence : 100; this.confidence[type + ' ' + ( key ? key + ' ' : '' ) + pattern.regex] = pattern.confidence || 100;
// Detect version number // Detect version number
if ( pattern.version ) { if ( pattern.version ) {
@ -81,15 +83,11 @@ var wappalyzer = (function() {
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 });
version = version.replace(ternary[0], match ? ternary[1] : ternary[2]); version = version.replace(ternary[0], match ? ternary[1] : ternary[2]);
w.log({ version: version });
} }
// Replace back references // Replace back references
version = version.replace(new RegExp('\\\\' + i, 'g'), match ? match : ''); version = version.replace(new RegExp('\\\\' + i, 'g'), match || '');
}); });
if ( version && this.versions.indexOf(version) < 0 ) { if ( version && this.versions.indexOf(version) < 0 ) {
@ -102,6 +100,10 @@ var wappalyzer = (function() {
} }
}; };
var asArray = function(value) {
return typeof value === 'string' ? [ value ] : value;
};
/** /**
* Call driver functions * Call driver functions
*/ */
@ -112,10 +114,6 @@ var wappalyzer = (function() {
return; return;
} }
if ( func !== 'log' ) {
w.log('w.driver.' + func);
}
return w.driver[func](args); return w.driver[func](args);
}; };
@ -127,25 +125,17 @@ var wappalyzer = (function() {
key, key,
parsed = {}; parsed = {};
// Convert array to object containing array
if ( patterns instanceof Array ) {
patterns = { main: patterns }
}
// Convert string to object containing array containing string // Convert string to object containing array containing string
if ( typeof patterns === 'string' ) { if ( typeof patterns === 'string' || patterns instanceof Array ) {
patterns = { main: [ patterns ] }; patterns = {
main: asArray(patterns)
};
} }
for ( key in patterns ) { for ( key in patterns ) {
parsed[key] = []; parsed[key] = [];
// Convert string to array containing string asArray(patterns[key]).forEach(function(pattern) {
if ( typeof patterns[key] === 'string' ) {
patterns[key] = [ patterns[key] ];
}
patterns[key].forEach(function(pattern) {
var attrs = {}; var attrs = {};
pattern.split('\\;').forEach(function(attr, i) { pattern.split('\\;').forEach(function(attr, i) {
@ -187,7 +177,9 @@ var wappalyzer = (function() {
var w = { var w = {
apps: {}, apps: {},
cats: null, cats: null,
ping: { hostnames: {} }, ping: {
hostnames: { }
},
adCache: [], adCache: [],
detected: {}, detected: {},
@ -197,19 +189,19 @@ var wappalyzer = (function() {
githubURL: 'https://github.com/AliasIO/Wappalyzer', githubURL: 'https://github.com/AliasIO/Wappalyzer',
}, },
validation: {
hostname: /(www.)?((.+?)\.(([a-z]{2,3}\.)?[a-z]{2,6}))$/,
hostnameBlacklist: /((local|dev(elopment)?|stag(e|ing)?|test(ing)?|demo(shop)?|admin|google|cache)\.|\/admin|\.local)/
},
/** /**
* Log messages to console * Log messages to console
*/ */
log: function(message, type) { log: function(message, type) {
if ( type === undefined ) { driver('log', {
type = 'debug'; message: JSON.stringify(message),
} type: type || 'debug'
});
if ( typeof message === 'object' ) {
message = JSON.stringify(message);
}
driver('log', { message: message, type: type });
}, },
/** /**
@ -218,15 +210,12 @@ var wappalyzer = (function() {
init: function() { init: function() {
w.log('w.init'); w.log('w.init');
// Checks
if ( w.driver === undefined ) {
w.log('no driver, exiting');
return;
}
// Initialize driver // Initialize driver
if ( w.driver !== undefined ) {
driver('init'); driver('init');
} else {
w.log('No driver, exiting');
}
}, },
/** /**
@ -303,11 +292,7 @@ var wappalyzer = (function() {
// Exclude app in detected apps only // Exclude app in detected apps only
for ( app in apps ) { for ( app in apps ) {
if ( w.apps[app].excludes ) { if ( w.apps[app].excludes ) {
if ( typeof w.apps[app].excludes === 'string' ) { asArray(w.apps[app]).excludes.forEach(function(excluded) {
w.apps[app].excludes = [ w.apps[app].excludes ];
}
w.apps[app].excludes.forEach(function(excluded) {
excludes.push(excluded); excludes.push(excluded);
}); });
} }
@ -336,12 +321,7 @@ var wappalyzer = (function() {
confidence = apps[app].confidence; confidence = apps[app].confidence;
if ( w.apps[app] && w.apps[app].implies ) { if ( w.apps[app] && w.apps[app].implies ) {
// Cast strings to an array asArray(w.apps[app].implies).forEach(function(implied) {
if ( typeof w.apps[app].implies === 'string' ) {
w.apps[app].implies = [ w.apps[app].implies ];
}
w.apps[app].implies.forEach(function(implied) {
implied = parsePatterns(implied)[0]; implied = parsePatterns(implied)[0];
if ( !w.apps[implied.string] ) { if ( !w.apps[implied.string] ) {
@ -391,8 +371,7 @@ var wappalyzer = (function() {
var app, match; var app, match;
for ( app in apps ) { for ( app in apps ) {
if ( w.detected[url][app].getConfidence() >= 100 ) { if ( w.detected[url][app].getConfidence() >= 100 && w.validation.hostname.test(hostname) && !w.validation.hostnameBlacklist.test(url) ) {
if ( /(www.)?((.+?)\.(([a-z]{2,3}\.)?[a-z]{2,6}))$/.test(hostname) && !/((local|dev(elopment)?|stag(e|ing)?|test(ing)?|demo(shop)?|admin|google|cache)\.|\/admin|\.local)/.test(url) ) {
if ( !w.ping.hostnames.hasOwnProperty(hostname) ) { if ( !w.ping.hostnames.hasOwnProperty(hostname) ) {
w.ping.hostnames[hostname] = { w.ping.hostnames[hostname] = {
applications: {}, applications: {},
@ -411,9 +390,6 @@ var wappalyzer = (function() {
if ( apps[app].version ) { if ( apps[app].version ) {
w.ping.hostnames[hostname].applications[app].version = apps[app].version; w.ping.hostnames[hostname].applications[app].version = apps[app].version;
} }
} else {
w.log('Ignoring hostname "' + hostname + '"');
}
} }
} }
@ -516,7 +492,7 @@ var wappalyzer = (function() {
header, header,
patterns = parsePatterns(w.apps[app.app].headers); patterns = parsePatterns(w.apps[app.app].headers);
if ( patterns.length && headers ) { if ( headers ) {
for ( header in patterns ) { for ( header in patterns ) {
patterns[header].forEach(function(pattern) { patterns[header].forEach(function(pattern) {
header = header.toLowerCase(); header = header.toLowerCase();

Loading…
Cancel
Save