欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

利用tcpdump抓包分析 xml 

程序员文章站 2022-05-29 23:22:16
...
1、抓包命令:tcpdump -i 网卡名称 port 9090   -s0 -w e.pcap

2、配合wireshark分析抓包数据
http://www.cnblogs.com/ggjucheng/archive/2012/01/14/2322659.html

3、curl 发送HTTP请求
   curl -H "Content-Type: application/soap+xml;charset=UTF-8" -X POST  --data "<?xml version=\"1.0\" encoding=\"UTF-8\"?><soapenv:Envelope xmlns:soapenv=\"http://www.w3.org/2003/05/soap-envelope\"><soapenv:Body><ns2:VMC_QueryBaseProperties xmlns:ns2=\"http://vp.zte.com\"><ns2:vmc_QueryBasePropertiesIn></ns2:vmc_QueryBasePropertiesIn></ns2:VMC_QueryBaseProperties></soapenv:Body></soapenv:Envelope>"  "http://127.0.0.1:9090/axis2c/services/vpservice"
相关标签: xml