Tablepage.php 479 B

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