From 26fed44efb826d85a51fd48112e3632535ff414f Mon Sep 17 00:00:00 2001 From: G <52905881+giga-a@users.noreply.github.com> Date: Mon, 11 Jan 2021 12:04:20 -0800 Subject: [PATCH] [auto-b] fixed python & NodeJS CLI --websites "all" - ref 542d0eaf --- modules/fastscan.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/fastscan.js b/modules/fastscan.js index 545d145..97ce0c8 100644 --- a/modules/fastscan.js +++ b/modules/fastscan.js @@ -19,7 +19,7 @@ async function find_username_normal(req) { functions.push(find_username_site.bind(null, req.body.uuid, req.body.string, req.body.option, site)); } }); - const results = await async.parallelLimit(functions, 100); + const results = await async.parallelLimit(functions, 25); helper.verbose && console.log(`Total time ${new Date() - time}`); return results.filter(item => item !== undefined) }