windows下查看端口被什么程序占用

今天调试程序的时候发现有一个ip是我本地的应用请求我应用程序的8080端口,每5分钟一次,请求url如下:

/announce?info_hash=%E4%CC%91%DAg%D95U%9F%96AG%05%1A%E7B%1B%97%E4S&peer_id=%2DSD0100%2D%F9e%2F%29%3D%EA%CF%20x7%26%11&ip=10.2.154.70&port=9775&uploaded=1642806049&downloaded=1642806049&left=336592896&numwant=200&key=26087&compact=1

竟然还显示请求的端口,好吧,那就查查是什么应用,首先找到9775端口的进程id,使用netstat命令:

 C:\Users\chuanli>netstat -aon | findstr 9775

  TCP    0.0.0.0:9775           0.0.0.0:0              LISTENING       8716

  UDP    0.0.0.0:9775           *:*                                    8716

 

然后在使用tasklist来查看是什么程序,使用tasklist

C:\Users\chuanli>tasklist | findstr "8716"

ThunderPlatform.exe           8716 Console                    1     96,944 K

 

靠,原来是迅雷,这是要干什么呢?

猜你喜欢

转载自liuluo129.iteye.com/blog/1973169