
December 19th, 2012, 12:36 PM
|
 |
Still alive
|
|
Join Date: Mar 2007
Location: Washington, USA
|
|
|
Wireshark is pretty easy to use, the trick (if you can call it that) is reading the results. I have a portable version on my USB key.
When you start it up as an admin it'll show you the interfaces it can listen on. Start listening on the right one; if you're not sure which the toolbar button to start listening will pop up a dialog and it'll show you packet counts as they happen, then you can see which one is getting traffic.
Then let it run for a minute or so, until you think it's gathered enough data for you to look at. First thing to check is the IP address that isn't the computer (probably the source address). That should be enough to tell where the packets are coming from.
To see what the data is look at the destination port, description from Wireshark, and maybe even the data inside. Odds are it'll include ports like 53 (DNS) or 137-139 (NetBIOS) to the router itself, but more interesting would be packets that go through the router to the outside world. Probably some of port 80 for HTTP; look in those packets to see what hostname they're going to since that's the quickest way to determine what the source program is.
For long-running connections that you're unsure of you can note the source address and port, go to that computer, and check its open connections (like TcpView, I have that on USB too) to see the actual programs using them.
|