Forward from: Tech Hub ๐ฅ
๐ How To Find Open Ports Of Computer System ๐
๐To find open ports on a computer, you can use netstat command line.
๐To display all open ports, open DOS command, type netstat and press Enter.
๐To list all listening ports, use netstat -an |find /i โlisteningโ command.
๐To see what ports your computer actually communicates with, use netstat -an |find /i โestablishedโ
๐To find specified open port, use find switch. For example, to find if the port 3389 is open or not, do netstat -an |find /i โ3389โ.
โจ You can use PULIST from the Windows Resource Kit to find which process is using a specified port. For example, pulist |find /i โ4125โ may display
Process PID User
mad.exe 4125 Chicagotech/blin
Share and Support โค๏ธ
๐To find open ports on a computer, you can use netstat command line.
๐To display all open ports, open DOS command, type netstat and press Enter.
๐To list all listening ports, use netstat -an |find /i โlisteningโ command.
๐To see what ports your computer actually communicates with, use netstat -an |find /i โestablishedโ
๐To find specified open port, use find switch. For example, to find if the port 3389 is open or not, do netstat -an |find /i โ3389โ.
โจ You can use PULIST from the Windows Resource Kit to find which process is using a specified port. For example, pulist |find /i โ4125โ may display
Process PID User
mad.exe 4125 Chicagotech/blin
Share and Support โค๏ธ