-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.java
32 lines (26 loc) · 807 Bytes
/
Main.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package zone.mafu;
import java.net.Socket;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.print("Enter ip:");
String ip = sc.next();
System.out.println("Scanning ports...");
Socket soc;
int portsOpen = 0;
for(int i = 0; i < 65535; i++){
try{
soc = new Socket(ip, i);
System.out.println("Port " + i + " is open on the device");
portsOpen++;
} catch (Exception e){
}
}
if(portsOpen > 0) {
System.out.println("All other ports are closed.");
} else {
System.out.println("No ports are open on the device.");
}
}
}