1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
| import java.lang.Runtime;
import java.lang.Process;
import java.io.*;
import java.lang.InterruptedException;
public class nmap {
public static void main (String args[]) throws IOException, InterruptedException {
String[] cmd1 = new String[6];
cmd1[0] = "nmap";
cmd1[1] = "-sS";
cmd1[2] = "-O";
cmd1[3]=Host;
cmd1[4] = "-oX";
cmd1[5] = "scan.xml";
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