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
/
update
/
Edit File:
custom_css.php
<?php $noerror = true; $result = array(); $result['success'] = false; $result['error_message'] = Registry::load('strings')->something_went_wrong; $result['error_key'] = 'something_went_wrong'; if (role(['permissions' => ['super_privileges' => 'customizer']])) { $content = ''; if (isset($data['global_css']) && !empty($data['global_css'])) { $content = $data['global_css']; } $update = fopen("assets/css/common/custom_css.css", "w"); fwrite($update, $content); fclose($update); $content = ''; if (isset($data['custom_css_chat_page']) && !empty($data['custom_css_chat_page'])) { $content = $data['custom_css_chat_page']; } $update = fopen("assets/css/chat_page/custom_css.css", "w"); fwrite($update, $content); fclose($update); $content = ''; if (isset($data['custom_css_entry_page']) && !empty($data['custom_css_entry_page'])) { $content = $data['custom_css_entry_page']; } $update = fopen("assets/css/entry_page/custom_css.css", "w"); fwrite($update, $content); fclose($update); $content = ''; if (isset($data['custom_css_landing_page']) && !empty($data['custom_css_landing_page'])) { $content = $data['custom_css_landing_page']; } $update = fopen("assets/css/landing_page/custom_css.css", "w"); fwrite($update, $content); fclose($update); cache(['rebuild' => 'settings']); cache(['rebuild' => 'css']); $result = array(); $result['success'] = true; $result['todo'] = 'refresh'; } ?>
Simpan