From 746a2f93d019e7901be3bfd4bbb1d3ff7d7ce453 Mon Sep 17 00:00:00 2001 From: Elbert Alias <77259+AliasIO@users.noreply.github.com> Date: Fri, 21 Feb 2020 10:43:37 +1100 Subject: [PATCH] Remove false positives --- src/wappalyzer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wappalyzer.js b/src/wappalyzer.js index 66d50d2b2..f6ff1b8b5 100644 --- a/src/wappalyzer.js +++ b/src/wappalyzer.js @@ -322,7 +322,7 @@ class Wappalyzer { * */ ping() { - if (Object.keys(this.hostnameCache).length > 25) { + if (Object.keys(this.hostnameCache).length > 50) { this.driver.ping(this.hostnameCache); this.hostnameCache = {};