Just random snippets
netstat with port definitions
Rinning directly on commandline:
for /f "skip=4 tokens=2,3,6 delims=: " %a in ('netstat -ano') do @echo off & (echo %a %b %c) & findstr %b c:\windows\system32\drivers\etc\services
Here's what it looks like (with some notes in yellow):
C:\Tools>for /f "skip=4 tokens=2,3,6,7 delims=: " %a in ('netstat -ano') do @echo off & (echo %a %b %c %d) & findstr %b c:\windows\system32\drivers\etc\services 0.0.0.0 135 LISTENING 1244 <-- all IPs, port 135, listening, PID 1244 epmap 135/tcp loc-srv #DCE endpoint resolution <-- matched line for port 135 from services list epmap 135/udp loc-srv #DCE endpoint resolution <-- matched line for port 135 from services list 0.0.0.0 445 LISTENING 4 microsoft-ds 445/tcp microsoft-ds 445/udp 0.0.0.0 1025 LISTENING 1520 0.0.0.0 3389 LISTENING 1148 [truncated] 0.0.0.0 1026 480 0.0.0.0 1027 480 0.0.0.0 1036 560 <-- these lines didn't match any standard ports in the services list [truncated] 192.168.226.1 138 4 netbios-dgm 138/udp nbdatagram #NETBIOS Datagram Service 192.168.226.1 1900 616 192.168.226.1 5353 560 <- I'm running VMware, so have a few extra IPs echo on <- I manually turned echo back on
C:\Tools> |