Slowloris is basically an HTTP Denial of Service attack that affects threaded servers. It works like this:
- We start making lots of HTTP requests.
- We send headers periodically (every ~15 seconds) to keep the connections open.
- We never close the connection unless the server does so. If the server closes a connection, we create a new one keep doing the same thing.
This exhausts the servers thread pool and the server can't reply to other people.
Only Work on Apache Server (SlowLorisDoS checks it)
Clone using git, here's how you do it.
git clone https://github.com/aneopsy/SlowLorisDoS.git
cd SlowLorisDoS
python3 main.py example.com
usage: main.py [-h] [-p PORT] [-s SOCKETS] [-v] [-x] [--proxy-host PROXY_HOST]
[--proxy-port PROXY_PORT] [--https] [-t TIMEOUT] [-w WAIT]
[host]
Slowloris, low bandwidth stress test tool for websites
positional arguments:
host Host to perform stress test on
optional arguments:
-h, --help show this help message and exit
-p PORT, --port PORT Port of webserver, usually 80
-s SOCKETS, --sockets SOCKETS
Number of sockets to use in the test
-v, --verbose Increases logging
-x, --useproxy Use a SOCKS5 proxy for connecting
--proxy-host PROXY_HOST
SOCKS5 proxy host
--proxy-port PROXY_PORT
SOCKS5 proxy port
--https Use HTTPS for the requests
-t TIMEOUT, --timeout TIMEOUT
Timeout socket
-w WAIT, --wait WAIT Time to wait in loopback
However, if you plan on using the -x
option in order to use a SOCKS5 proxy for connecting instead of a direct connection over your IP address, you will need to install the PySocks
library (or any other implementation of the socks
library) as well. PySocks
is a fork from SocksiPy
by GitHub user @Anorov and can easily be installed by adding PySocks
to the pip
command above or running it again like so:
sudo pip3 install PySocks
You can then use the -x
option to activate SOCKS5 support and the --proxy-host
and --proxy-port
option to specify the SOCKS5 proxy host and its port, if they are different from the standard 127.0.0.1:8080
.
It is possible to modify the behaviour of slowloris with command-line arguments.
The code is licensed under the MIT License.