fa
Feedback
𝑆𝑌𝑁𝑇𝐴𝑋 𝑂𝐹𝐹𝐼𝐶𝐼𝐴𝐿

𝑆𝑌𝑁𝑇𝐴𝑋 𝑂𝐹𝐹𝐼𝐶𝐼𝐴𝐿

رفتن به کانال در Telegram

—͟͟͞͞ 𝐻𝑒𝑦 𝐷𝑒𝑎𝑟, 𝑊𝑒𝑙𝑐𝑜𝑚𝑒 𝑇𝑜 𝑀𝑦 𝐶ℎ𝑎𝑛𝑛𝑒𝑙 https://telegra.ph/Dont-support-any-illegal-activities-06-28 ᴏꜰꜰɪᴄɪᴀʟ ᴄʜᴀɴɴᴇʟ🔥 https://t.me/+ldvJB2Bz9tFkOTE1

نمایش بیشتر
1 112
مشترکین
-1224 ساعت
+1357 روز
+21130 روز
آرشیو پست ها
ᴄᴡɪ ᴩʀᴇᴍɪᴜᴍ°•°𝚟𝟺 ʜᴀᴄᴋ.apk9.26 MB

𝐓𝐇𝐈𝐒 𝐋𝐎𝐆𝐈𝐍 𝐏𝐀𝐆𝐄 𝐅𝐔𝐋𝐋 𝐂𝐎𝐃𝐄⚡

function logout() { localStorage.removeItem("imran_access"); document.getElementById("mainPage").style.display = "none"; document.getElementById("loginPage").style.display = "flex"; document.getElementById("status").innerHTML = "SYSTEM READY"; document.getElementById("status").className = ""; document.getElementById("accessKey").value = ""; document.body.style.overflow = "hidden"; } </script> </body> </html>

<div class="footer-text">Secure Protocol Active • Premium Access</div> </div> </div> <!-- MAIN PAGE --> <div id="mainPage"> <div class="top-logo"> <img src="imran-logo.png" alt="IMRAN Logo"> </div> <div class="panel-title">IMRAN PREMIUM DASHBOARD</div> <div class="stats-grid"> <div class="box"> <i class="fas fa-user-shield"></i> <h3>ACCESS LEVEL</h3> <p>VIP</p> </div> <div class="box"> <i class="fas fa-mobile-alt"></i> <h3>DEVICE LOCK</h3> <p>ACTIVE</p> </div> <div class="box"> <i class="fas fa-key"></i> <h3>LICENSE</h3> <p>VALID</p> </div> <div class="box"> <i class="fas fa-signal"></i> <h3>SYSTEM</h3> <p class="green">ONLINE</p> </div> </div> <div class="big-card"> <h3><i class="fas fa-microchip"></i> Secure Panel Info</h3> <div class="line"> <span>Panel Name</span> <span class="tag">IMRAN BOT</span> </div> <div class="line"> <span>Security Layer</span> <span class="tag">ENCRYPTED</span> </div> <div class="line"> <span>Status</span> <span class="green">Connected</span> </div> <div class="line"> <span>Subscription</span> <span class="tag">PREMIUM</span> </div> <div class="line"> <span>Version</span> <span>v3.0</span> </div> </div> <div class="big-card"> <h3><i class="fas fa-bolt"></i> Quick Actions</h3> <div class="line"> <span>Live System Check</span> <span class="green">Ready</span> </div> <div class="line"> <span>Bot Sync</span> <span class="green">Success</span> </div> <div class="line"> <span>Protection Mode</span> <span class="tag">ON</span> </div> <button class="btn logout-btn" onclick="logout()">Logout <i class="fas fa-right-from-bracket"></i></button> </div> </div> <script> // ============================ // YOUR LICENSE KEY HERE // ============================ const validKey = "TEAM CWI"; // Create particles const particles = document.getElementById("particles"); for (let i = 0; i < 35; i++) { const span = document.createElement("span"); span.style.left = Math.random() * 100 + "vw"; span.style.animationDuration = (4 + Math.random() * 6) + "s"; span.style.animationDelay = Math.random() * 5 + "s"; span.style.width = span.style.height = (2 + Math.random() * 4) + "px"; particles.appendChild(span); } // Check saved login if (localStorage.getItem("imran_access") === "granted") { showMainPage(); } function checkKey() { const input = document.getElementById("accessKey").value.trim(); const status = document.getElementById("status"); if (input === "") { status.innerHTML = "ENTER LICENSE KEY FIRST"; status.className = "error"; return; } status.innerHTML = '<i class="fas fa-circle-notch fa-spin"></i> VERIFYING...'; status.className = ""; setTimeout(() => { if (input === validKey) { status.innerHTML = "ACCESS GRANTED"; status.className = "success"; localStorage.setItem("imran_access", "granted"); setTimeout(() => { showMainPage(); }, 1200); } else { status.innerHTML = "INVALID LICENSE KEY"; status.className = "error"; } }, 1500); } function showMainPage() { document.getElementById("loginPage").style.display = "none"; document.getElementById("mainPage").style.display = "block"; document.body.style.overflowY = "auto"; }

