180k views
0 votes
from kali linux, start a capture in wireshark for the esp20 interface. ping corpserver2 at . examine the icmp packets captured. use hping3 to launch an icmp flood attack against corpserver2. examine the captured icmp packets. answer the questions.

User Mezmo
by
7.7k points

1 Answer

1 vote

Final answer:

To start the capture in Wireshark for the esp20 interface in Kali Linux, follow these steps. You can then ping corpserver2 and examine the captured ICMP packets.

Step-by-step explanation:

To start a capture in Wireshark for the esp20 interface in Kali Linux, you need to follow these steps:

  1. Open the Wireshark application.
  2. Select the esp20 interface from the list of available network interfaces.
  3. Click on the 'Start' button to begin capturing packets on the esp20 interface.

After starting the capture, you can then ping corpserver2 using the following command in the terminal:

ping corpserver2

Once the ping is done, you can examine the ICMP packets captured in Wireshark by applying appropriate display filters and analyzing the packet details.

To launch an ICMP flood attack against corpserver2 using hping3, you can use the following command:

hping3 -c 10000 -d 120 -S -p 80 --flood corpserver2

After launching the attack, you can examine the captured ICMP packets in Wireshark to observe the impact of the flood attack on the network.

User Wfbarksdale
by
8.6k points