One Hat Cyber Team
Your IP :
18.226.181.49
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
/
fns
/
cloud_storage
/
View File Name :
load.php
<?php function cloud_storage_module($data) { $platform = Registry::load('settings')->cloud_storage; $function_file = ''; $result = array(); $result['success'] = false; $result['error_key'] = 'something_went_wrong'; if (!empty($platform)) { $platform = preg_replace("/[^a-zA-Z0-9_]+/", "", $platform); $platform = str_replace('libraries', '', $platform); } if (!empty($platform)) { if ($platform === 'amazon_s3') { $platform = 's3_compatible'; } $function_file = 'fns/cloud_storage/'.$platform.'.php'; if (file_exists($function_file)) { include($function_file); } } return $result; }