.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,0,0,0.48); } #status { margin-top: 16px; font-size: 12px; font-weight: bold; letter-spacing: 1px; color: #888; min-height: 20px; } .success { color: #00ff88 !important; text-shadow: 0 0 10px rgba(0,255,136,0.35); } .error { color: #ff4d4d !important; text-shadow: 0 0 10px rgba(255,77,77,0.35); } .footer-text { margin-top: 20px; font-size: 10px; color: #555; text-transform: uppercase; letter-spacing: 1px; } /* Hidden pages */ #mainPage { display: none; min-height: 100vh; padding: 20px 15px 90px; position: relative; z-index: 2; overflow-y: auto; } .top-logo { text-align: center; margin-top: 15px; margin-bottom: 20px; } .top-logo img { width: 170px; filter: drop-shadow(0 0 18px rgba(255,0,0,0.55)); } .panel-title { text-align: center; font-size: 22px; color: #ff2a2a; font-weight: bold; margin-bottom: 25px; text-shadow: 0 0 12px rgba(255,0,0,0.25); } .stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 450px; margin: auto; } .box { background: rgba(15, 15, 15, 0.88); border: 1px solid rgba(255, 0, 0, 0.22); border-radius: 20px; padding: 18px 15px; text-align: center; box-shadow: 0 0 20px rgba(255, 0, 0, 0.12); } .box i { font-size: 22px; color: #ff2a2a; margin-bottom: 10px; } .box h3 { font-size: 14px; color: #aaa; margin-bottom: 8px; font-weight: 500; } .box p { font-size: 18px; font-weight: bold; color: white; } .big-card { max-width: 450px; margin: 18px auto 0; background: rgba(15, 15, 15, 0.88); border: 1px solid rgba(255, 0, 0, 0.22); border-radius: 22px; padding: 20px; box-shadow: 0 0 20px rgba(255, 0, 0, 0.12); } .big-card h3 { color: #ff2a2a; margin-bottom: 14px; font-size: 17px; } .line { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 14px; } .line:last-child { border-bottom: none; } .tag { padding: 6px 10px; border-radius: 999px; background: rgba(255,0,0,0.12); color: #ff4d4d; font-size: 12px; font-weight: bold; } .green { color: #00ff88; } .logout-btn { margin-top: 18px; background: linear-gradient(135deg, #222, #111); border: 1px solid rgba(255,0,0,0.25); } .scan-bar { position: fixed; top: -100px; left: 0; width: 100%; height: 80px; background: linear-gradient(to bottom, rgba(255,0,0,0), rgba(255,0,0,0.08), rgba(255,0,0,0)); animation: scanner 4s linear infinite; pointer-events: none; z-index: 1; } @keyframes scanner { 0% { top: -100px; } 100% { top: 100%; } } @media (max-width: 480px) { .logo-img { width: 155px; } .top-logo img { width: 150px; } h2 { font-size: 18px; } .panel-title { font-size: 20px; } } </style> </head> <body> <div class="scan-bar"></div> <div class="particles" id="particles"></div> <!-- LOGIN PAGE --> <div class="center-wrap" id="loginPage"> <div class="card"> <h2>IMRAN LOGIN PAGE</h2> <p class="sub">Secure 1-Device License Verification</p> <div class="input-group"> <input type="text" id="accessKey" placeholder="ENTER LICENSE KEY" autocomplete="off"> </div> <button class="btn" onclick="checkKey()">Verify Device <i class="fas fa-shield-alt"></i></button> <div id="status">SYSTEM READY</div>

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"/> <title>IMRAN • PREMIUM PANEL</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"> <style> * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; } body { background: radial-gradient(circle at top, #111 0%, #050505 40%, #000 100%); color: white; min-height: 100vh; overflow: hidden; position: relative; } /* Background glow */ body::before, body::after { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%; filter: blur(120px); opacity: 0.18; animation: pulse 6s infinite alternate; z-index: 0; } body::before { background: red; top: -100px; left: -100px; } body::after { background: crimson; bottom: -100px; right: -100px; } @keyframes pulse { 0% { transform: scale(1); opacity: 0.12; } 100% { transform: scale(1.2); opacity: 0.22; } } /* Floating particles */ .particles { position: absolute; width: 100%; height: 100%; overflow: hidden; z-index: 0; } .particles span { position: absolute; display: block; width: 4px; height: 4px; background: red; border-radius: 50%; box-shadow: 0 0 10px red; animation: floatParticle linear infinite; opacity: 0.5; } @keyframes floatParticle { 0% { transform: translateY(100vh) scale(0.5); opacity: 0; } 20% { opacity: 0.6; } 100% { transform: translateY(-10vh) scale(1.2); opacity: 0; } } /* Common card */ .card { width: 92%; max-width: 390px; background: rgba(10, 10, 10, 0.88); border: 1px solid rgba(255, 0, 0, 0.35); border-radius: 26px; padding: 35px 25px; text-align: center; box-shadow: 0 0 40px rgba(255, 0, 0, 0.22); backdrop-filter: blur(15px); z-index: 2; position: relative; animation: fadeIn 0.9s ease; } @keyframes fadeIn { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: translateY(0); } } .center-wrap { min-height: 100vh; display: flex; justify-content: center; align-items: center; padding: 20px; position: relative; z-index: 2; } .logo-img { width: 180px; max-width: 100%; margin-bottom: 18px; filter: drop-shadow(0 0 18px rgba(255, 0, 0, 0.65)); transition: 0.35s ease; animation: logoPulse 2.2s infinite ease-in-out; } @keyframes logoPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.03); } } h2 { color: #ff2a2a; font-size: 21px; margin-bottom: 22px; letter-spacing: 2px; text-transform: uppercase; text-shadow: 0 0 12px rgba(255,0,0,0.35); } p.sub { color: #999; font-size: 13px; margin-bottom: 20px; } .input-group { margin-bottom: 18px; } input { width: 100%; padding: 15px; border: 1px solid #333; border-radius: 14px; background: #000; color: white; text-align: center; font-size: 14px; outline: none; transition: 0.3s; } input:focus { border-color: red; box-shadow: 0 0 14px rgba(255,0,0,0.25); } .btn { width: 100%; padding: 15px; border: none; border-radius: 14px; background: linear-gradient(135deg, #ff0000, #7a0000); color: white; font-size: 15px; font-weight: bold; cursor: pointer; transition: 0.3s; box-shadow: 0 5px 18px rgba(255,0,0,0.35); }

function logout() { localStorage.removeItem("imran_access"); document.getElementById("mainPage").style.display = "none"; document.getElementById("loginPage").style.display = "flex"; document.getElementById("status").innerHTML = "SYSTEM READY"; document.getElementById("status").className = ""; document.getElementById("accessKey").value = ""; document.body.style.overflow = "hidden"; } </script> </body> </html>

<div class="footer-text">Secure Protocol Active • Premium Access</div> </div> </div> <!-- MAIN PAGE --> <div id="mainPage"> <div class="top-logo"> <img src="imran-logo.png" alt="IMRAN Logo"> </div> <div class="panel-title">IMRAN PREMIUM DASHBOARD</div> <div class="stats-grid"> <div class="box"> <i class="fas fa-user-shield"></i> <h3>ACCESS LEVEL</h3> <p>VIP</p> </div> <div class="box"> <i class="fas fa-mobile-alt"></i> <h3>DEVICE LOCK</h3> <p>ACTIVE</p> </div> <div class="box"> <i class="fas fa-key"></i> <h3>LICENSE</h3> <p>VALID</p> </div> <div class="box"> <i class="fas fa-signal"></i> <h3>SYSTEM</h3> <p class="green">ONLINE</p> </div> </div> <div class="big-card"> <h3><i class="fas fa-microchip"></i> Secure Panel Info</h3> <div class="line"> <span>Panel Name</span> <span class="tag">IMRAN BOT</span> </div> <div class="line"> <span>Security Layer</span> <span class="tag">ENCRYPTED</span> </div> <div class="line"> <span>Status</span> <span class="green">Connected</span> </div> <div class="line"> <span>Subscription</span> <span class="tag">PREMIUM</span> </div> <div class="line"> <span>Version</span> <span>v3.0</span> </div> </div> <div class="big-card"> <h3><i class="fas fa-bolt"></i> Quick Actions</h3> <div class="line"> <span>Live System Check</span> <span class="green">Ready</span> </div> <div class="line"> <span>Bot Sync</span> <span class="green">Success</span> </div> <div class="line"> <span>Protection Mode</span> <span class="tag">ON</span> </div> <button class="btn logout-btn" onclick="logout()">Logout <i class="fas fa-right-from-bracket"></i></button> </div> </div> <script> // ============================ // YOUR LICENSE KEY HERE // ============================ const validKey = "TEAM CWI"; // Create particles const particles = document.getElementById("particles"); for (let i = 0; i < 35; i++) { const span = document.createElement("span"); span.style.left = Math.random() * 100 + "vw"; span.style.animationDuration = (4 + Math.random() * 6) + "s"; span.style.animationDelay = Math.random() * 5 + "s"; span.style.width = span.style.height = (2 + Math.random() * 4) + "px"; particles.appendChild(span); } // Check saved login if (localStorage.getItem("imran_access") === "granted") { showMainPage(); } function checkKey() { const input = document.getElementById("accessKey").value.trim(); const status = document.getElementById("status"); if (input === "") { status.innerHTML = "ENTER LICENSE KEY FIRST"; status.className = "error"; return; } status.innerHTML = '<i class="fas fa-circle-notch fa-spin"></i> VERIFYING...'; status.className = ""; setTimeout(() => { if (input === validKey) { status.innerHTML = "ACCESS GRANTED"; status.className = "success"; localStorage.setItem("imran_access", "granted"); setTimeout(() => { showMainPage(); }, 1200); } else { status.innerHTML = "INVALID LICENSE KEY"; status.className = "error"; } }, 1500); } function showMainPage() { document.getElementById("loginPage").style.display = "none"; document.getElementById("mainPage").style.display = "block"; document.body.style.overflowY = "auto"; }

.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,0,0,0.48); } #status { margin-top: 16px; font-size: 12px; font-weight: bold; letter-spacing: 1px; color: #888; min-height: 20px; } .success { color: #00ff88 !important; text-shadow: 0 0 10px rgba(0,255,136,0.35); } .error { color: #ff4d4d !important; text-shadow: 0 0 10px rgba(255,77,77,0.35); } .footer-text { margin-top: 20px; font-size: 10px; color: #555; text-transform: uppercase; letter-spacing: 1px; } /* Hidden pages */ #mainPage { display: none; min-height: 100vh; padding: 20px 15px 90px; position: relative; z-index: 2; overflow-y: auto; } .top-logo { text-align: center; margin-top: 15px; margin-bottom: 20px; } .top-logo img { width: 170px; filter: drop-shadow(0 0 18px rgba(255,0,0,0.55)); } .panel-title { text-align: center; font-size: 22px; color: #ff2a2a; font-weight: bold; margin-bottom: 25px; text-shadow: 0 0 12px rgba(255,0,0,0.25); } .stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; max-width: 450px; margin: auto; } .box { background: rgba(15, 15, 15, 0.88); border: 1px solid rgba(255, 0, 0, 0.22); border-radius: 20px; padding: 18px 15px; text-align: center; box-shadow: 0 0 20px rgba(255, 0, 0, 0.12); } .box i { font-size: 22px; color: #ff2a2a; margin-bottom: 10px; } .box h3 { font-size: 14px; color: #aaa; margin-bottom: 8px; font-weight: 500; } .box p { font-size: 18px; font-weight: bold; color: white; } .big-card { max-width: 450px; margin: 18px auto 0; background: rgba(15, 15, 15, 0.88); border: 1px solid rgba(255, 0, 0, 0.22); border-radius: 22px; padding: 20px; box-shadow: 0 0 20px rgba(255, 0, 0, 0.12); } .big-card h3 { color: #ff2a2a; margin-bottom: 14px; font-size: 17px; } .line { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 14px; } .line:last-child { border-bottom: none; } .tag { padding: 6px 10px; border-radius: 999px; background: rgba(255,0,0,0.12); color: #ff4d4d; font-size: 12px; font-weight: bold; } .green { color: #00ff88; } .logout-btn { margin-top: 18px; background: linear-gradient(135deg, #222, #111); border: 1px solid rgba(255,0,0,0.25); } .scan-bar { position: fixed; top: -100px; left: 0; width: 100%; height: 80px; background: linear-gradient(to bottom, rgba(255,0,0,0), rgba(255,0,0,0.08), rgba(255,0,0,0)); animation: scanner 4s linear infinite; pointer-events: none; z-index: 1; } @keyframes scanner { 0% { top: -100px; } 100% { top: 100%; } } @media (max-width: 480px) { .logo-img { width: 155px; } .top-logo img { width: 150px; } h2 { font-size: 18px; } .panel-title { font-size: 20px; } } </style> </head> <body> <div class="scan-bar"></div> <div class="particles" id="particles"></div> <!-- LOGIN PAGE --> <div class="center-wrap" id="loginPage"> <div class="card"> <h2>IMRAN LOGIN PAGE</h2> <p class="sub">Secure 1-Device License Verification</p> <div class="input-group"> <input type="text" id="accessKey" placeholder="ENTER LICENSE KEY" autocomplete="off"> </div> <button class="btn" onclick="checkKey()">Verify Device <i class="fas fa-shield-alt"></i></button> <div id="status">SYSTEM READY</div>

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"/> <title>IMRAN • PREMIUM PANEL</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"> <style> * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; } body { background: radial-gradient(circle at top, #111 0%, #050505 40%, #000 100%); color: white; min-height: 100vh; overflow: hidden; position: relative; } /* Background glow */ body::before, body::after { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%; filter: blur(120px); opacity: 0.18; animation: pulse 6s infinite alternate; z-index: 0; } body::before { background: red; top: -100px; left: -100px; } body::after { background: crimson; bottom: -100px; right: -100px; } @keyframes pulse { 0% { transform: scale(1); opacity: 0.12; } 100% { transform: scale(1.2); opacity: 0.22; } } /* Floating particles */ .particles { position: absolute; width: 100%; height: 100%; overflow: hidden; z-index: 0; } .particles span { position: absolute; display: block; width: 4px; height: 4px; background: red; border-radius: 50%; box-shadow: 0 0 10px red; animation: floatParticle linear infinite; opacity: 0.5; } @keyframes floatParticle { 0% { transform: translateY(100vh) scale(0.5); opacity: 0; } 20% { opacity: 0.6; } 100% { transform: translateY(-10vh) scale(1.2); opacity: 0; } } /* Common card */ .card { width: 92%; max-width: 390px; background: rgba(10, 10, 10, 0.88); border: 1px solid rgba(255, 0, 0, 0.35); border-radius: 26px; padding: 35px 25px; text-align: center; box-shadow: 0 0 40px rgba(255, 0, 0, 0.22); backdrop-filter: blur(15px); z-index: 2; position: relative; animation: fadeIn 0.9s ease; } @keyframes fadeIn { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: translateY(0); } } .center-wrap { min-height: 100vh; display: flex; justify-content: center; align-items: center; padding: 20px; position: relative; z-index: 2; } .logo-img { width: 180px; max-width: 100%; margin-bottom: 18px; filter: drop-shadow(0 0 18px rgba(255, 0, 0, 0.65)); transition: 0.35s ease; animation: logoPulse 2.2s infinite ease-in-out; } @keyframes logoPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.03); } } h2 { color: #ff2a2a; font-size: 21px; margin-bottom: 22px; letter-spacing: 2px; text-transform: uppercase; text-shadow: 0 0 12px rgba(255,0,0,0.35); } p.sub { color: #999; font-size: 13px; margin-bottom: 20px; } .input-group { margin-bottom: 18px; } input { width: 100%; padding: 15px; border: 1px solid #333; border-radius: 14px; background: #000; color: white; text-align: center; font-size: 14px; outline: none; transition: 0.3s; } input:focus { border-color: red; box-shadow: 0 0 14px rgba(255,0,0,0.25); } .btn { width: 100%; padding: 15px; border: none; border-radius: 14px; background: linear-gradient(135deg, #ff0000, #7a0000); color: white; font-size: 15px; font-weight: bold; cursor: pointer; transition: 0.3s; box-shadow: 0 5px 18px rgba(255,0,0,0.35); }

𝐂𝐖𝐈 𝐆𝐀𝐌𝐄 𝐋𝐙𝐑 𝐇𝐀𝐂𝐊🎯🤖

𝐂𝐖𝐈 𝐆𝐀𝐌𝐄 𝐋𝐙𝐑 𝐇𝐀𝐂𝐊.apk8.44 MB

𝙽𝚄𝙼𝙱𝚄𝚁 𝙳𝙰𝙽𝙶𝙴𝚁 𝙻𝚉𝚁 🎯 𝙾𝙽𝙻𝚈 𝙹𝙰𝙲𝙺𝙿𝙾𝚃 𝚆𝙸𝙽𝙸𝙽𝙶 🎰 𝟷𝟶𝟶% 𝚆𝙸𝙽 𝙶𝙴𝙽𝙰𝚁𝙴𝚃🏆 𝙻𝙾𝙶𝙸𝙽 𝙿𝙰𝙶𝙴 𝚁𝙴𝙼𝙾𝚅𝙴𝙳 𝙱𝚈 𝙲𝚆𝙸 𝙼𝙴𝙰𝙽 𝙲𝙾𝙳𝙸𝙽𝙶 𝚆𝙸𝚃𝙷 𝙸𝙼𝚁𝙰𝙽🤖
যাদের হ্যাক টা লাগবে আমাকে ইনবক্স করুণ ফ্রি দিবো ⚡
@bdt_kop_leader

ᴄᴡɪ ɴᴇxᴜꜱ ᴩʀɪᴍᴇ ʜᴀᴄᴋ.apk8.44 MB