-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
51 lines (48 loc) · 1.82 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import * as fs from "fs/promises";
import * as worker_threads from "worker_threads";
import * as util from "./libs/util.js";
async function main() {
const config = JSON.parse(await fs.readFile("./config.json", "utf-8"));
const thread_cnt = config.thread_cnt || 1;
const concurrency_per_thread = config.concurrency_per_thread || 8;
/** @type {string[]} */
const ips_or_ranges = config.hosts || [];
const ips = ips_or_ranges.reduce((prev, curr)=> {
if(curr.includes('/'))
return prev.concat(util.ipv4CIDRToRange(curr));
else
return prev.concat([curr]);
}, []);
const ips_slices = Array.from({ length: thread_cnt }).map((i, n)=> {
return ips.slice(n * ips.length / thread_cnt, (n+1) * ips.length / thread_cnt);
});
console.log(ips_slices);
const workers = Array.from({ length: thread_cnt }).map((i, n)=> {
return new worker_threads.Worker('./do_scan.js', {
execArgv: ["--tls-max-v1.2"],
workerData: {
ips: ips_slices[n],
strategy: "fuck",
concurrency: concurrency_per_thread
}
});
});
workers.forEach((i,n)=> {
i.on("message", async (msg)=> {
const obj = Object.fromEntries(msg);
await fs.writeFile(`./result-${n}.json`, JSON.stringify(obj, (key, value)=> {
if(value instanceof Set)
return Array.from(value);
if(value instanceof Map)
return Object.fromEntries(value);
return value;
}, 2));
});
});
await Promise.all(workers.map(i=> new Promise((resolve, reject)=> {
i.on("error", reject);
i.on("exit", resolve);
})));
console.log("--- ALL JOBS HAS BEEN DONE ---");
}
main().catch(console.log);