| 1234567891011121314 |
- <?php
- /**
- * Tablepage.php — DISABLED
- *
- * This was a raw database table-browser dev tool using hardcoded root credentials.
- * It has been disabled as it exposed all database tables without authentication.
- *
- * The authorised DataTable AJAX endpoint is /client-assets/table/gettable.php
- * which uses PDO, session authentication, and a table whitelist.
- */
- http_response_code(410);
- echo '<p>This tool has been disabled. Access the application via the dashboard.</p>';
- exit;
|