|
NAMEslowhttptest —
Denial Of Service attacks simulator
SYNOPSIS
DESCRIPTIONTheslowhttptest implements most common low-bandwidth
Application Layer DoS attacks and produces CSV and HTML files with test
statistics.
Currently supported attacks are:
The options are as follows:
EXAMPLESStart a slowloris test of host.example.com with 1000 connections, statistics goes into my_header_stats, interval between follow up headers is 10 seconds and connection rate is 200 connections per second:$ slowhttptest -c 1000 -H -g -o
my_header_stats -i 10 -r 200 -t GET -u https://host.example.com/index.html -x
24 -p 3 Start slow POST test of host.example.com with 3000 connections, statistics goes into my_body_stats, interval between follow up headers is 110 seconds, connection rate is 200 connections per second, Content-Length header value is 8192, maximum length of follow up data is random value limited by 10 bytes and probe connections waits 3 seconds for HTTP response before marking server as DoSed: $ slowhttptest -c 3000 -B -g -o
my_body_stats -i 110 -r 200 -s 8192 -t FAKEVERB -u
http://host.example.com/loginform.html -x 10 -p 3 Start Range Header test of host.example.com with 1000 connections, use HEAD verb, and generate HTTP header Range:0-, x-1, x-2, x-3, ... x-y, where x is 10 and y is 3000, connection rate is 500: interval between follow up headers is 10 seconds and connection rate is 200 connections per second: $ slowhttptest -R -u
http://host.example.com/ -t HEAD -c 1000 -a 10 -b 3000 -r 500 Start Slow Read test of host.example.com with 8000 connections, no
statistics is generated, connection rate is 200 connections per second, TCP
advertised window size is a random value between 512 and 1024,
$ slowhttptest -c 8000 -X -r 200 -w
512 -y 1024 -n 5 -z 32 -k 3 -u https://host.example.com/resources/index.html
-p 3 Start Slow Read test of host.example.com through HTTP proxy server
at 10.10.0.1:8080 with 8000 connections, no statistics is generated, the
rest test values are default. $ slowhttptest -d 10.10.0.1:8080 -c
8000 -X -u https://host.example.com/resources/index.html Start Slow Read test of host.example.com and direct probe traffic
through HTTP proxy server at 10.10.0.1:8080 with 8000 connections, no
statistics is generated, the rest test values are default. Specifying
another connection channel for probe connections helps to make sure that
$ slowhttptest -e 10.10.0.1:8080 -c
8000 -X -u https://host.example.com/resources/index.html AUTHORSergey Shekyan ⟨shekyan@gmail.com⟩.Project page ⟨https://github.com/shekyan/slowhttptest/⟩.
Visit the GSP FreeBSD Man Page Interface. |