For all commands, you will need root permissions. Use it from root or with sudo. Show all packets with URG flag: tcpdump ‘tcp[13] & 32 != 0’ Show all packets with ACK flag: tcpdump ‘tcp[13] & 16 != 0’ Show all packets with PSH flag: tcpdump ‘tcp[13] & 8 != 0’ Show all packets with…
Where there is a shell, there is a way