`
隐形的翅膀
  • 浏览: 497350 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

SOAP Debugging with tcpdump

 
阅读更多
You are on a Linux box (SOAP client) making a SOAP request to a SOAP server somewhere on port 80, to view the request and response with tcpdump here are the commands execute at shell.

Incoming SOAP envelope (server response)

tcpdump  -nnvvlXSs 4096 src port 80

Outgoing SOAP envelope (client request)

tcpdump  -nnvvlXSs 4096 dst port 80

Of course if you have additional traffic going in and out from this box you can use the “and” operator to fine tune what you are after.


简单用法,可以分析soap数据包。

1.this is probably the easiest way to monitor SOAP messages.   
2.  
3.simply use   
4.  
5.#tcpdump -i eth0 -A -s 1024 port 80 | tee dump.log   
6.  
7.to log all the packet sent to port 80 to dump.log  



今天在尝试TTserver的Http协议接口,为了确定走的协议是否为Http,需要抓包确定一下,
在windows下有很多工具很方便的抓包,linux下只能通过命令行来操作了,下面简单记录一下
tcpdump工具的使用:

1.//抓包,   
2.tcpdump -nX -s 0 -w cap.raw host 123.123.123.123 and port 2978  
3.//读包   
4.tcpdump -r cap.raw -A  

分享到:
评论

相关推荐

    Debugging With GDB中文版

    This is the Tenth Edition, of Debugging with GDB: the GNU Source-Level Debugger for GDB (GDB) Version 8.1.90.20180814-git. Copyright © 1988-2018 Free Software Foundation, Inc. Permission is granted...

    Debugging With GDB 无水印pdf

    Debugging With GDB 英文无水印pdf pdf所有页面使用FoxitReader和PDF-XChangeViewer测试都可以打开 本资源转载自网络,如有侵权,请联系上传者或csdn删除 本资源转载自网络,如有侵权,请联系上传者或csdn删除

    debugging with gdb中文带书签特别版.pdf

    《Debugging with gdb中文带书签特别版》是一本关于GNU源代码级调试器GDB的中文教程书籍,适配gdb版本6.8.50.***。书中详细介绍了GDB的各种功能、命令以及如何使用该工具进行有效的程序调试。 首先,书中提供了一个...

    debugging_with_gdb(中文版pdf)

    根据提供的信息,我们可以总结并详细解释与“debugging_with_gdb(中文版pdf)”相关的知识点。这份文档似乎是一份关于使用 GDB(GNU Debugger)进行调试的手册或指南的中文版 PDF 文件。GDB 是一个非常强大的开源调试...

    Debugging with Fiddler

    Debugging with Fiddler,介绍Fiddler的书籍

    Debugging with gdb Tenth Edition

    《使用gdb进行调试 第十版》是介绍GNU源码级调试器gdb的官方文档。本书由Richard Stallman、Roland Pesch、Stan Shebs等多位作者撰写,旨在为用户提供一个全面的gdb使用指南,涵盖gdb版本7.5至1.0.53。...

    Debugging-with-GDB.zip_Debugging with GDB

    《使用GDB进行调试》 GDB(GNU Debugger)是开源社区GNU开发的一款强大的源代码级调试器,广泛应用于C、C++等编程语言。它允许程序员在运行时检查和控制程序,查找并修复错误,从而提高软件的质量和可靠性。...

    Debugging with gdb(英文)

    gdb调试工具官方介绍文档 Debugging with gdb The gnu Source-Level Debugger Tenth Edition, for gdb version 10.0.50.20200111-git (GDB) Richard Stallman, Roland Pesch, Stan Shebs, et al.

    Debugging.with.Fiddler

    Debugging.with.Fiddler 带书签

    Debugging with Fiddler 2012 (英文版 Eric Lawrence 亚马逊5星 热评 畅销书) 网络编程 Web服务开发调试利器

    Debugging with Fiddler 2012 (英文版 Eric Lawrence 亚马逊5星 热评 畅销书) 网络编程 Web服务开发调试利器 亚马逊11个客户全部评5星,热评畅销书。 Web Services 开发必备。

    debugging with GDB

    ### 使用GDB进行调试 #### 概述 GDB(GNU调试器)是GNU项目下的一款强大而灵活的源码级调试工具,广泛应用于Linux环境下C/C++等语言编写的程序调试。它允许用户对程序执行过程进行控制,观察变量状态,分析程序...

    debugging with gdb

    ### 使用GDB进行调试 #### 概述 GDB(GNU调试器)是GNU项目下的一款源代码级调试工具,广泛应用于Linux系统中程序的调试工作。它支持多种编程语言,如C、C++等,并提供了丰富的命令集来帮助开发者进行程序的调试。...

    Debugging with GDB 10th edition

    ### GDB:GNU源代码级调试器 #### 知识点一:GDB概述与许可协议 - **GDB简介**:GDB(GNU Debugger)是GNU项目的一部分,是一款广泛使用的开源程序调试工具,用于调试C、C++、Objective-C等语言编写的程序。...

    GDB电子书

    《使用GDB进行调试》是一本详尽介绍GDB调试器的电子书,该书作为第九版,对应GDB版本5.1.1,由Richard Stallman、Roland Pesch、Stan Shebs等人共同编著,版权归属于1988至2002年的自由软件基金会(Free Software ...

Global site tag (gtag.js) - Google Analytics