High Port Scanner : Port « Network « Java Tutorial






import java.net.InetAddress;
import java.net.Socket;

public class MainClass {

  public static void main(String[] args) {

    String host = "localhost";

    try {
      InetAddress theAddress = InetAddress.getByName(host);
      for (int i = 1024; i < 65536; i++) {
        Socket theSocket = new Socket(theAddress, i);
        System.out.println("There is a server on port " + i + " of " + host);
      }
    } catch (Exception ex) {
      System.err.println(ex);
    }

  }

}








19.10.Port
19.10.1.Low Port Scanner
19.10.2.High Port Scanner
19.10.3.Port Scanner
19.10.4.Local Port Scanner
19.10.5.UDP Port Scanner