How to make wireshark filter POST-requests only?

184,426

Solution 1

You can use the following filter:

http.request.method == "POST"

Solution 2

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

http.request.method == GET or http.request.method == POST

Solution 3

sadashttp.request.method == “POST”
http.request.method == “POST”
Share:
184,426

Related videos on Youtube

Ilya Smagin
Author by

Ilya Smagin

Updated on September 18, 2022

Comments

  • Ilya Smagin
    Ilya Smagin over 1 year

    How to make wireshark filter POST-requests only?