80

How to make wireshark filter POST-requests only?

voices
  • 355

4 Answers4

120

You can use the following filter:

http.request.method == "POST"
galoget
  • 235
Shane Madden
  • 116,404
  • 13
  • 187
  • 256
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,399
Said Bin
  • 231
1
sadashttp.request.method == “POST”
http.request.method == “POST”
techraf
  • 4,403
rwer
  • 11
1

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

lukyer
  • 111