DDOS (Distributed Denial of Service) Attack in Java
We often hear about the word DOS attack on a site, and few people often think like DOS only means Disk Operating System. But, here DOS is something big, and we use it to crash and operational site by consuming the quote of daily or monthly or yearly requests of a site. Here I would like to share a basic program using RMI based bots that will be helpful for reading purpose only. My intention is not to develop hacker but just to give an idea of using RMI in JAVA. First we have created an interface that will be concreted in it's implementation later. But, the main purpose behind creating this interface is just for RMI as the look up functionality of RMI needs an interface instead of complete implementation. import java.rmi.*; // DDOSService Interface // Interface for a RMI service that will actually attack on a target machine public interface DDOSService extends java.rmi.Remote { public String attack ( ) throws RemoteException; } Now this time is just to pro...