Basic GUI Based SlowLoris DoS Tool
This is a basic GUI(Java) based DoS Tool (SlowLoris) developed for educational and research purposes only. There's no intention to cause any harm to third-party services.
Slowloris is a type of denial of service attack tool invented by Robert "RSnake" Hansen which allows a single machine to take down another machine's web server with minimal bandwidth and side effects on unrelated services and ports.
Slowloris tries to keep many connections to the target web server open and hold them open as long as possible. It accomplishes this by opening connections to the target web server and sending a partial request. Periodically, it will send subsequent HTTP headers, adding to—but never completing—the request. Affected servers will keep these connections open, filling their maximum concurrent connection pool, eventually denying additional connection attempts from clients. https://en.wikipedia.org/wiki/Slowloris_(computer_security)
mvn clean package
java -jar slowloris.jar
- Host: The target host (must be a valid domain, ex: http://localhost, http://192.168.0.1);
- Path: The request path (ex: /index.php, /blog);
- Port: The HTTP port;
- Threads: The number of threads to open.
This code is open-source software licensed under the MIT license .