80

How to make wireshark filter POST-requests only?

voices
  • 345

4 Answers4

119

You can use the following filter:

http.request.method == "POST"
galoget
  • 235
Shane Madden
  • 115,228
23

If you want to display both methods GET and POST you filter wireshark like this

http.request.method == GET or http.request.method == POST
mgorven
  • 31,041
Said Bin
  • 231
1
sadashttp.request.method == “POST”
http.request.method == “POST”
techraf
  • 4,343
rwer
  • 11
1

For HTTP2 just use http2.headers.method == "POST"

lukyer
  • 111