One Hat Cyber Team
Your IP :
216.73.216.148
Server IP :
172.67.195.75
Server :
Linux mpgrup.4286.w4261.php8 6.1.0-37-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.140-1 (2025-05-22) x86_64
Server Software :
Apache/2.4.62 (Debian)
PHP Version :
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
pma
/
vendor
/
bin
/
View File Name :
lint-query
#!/usr/bin/env php <?php $files = array( __DIR__ . "/../vendor/autoload.php", __DIR__ . "/../../vendor/autoload.php", __DIR__ . "/../../../autoload.php", "vendor/autoload.php" ); $found = false; foreach ($files as $file) { if (file_exists($file)) { require_once $file; $found = true; break; } } if (!$found) { die( "You need to set up the project dependencies using the following commands:" . PHP_EOL . "curl -sS https://getcomposer.org/installer | php" . PHP_EOL . "php composer.phar install" . PHP_EOL ); } $cli = new PhpMyAdmin\SqlParser\Utils\CLI(); exit($cli->runLint());