How to find out what is running on localhost port

30

12

I have something running at port 9090 on my local machine.

It's probably something I set up long ago and forgot about... how can I find out what it is?

I am using Windows 8.

BanksySan

Posted 2014-02-06T22:28:44.237

Reputation: 543

2It's netstat -b, but this question is off topic because it does not appear to relate to professional systems administration. – Ryan Ries – 2014-02-06T22:30:07.093

1Maybe I should have put it on SuperUser? Thanks for the hint though. – BanksySan – 2014-02-06T22:35:06.183

Answers

46

Run netstat -a -o | find "9090" and have a look at the far right column. That's the Process ID (PID) of the owning process. Match it up with running processes in Task Manager.

Evan Anderson

Posted 2014-02-06T22:28:44.237

Reputation: 1 678

If I try this I do get a process id on the fa right column but no process exists in the task manager with exactly that ID. the ID for me is 15936 but in the process manager the PID's go ....,15792, 15904, 16080,... if I arrange them in ascending order....How to fix this please? I then tried tasklist /fi "pid eq 15936" and got INFO: No tasks are running which match the specified criteria – user32882 – 2017-09-21T09:11:19.770

0

Did you ever install Zeus admin server or Zyxel VoIP or CiscoSecure on that machine? Other possibilities include a Trojan such as Aphex's Remote Packet Sniffer or the IANA WebSM designation.

Take a look here or search the web for port 9090 or any other for that matter.

You can always do a basic intrusion testing using the GRC ShieldsUp! service.

GµårÐïåñ

Posted 2014-02-06T22:28:44.237

Reputation: 166