windows端口扫描
最简单的一条命令
netstat -a
找到所有开放的端口
netstat –an |find /i “listening”
找到所有开放的端口及其进程号(PID)
netstat –ano ¦find /i “listening”
打开任务管理器对照查看
CTRL + SHIFT + ESC
参考
https://techtalk.gfi.com/scan-open-ports-in-windows-a-quick-guide/
netstat -a
netstat –an |find /i “listening”
netstat –ano ¦find /i “listening”
CTRL + SHIFT + ESC
https://techtalk.gfi.com/scan-open-ports-in-windows-a-quick-guide/