如何仅使Wireshark过滤POST请求?


Answers:



18

如果要同时显示GET和POST方法,则可以像这样过滤Wireshark

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

1
sadashttp.request.method == “POST”
http.request.method == “POST”

0

对于HTTP2,只需使用 http2.headers.method == "POST"

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.