如何用tshark提取所有http请求的tcp序列号?
出于某些研究原因,我需要获取 http 包的 tcp 序列号。我已经获得了 pcap 文件,那么我应该如何使用 tshark 来实现呢?
非常感谢您回答我的问题!!!
For some research reason, I need to get the http package's tcp sequence numbers. I have already got the pcap file, so how should I do that with tshark?
Thanks so much for answer my question!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样的事情应该做到这一点:
序列号是相对或绝对的,由 .wireshark/preferences 控制。默认情况下它是相对的(所以你会看到很小的数字)。如果您想要绝对序列号,请编辑
首选项
:Something like this should do it:
The sequence numbers are relative or absolute as controlled by .wireshark/preferences. By default it's relative (so you will see small numbers). If you want absolute sequence numbers, edit
preferences
:使用 tshark,
应用相应的 tcp 过滤器 (tcp.nxtseq),从此页面检查更多信息
https://www.wireshark.org/docs/dfref/t/tcp.html
Using tshark,
apply the correspoding tcp filter (tcp.nxtseq) check for more from this page
https://www.wireshark.org/docs/dfref/t/tcp.html