One Hat Cyber Team
Your IP :
3.145.65.207
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
/
global
/
View File Name :
cache-group_roles.php
<?php $grouproles = array(); $columns = [ 'group_roles.group_role_id', 'group_roles.permissions', 'group_roles.group_role_attribute' ]; $roles = DB::connect()->select('group_roles', $columns); $group_role_attributes = array(); foreach ($roles as $role) { $roleid = $role['group_role_id']; $grouproles[$roleid] = $role['permissions']; $attribute = $role['group_role_attribute']; $group_role_attributes[$attribute] = $roleid; } $cache = json_encode($grouproles); $cachefile = 'assets/cache/group_roles.cache'; if (file_exists($cachefile)) { unlink($cachefile); } $cachefile = fopen($cachefile, "w"); fwrite($cachefile, $cache); fclose($cachefile); $cache = json_encode($group_role_attributes); $cachefile = 'assets/cache/group_role_attributes.cache'; if (file_exists($cachefile)) { unlink($cachefile); } $cachefile = fopen($cachefile, "w"); fwrite($cachefile, $cache); fclose($cachefile); $result = true;