How To Find Open Ports On A Windows Server

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    How To Find Open Ports On A Windows Server

    Hi,

    Well, the easiest way is to use websites such as Port Scan Tool - Quick scan on common TCP Ports - MxToolbox to scan for open ports.

    You can also use netstat command line on your server to find a open port. Let's see how :

    * To display all open ports, open command prompt (Start -> Run -> Cmd), 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 1433 is open or not, do netstat -an |find /i 1433.
    Last edited by Rsync; 13-06-2022, 09:55.
    "It Takes 20 Years To Build A Reputation And Five Minutes To Ruin It. If You Think About That, You'll Do Things Differently. "

    #2
    Re: How To Find Open Ports On A Windows Server

    Originally posted by PMagic View Post
    Hi,

    Well, the easiest way is to use websites such as “Port Scan Tool - Quick scan on common TCP Ports - MxToolbox to scan for open ports.

    You can also use netstat command line on your server to find a open port. Let's see how :

    * To display all open ports, open command prompt (Start -> Run -> Cmd), 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 1433 is open or not, do netstat -an |find /i “1433“.
    This tool provides information of specific open ports only. I use nmap to get a list of all open ports of any system. eg: nmap -v -P0 -A x.x.x.x where x.x.x.x is the IP address of the target machine
    Last edited by Rsync; 13-06-2022, 09:55.
    Rock _a.k.a._ Jack Daniel

    Follow eUKhost on Twitter || Join eUKhost Community on Facebook

    Comment


      #3
      Re: How To Find Open Ports On A Windows Server

      Thanks to PMAgic and Rock!!

      These commands are very helpful for checking the number of connections to the server. Also, to keep track of the services which are running on the server

      Thanks Again!!!!

      Comment


        #4
        Re: How To Find Open Ports On A Windows Server

        You can also check: https://www.eukhost.com/blog/webhost...ort-on-server/

        You're welcome
        Last edited by Rsync; 13-06-2022, 09:58.
        Rock _a.k.a._ Jack Daniel

        Follow eUKhost on Twitter || Join eUKhost Community on Facebook

        Comment


          #5
          Re: How To Find Open Ports On A Windows Server

          PMAgic and Rock!!

          you both guys are awesome...!
          Taking over the rest..!

          Comment


            #6
            Re: How To Find Open Ports On A Windows Server

            Hello Guys,

            Thanks for these commands..really very helpful commands......

            Comment

            Working...
            X