2

How to find the software used by the port 80 in windows?

Andro Selva
  • 53,910
  • 52
  • 193
  • 240
Rama Priya
  • 2,387
  • 7
  • 28
  • 39

1 Answers1

1

If you are looking for something as simple as knowing if a program is using a particular port on your computer, you can use the command netstat -b -a on Windows. If netstat is not enough, use TCPView

You may need some network analysis tools. It is fairly common to use a tool (or combination of tools) that perform port scanning as well as packet sniffing. By analyzing the packets, you can determine what is being communicated.

EDIT: Possible duplicates:

Community
  • 1
  • 1
Austin Henley
  • 4,625
  • 13
  • 45
  • 80