Build v5.4.18

main
Elbert Alias 7 years ago
parent 2da8ec82d3
commit 5e06cdb207

@ -2,7 +2,7 @@
"name": "wappalyzer", "name": "wappalyzer",
"description": "Uncovers the technologies used on websites", "description": "Uncovers the technologies used on websites",
"homepage": "https://github.com/AliasIO/Wappalyzer", "homepage": "https://github.com/AliasIO/Wappalyzer",
"version": "5.4.18", "version": "5.4.17",
"author": "Elbert Alias", "author": "Elbert Alias",
"license": "GPL-3.0", "license": "GPL-3.0",
"repository": { "repository": {

@ -4,7 +4,7 @@
"author": "Elbert Alias", "author": "Elbert Alias",
"homepage_url": "https://www.wappalyzer.com", "homepage_url": "https://www.wappalyzer.com",
"description": "Identify web technologies", "description": "Identify web technologies",
"version": "5.4.18", "version": "5.4.17",
"default_locale": "en", "default_locale": "en",
"manifest_version": 2, "manifest_version": 2,
"icons": { "icons": {

@ -200,13 +200,13 @@ class Wappalyzer {
* *
*/ */
ping() { ping() {
if ( Object.keys(this.hostnameCache).length > 1 ) { if ( Object.keys(this.hostnameCache).length > 100 ) {
this.driver.ping(this.hostnameCache); this.driver.ping(this.hostnameCache);
this.hostnameCache = {}; this.hostnameCache = {};
} }
if ( this.adCache.length > 1 ) { if ( this.adCache.length > 50 ) {
this.driver.ping({}, this.adCache); this.driver.ping({}, this.adCache);
this.adCache = []; this.adCache = [];

Loading…
Cancel
Save