Windows – How to know which program is using the WebClient service

networkingserviceswindows

I just found out by using TCPView that one of my svchost.exe had an http connection in "CLOSE_WAIT" to a strange IP address, although no other visible program was running.

With the help of Process Explorer I discovered that this svchost was using the WebClient Windows service.

I'm wondering how I can figure out what program used WebClient to connect to this IP, in order to determine if it's malware.

Best Answer

Well, you can find it out in this way:

  1. Find out the destination port it is visiting.
  2. Google the port and find out the related information, such as protocol, program.
  3. If it does not resolve your problem, analyze the packets in detail.