One Hat Cyber Team
Your IP :
3.144.29.148
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
/
image_moderation
/
Edit File:
load.php
<?php function moderate_image_content($image) { $result = array(); $result['success'] = true; $skip_image_moderation = role(['find' => 'skip_image_moderation']); if ($skip_image_moderation !== 'yes') { if (!empty(Registry::load('settings')->image_moderation) && Registry::load('settings')->image_moderation !== 'disable') { $image_moderation = Registry::load('settings')->image_moderation; if ($image_moderation === 'enable') { $image_moderation = 'sightengine'; } if (isset($image) && !empty($image)) { if (isset($image_moderation) && !empty($image_moderation)) { $load_fn_file = 'fns/image_moderation/'.$image_moderation.'.php'; if (file_exists($load_fn_file)) { include($load_fn_file); } } } } } return $result; }
Simpan