DDoS Test Tool (Bombardier)

?
R
Bash

Automated tool for simulating DDoS attacks to stress-test web servers and network infrastructure. Helps identify vulnerabilities and performance bottlenecks under heavy load conditions.

1# Test with 1000 concurrent requests with maximum 2000 requests per sec during 30 seconds
2bombardier -c 1000 -l -d 30s -r 2000 -t 5s http://127.0.0.1:8000
3
4# This  endpoint /test against 5,000,000 requests using 125 connections.
5bombardier -c 125 -n 5000000 http://localhost:3000/test
6
7# Report
8Statistics        Avg      Stdev        Max
9  Reqs/sec      2015.20     511.21   14570.19
10  Latency        2.45ms     7.51ms   138.41ms
11  Latency Distribution
12     50%     1.95ms
13     75%     2.16ms
14     90%     2.43ms
15     95%     2.77ms
16     99%     5.73ms
17  HTTP codes:
18    1xx - 0, 2xx - 53556, 3xx - 0, 4xx - 6417, 5xx - 0

Created on 1/16/2021