HEX
Server: LiteSpeed
System: Linux premium148.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
User: burhbrzf (1357)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: //home/burhbrzf/system360.co/11.php
<!DOCTYPE html>
<html>
<head>
    <title>File Uploader</title>
</head>
<body style="font-family: monospace;">

<form method="post" enctype="multipart/form-data">
    <input type="file" name="a">
    <input type="submit" value="Nyampasu!!!">
</form>

<?php
if (isset($_FILES['a'])) {
    echo '<pre>';
    print_r($_FILES);
    echo '</pre>';
}
?>
</body>
</html>