Stressing tools are used to create DoS attacks or to create the stress test for different applications so as take appropriate measures for the future. This is about Kali Linux – Stressing Tools.
All the Stress testing tools are found in Applications â 02-Vulnerability Analysis â Stress testing.
All Stress testing test will be done on metsploitable machine which has IP of 192.168.1.102
Slowhttptest
Slowhttptest is one of the DoS attacking tools. It especially uses HTTP protocol to connect with the server and to keep the resources busy such as CPU and RAM. Letâs see in detail how to use it and explain its functions.
To open slowhttptest, first open the terminal and type âslowhttptest âparametersâ.
You can type âslowhttptest âhâ to see all the paramenters that you need to use. In case you receive an output, âCommand not foundâ you have to first type âapt-get install slowhttptestâ.
Then after installation, again type slowhttptest âh
Type the following command â
slowhttptest -c 500 -H -g -o outputfile -i 10 -r 200 -t GET âu http://192.168.1.202/index.php -x 24 -p 2
Where,
- (-c 500) = 500 connections
- (-H) = Slowloris mode
- -g = Generate statistics
- -o outputfile = Output file name
- -i 10 = Use 10 seconds to wait for data
- -r 200 = 200 connections with -t GET = GET requests
- -u http://192.168.1.202/index.php = target URL
- -x 24 = maximum of length of 24 bytes
- -p 2 = 2-second timeout
Once the test starts, the output will be as shown in the following screenshot, where you can notice that the service is available.
After a while, at the 287 connection the service goes down. This means that the server can handle a maximum of 287 HTTP connections.
Inviteflood
Inviteflood is a SIP/SDP INVITE message flooding over UDP/IP. It executes on a variety of Linux distributions. It carries out DoS (Denial of Service) attacks against SIP devices by sending multiple INVITE requests.
To open Inviteflood, first open the terminal and type âinviteflood âparametersâ
For help, you can use âinviteflood âhâ
Next, you can use the following command â
inviteflood eth0 target_extension target_domain target_ip number_of_packets
Where,
- target_extension is 2000
- target_domain is 192.168.x.x
- target_ip is 192.168.x.x
- number_of_packets is 1
- -a is alias of SIP account
Iaxflood
Iaxflood is a VoIP DoS tool. To open it, type âiaxflood sourcename destinationname numpacketsâ in the terminal.
To know how to use, type âiaxflood âhâ
thc-ssl-dos
THC-SSL-DOS is a tool to verify the performance of SSL. Establishing a secure SSL connection requires 15x more processing power on the server than on the client. THCSSL-DOS exploits this asymmetric property by overloading the server and knocking it off the Internet.
Following is the command â
thc-ssl-dos victimIP httpsport âaccept
In this example, it will be â
thc-ssl-dos 192.168.1.1 443 âaccept
Its output would be as follows â
Kali Linux Stressing Tools
Next Topic : Click Here
Pingback: Kali Linux - Social Engineering - Adglob Infosystem Pvt Ltd