Sniffing and displaying TCP packets in UTF-8

后端 未结 3 1664
一生所求
一生所求 2021-02-09 12:23

I am trying to use tcpdump to display the content of tcp packets flowing on my network. I have something like:

tcpdump -i wlan0 -l -A

The -A op

3条回答
  •  离开以前
    2021-02-09 13:14

    tcpdump -i wlan0 -w packet.ppp
    

    This command stores the packets in packet.ppp

    After that open it in wireshark

    wireshark packet.ppp
    

    right click on the packet and then select Follow tcp packet

    Then you can have available different formats to view the data in wireshark.

提交回复
热议问题