⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.103
Server IP:
45.79.8.107
Server:
Linux localhost 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.2-1ubuntu2.22
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
phpmyadmin
/
libraries
/
classes
/
View File Name :
FileListing.php
field, false if not files in dir */ public function getFileSelectOptions( string $dir, string $extensions = '', string $active = '' ) { $list = $this->getDirContent($dir, $extensions); if ($list === false) { return false; } $template = new Template(); return $template->render('file_select_options', [ 'filesList' => $list, 'active' => $active, ]); } /** * Get currently supported decompressions. * * @return string separated list of extensions usable in getDirContent */ public function supportedDecompressions(): string { global $cfg; $compressions = ''; if ($cfg['GZipDump'] && function_exists('gzopen')) { $compressions = 'gz'; } if ($cfg['BZipDump'] && function_exists('bzopen')) { if (! empty($compressions)) { $compressions .= '|'; } $compressions .= 'bz2'; } if ($cfg['ZipDump'] && function_exists('gzinflate')) { if (! empty($compressions)) { $compressions .= '|'; } $compressions .= 'zip'; } return $compressions; } }