⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
local
/
softaculous
/
enduser
/
View File Name :
globals.php
<?php ////////////////////////////////////////////////////////////// //=========================================================== // globals.php //=========================================================== // SOFTACULOUS // Version : 1.1 // Inspired by the DESIRE to be the BEST OF ALL // ---------------------------------------------------------- // Started by: Alons // Date: 10th Jan 2009 // Time: 21:00 hrs // Site: http://www.softaculous.com/ (SOFTACULOUS) // ---------------------------------------------------------- // Please Read the Terms of use at http://www.softaculous.com // ---------------------------------------------------------- //=========================================================== // (c)Softaculous Inc. //=========================================================== ////////////////////////////////////////////////////////////// if(!defined('SOFTACULOUS')){ die('Hacking Attempt'); } @ini_set('safe_mode', '0'); $globals['hf_loaded'] = 0; $globals['charset'] = 'UTF-8'; $globals['showntimetaken'] = 1; $globals['ins_num'] = 0; $globals['version'] = '6.2.3'; $globals['license'] = (!empty($globals['license']) ? $globals['license'] : '00000-00000-00000-00000-00000');//Dummy License $globals['mysqlpath'] = '/usr/bin/mysql'; $globals['dirchmod'] = 0755; // The default path for Softimages $globals['softimages_path'] = $globals['enduser'].'/softimages'; // Load the override images mirror (if any) if(!empty($globals['override_mirror_images'])){ $globals['mirror_images'] = $globals['override_mirror_images']; }else{ $globals['mirror_images'] = 'https://images.softaculous.com/'; // Images URL } // CLASSES API URL FROM WHERE IT WILL TAKE THE DATA $globals['api_nuphp'] = 'https://apinuphp.softaculous.com/'; $globals['api_nuphp_nossl'] = 'http://apinuphp.softaculous.com/'; $globals['api_nuphp2'] = 'https://apinuphp2.softaculous.com/'; //$globals['api_nuphp'] = 'http://192.168.1.10/soft/www/api/nuphp/'; $globals['api_pfx'] = 'https://s2.softaculous.com/a/popularfx/'; $globals['s2api_pfx'] = 'https://s2.softaculous.com/a/popularfx/'; $globals['apipfx'] = 'https://a.softaculous.com/popularfx/'; $globals['clients_softaculous_enduser_buy'] = 'https://www.softaculous.com/clients?ca=softaculous_enduser_buy'; $globals['sitepad_editor_path'] = empty($globals['sitepad_editor_path']) ? $globals['softscripts'].'/sitepad/editor' : $globals['sitepad_editor_path']; // Disabled Classes $globals['disable_classes'] = 1; // This is for extraordinary write permissions like making a Directory Writable // If no suPHP is detected write permissions would be 0777 // If suPHP is detected we change it to 0755 $globals['odc'] = 0777;//Octal Directory CHMOD $globals['sdc'] = '0777';//String Directory CHMOD $globals['ofc'] = 0777;//Octal File CHMOD $globals['sfc'] = '0777';//String File CHMOD $globals['ocfc'] = 0644;//Octal Config File CHMOD $globals['scfc'] = '0644';//String Config File CHMOD $globals['efc'] = 0755;//Octal Executable File CHMOD $globals['os'] = (strtoupper(substr(PHP_OS, 0, 3)) == 'WIN' ? 'windows' : (strtoupper(substr(PHP_OS, 0, 3)) == 'DAR' ? 'darwin' : 'linux')); // Set the environment variables for the binaries if(strtoupper(substr(PHP_OS, 0, 3)) != 'WIN'){ putenv('PATH=/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin:/usr/local/emps/bin:/usr/local/emps/sbin'); } // This is added here because the correct permissions should be loaded when in CLI mode // Config file CHMOD if(strlen($globals['chmod_conf_file']) > 0){ $globals['ocfc'] = octdec($globals['chmod_conf_file']);//Octal $globals['scfc'] = $globals['chmod_conf_file'];//String } // Is there a manual overide for files if(strlen($globals['chmod_files']) > 0){ $globals['ofc'] = octdec($globals['chmod_files']);//Octal $globals['sfc'] = $globals['chmod_files'];//String } // Is there a manual overide for directories if(strlen($globals['chmod_dir']) > 0){ $globals['odc'] = octdec($globals['chmod_dir']);//Octal $globals['sdc'] = $globals['chmod_dir'];//String } // Disable error reporting if not debug mode if(empty($globals['debug_mode'])){ error_reporting(0); if(function_exists('ini_set')){ ini_set('display_errors', 'Off'); ini_set('error_reporting', 'E_ALL & ~E_NOTICE & ~E_DEPRECATED'); } } // Array of Timezone to map with our previous option which were OFFSET only. // This chnages we have made to adjuts the timezone with DST $mapped_timezones = array('-12' => 'Pacific/Kwajalein', '-11' => 'Pacific/Pago_Pago', '-10' => 'Pacific/Tahiti', '-9' => 'Pacific/Gambier', '-8' => 'Pacific/Pitcairn', '-7' => 'America/Whitehorse', '-6' => 'Pacific/Galapagos', '-5' => 'Pacific/Easter', '-4' => 'America/Tortola', '-3.5' => 'America/St_Johns', '-3' => 'Atlantic/Stanley', '-2' => 'Atlantic/South_Georgia', '-1' => 'Atlantic/Cape_Verde', '0' => 'UTC', '1' => 'Europe/London', '2' => 'Europe/Zurich', '3' => 'Indian/Mayotte', '3.5' => 'Asia/Tehran', '4' => 'Indian/Reunion', '4.5' => 'Asia/Kabul', '5' => 'Indian/Maldives', '5.5' => 'Asia/Kolkata', '6' => 'Indian/Chagos', '6.5' => 'Indian/Cocos', '7' => 'Indian/Christmas', '8' => 'Australia/Perth', '9' => 'Pacific/Palau', '9.5' => 'Australia/Darwin', '10' => 'Pacific/Saipan', '11' => 'Pacific/Pohnpei', '12' => 'Pacific/Wallis'); // Possibilities // 1. Timezone selected by admin before upgrade - Should take that timezone using Mapper // 2. Timezone not selected by admin before upgrade i.e. 0 // 2.1 If PHP timezone set - Use that // 2.1 If no PHP timezone set - Use UTC // 3. Timezone selected by admin after upgrade // Update the includes path as per the current PHP version and it respective encoded files if(version_compare(PHP_VERSION, '8.2.0', '>=') && is_dir($globals['path'].'/includes82')){ $includes_path = 'includes82'; }elseif(version_compare(PHP_VERSION, '8.1.0', '>=') && is_dir($globals['path'].'/includes81')){ $includes_path = 'includes81'; }elseif(version_compare(PHP_VERSION, '7.1.0', '>=') && is_dir($globals['path'].'/includes71')){ $includes_path = 'includes71'; }elseif(version_compare(PHP_VERSION, '5.6.0', '>=') && is_dir($globals['path'].'/includes56')){ $includes_path = 'includes56'; }elseif(version_compare(PHP_VERSION, '5.3.0', '>=') && is_dir($globals['path'].'/includes53')){ $includes_path = 'includes53'; }elseif(is_dir($globals['path'].'/includes52')){ $includes_path = 'includes52'; }else{ $includes_path = 'includes'; } $globals['includes_path'] = $globals['path'].'/'.$includes_path; $globals['mainfiles'] = $globals['includes_path'].'/main'; $globals['adminfiles'] = $globals['mainfiles'].'/admin'; $globals['clifiles'] = $globals['includes_path'].'/cli';