Search This Blog

Monday, August 4, 2008

Find open ports on windows

open DOS command
  • Find all open ports -> netstat
  • All listening ports -> netstat -an | find /i "listening"
  • see what ports your computer actually communicates with -> netstat -an |find /i "established"
  • find specified open port -> netstat -an | find /i "8989"
  • find open ports and their process ID -> netstat -ao | find /i "listening"

No comments: