Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Like the question says, is there a way to filter/follow a tcp/ssl stream based on a particular process ID?

share|improve this question

5 Answers

up vote 10 down vote accepted

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.

share|improve this answer
2  
good point..thats what I thought too.. let me wait for a day before closing this, just incase there is a wireshark ninja out there who manages to do this.. – Ryan Fernandes Aug 27 '09 at 8:41

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..

share|improve this answer

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.

share|improve this answer
well, this might not work..the program opens up and closes a lot of local and remote ports – Ryan Fernandes Aug 27 '09 at 9:01

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

share|improve this answer
That does, within Wireshark, the "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." stuff from Tom Woolfrey's comment, so it is (as the message notes) subject to the limitations of that mechanism. – Guy Harris Feb 21 at 20:59

You can check for port numbers with these command examples on wireshark:-

tcp.port==80

tcp.port==14220

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.