Detect the type of network packets.

Issues related to configuring your network
Post Reply
hack3rcon
Posts: 757
Joined: 2014/11/24 11:04:37

Detect the type of network packets.

Post by hack3rcon » 2019/02/06 07:30:25

Hello.
How can I detect the type of network packets by a tool like "tcpdump"? For example, When a hacker use a tool like "Hping3" and flood an IP then what type of packets sending to the target by "Hping3"?

Thank you.

reallyrex
Posts: 10
Joined: 2018/05/03 15:33:31

Re: Detect the type of network packets.

Post by reallyrex » 2019/02/06 22:33:19

well, if you're really being flooded with packets, tcpdump may very well have issues capturing all that traffic, regardless of how big of a buffer you give it (-B). you may want to look into gulp https://staff.washington.edu/corey/gulp/. as far as viewing the traffic in real time, even with a capture filter ( to say ignore all ssh traffic from a known source ), it may be difficult to understand whats actually happening. you want to capture to a file, preferably rotating files of a determined size. from there you would either use the tshark command, or the wireshark gui, to parse through the data and see what was happening. Also, the man page for tcpdump is a good read https://www.tcpdump.org/manpages/tcpdump.1.html

hack3rcon
Posts: 757
Joined: 2014/11/24 11:04:37

Re: Detect the type of network packets.

Post by hack3rcon » 2019/02/08 12:53:09

reallyrex wrote:
2019/02/06 22:33:19
well, if you're really being flooded with packets, tcpdump may very well have issues capturing all that traffic, regardless of how big of a buffer you give it (-B). you may want to look into gulp https://staff.washington.edu/corey/gulp/. as far as viewing the traffic in real time, even with a capture filter ( to say ignore all ssh traffic from a known source ), it may be difficult to understand whats actually happening. you want to capture to a file, preferably rotating files of a determined size. from there you would either use the tshark command, or the wireshark gui, to parse through the data and see what was happening. Also, the man page for tcpdump is a good read https://www.tcpdump.org/manpages/tcpdump.1.html
I can't see any option for determining packet type!

Post Reply