Like the question says, is there a way to filter/follow a tcp/ssl stream based on a particular process ID?
|
I don't see how. The PID doesn't make it onto the wire (generally speaking), plus Wireshark allows you to look at what's on the wire - potentially all machines which are communicating over the wire. Process IDs aren't unique across different machines, anyway. |
|||||
|
|
Just in case you are looking for an alternate and the environment you use is Windows, Microsoft's netmon 3.3 is a good choice. It has the process name column. You easily add it to filter using context menu and Apply the filter.. as usual the gui is very intuitive.. |
|||
|
|
|
You could match the port numbers from wireshark up to port numbers from, say, netstat which will tell you the PID of a process listening on that port. |
||||
|
|
On windows there is an experimental build that does this, as described on the mailing list: http://www.wireshark.org/lists/wireshark-dev/201212/msg00069.html |
|||
|
|
You can check for port numbers with these command examples on wireshark:- tcp.port==80 tcp.port==14220 |
|||
|
|