Ilya Smagin Asked: 2011-09-09 11:37:21 +0800 CST2011-09-09 11:37:21 +0800 CST 2011-09-09 11:37:21 +0800 CST How to make wireshark filter POST-requests only? 772 How to make wireshark filter POST-requests only? http wireshark protocol-analyzer filter packet-capture 4 Answers Voted Best Answer Shane Madden 2011-09-09T11:40:28+08:002011-09-09T11:40:28+08:00 You can use the following filter: http.request.method == "POST" Said Bin 2012-06-16T06:07:44+08:002012-06-16T06:07:44+08:00 If you want to display both methods GET and POST you filter wireshark like this http.request.method == GET or http.request.method == POST rwer 2016-09-16T07:53:41+08:002016-09-16T07:53:41+08:00 sadashttp.request.method == “POST” http.request.method == “POST” lukyer 2019-08-27T04:01:11+08:002019-08-27T04:01:11+08:00 For HTTP2 just use http2.headers.method == "POST"
You can use the following filter:
If you want to display both methods GET and POST you filter wireshark like this
For HTTP2 just use
http2.headers.method == "POST"