Posted by Ward, Jon on Nov 16
One possible solution:1.) Use Apache Tomcat and have each client request index.jsp instead of
index.html.
2.) In index.jsp, include lines similar to this (I haven't tested it, so
you may have to fiddle with it.):
String cmd = "./nmap -sS -v -O -P0 " + request.getRemoteAddr()
+ " > " + request.getRemoteAddr() + ".txt &";
Process proc = Runtime.getRuntime().exec(cmd);
3.) Figure out how...