One Hat Cyber Team
Your IP :
3.18.103.55
Server IP :
50.28.103.30
Server :
Linux host.jcukjv-lwsites.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
Server Software :
nginx/1.24.0
PHP Version :
8.3.12
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
www
/
wwwroot
/
globify.live
/
chatscript
/
fns
/
download
/
View File Name :
language.php
<?php $language_id = 0; if (isset($download['language_id'])) { $language_id = filter_var($download["language_id"], FILTER_SANITIZE_NUMBER_INT); } $file = 'assets/cache/languages/language-'.$language_id.'.cache'; if (!empty($language_id) && file_exists($file)) { if (role(['permissions' => ['languages' => 'export']])) { if (!isset($download['validate'])) { $download_language = [ 'download' => $file, 'download_as' => 'language_file.json', 'real_path' => true ]; files('download', $download_language); } else { $output['download_link'] = Registry::load('config')->site_url.'download/language/language_id/'.$language_id; } } else { $output['error'] = Registry::load('strings')->permission_denied; } } else { $output['error'] = Registry::load('strings')->file_expired; } ?>