Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Wireshark not picking up cURL commands

I am trying to debug an issue with cURL (separate issue) and even when I use a cURL command that successfully returns, I am getting nothing in wireshark. I am using the filter http. I am seeing other http traffic.

I should be seeing HTTP/1.1 307, HTTP/1.1 200, or even HTTP/1.1 400 and I can for other things but not when I run a cURL command.

like image 535
Enigma Avatar asked Oct 26 '25 03:10

Enigma


1 Answers

Wireshark has huge set of filters, but http filter only works for port 80.

So for custom port filters, use port <port-no>.

And for https, use port 443.

Check decipher SSL traffic* and wireshark cheat sheet for further exploration.

like image 66
Mayura Avatar answered Oct 28 '25 19:10

Mayura