76

How to make wireshark filter POST-requests only?

voices
  • 295
  • 2
  • 7
Ilya Smagin
  • 863
  • 1
  • 6
  • 6

4 Answers4

115

You can use the following filter:

http.request.method == "POST"
galoget
  • 223
  • 1
  • 9
Shane Madden
  • 112,982
  • 12
  • 174
  • 248
20

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
  • 30,036
  • 7
  • 76
  • 121
Said Bin
  • 201
  • 2
  • 2
1
sadashttp.request.method == “POST”
http.request.method == “POST”
techraf
  • 4,163
  • 8
  • 27
  • 44
rwer
  • 11
  • 1
0

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

lukyer
  • 101