I use packetbeat to capure http packet, but found some POST parameters can not be captured
packetbeat info :
**[root@localhost packetbeat]# /usr/share/packetbeat/bin/packetbeat --version**
**packetbeat version 5.0.0 (amd64), libbeat 5.0.0**
packetbeat.yml conent as following:
packetbeat.protocols.http:
# Configure the ports where to listen for HTTP traffic. You can disable
# the HTTP protocol by commenting out the list of ports.
ports: [ 80,8080,7001]
send_all_headers: true
#send_request: true
send_response: true
max_message_size: 10485760
raw request 1 as following:
POST /******/servlet/dispatcherServlet HTTP/1.1
Connection: close
User-Agent: Jakarta Commons-HttpClient/3.1
Host: 10.10.56.29:7001
Content-Length: 141
There is no content-type
raw request 2 as following:
POST /servicebus/services/ForwardService HTTP/1.1
Content-Type: text/xml; charset=UTF-8
SOAPAction: "urn:anonOutInOp"
User-Agent: Axis2
Host: 10.10.0.60
Transfer-Encoding: chunked
request 1 and 2 are not parse the post params
Thanks!