Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.105
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
apps /
clamav /
themes /
admin /
Delete
Unzip
Name
Size
Permission
Date
Action
clamav_configure_theme.php
3.64
KB
-rwxr-xr-x
2023-02-03 04:04
Save
Rename
<?php ////////////////////////////////////////////////////////////// //=========================================================== // WEBUZO CONTROL PANEL // Inspired by the DESIRE to be the BEST OF ALL // ---------------------------------------------------------- // Started by: Pulkit // Date: 10th Jan 2009 // Time: 21:00 hrs // Site: https://webuzo.com/ (WEBUZO) // ---------------------------------------------------------- // Please Read the Terms of Use at https://webuzo.com/terms // ---------------------------------------------------------- //=========================================================== // (c) Softaculous Ltd. //=========================================================== ////////////////////////////////////////////////////////////// if(!defined('SOFTACULOUS')){ die('Hacking Attempt'); } function clamav_configure_theme(){ global $globals, $SESS, $WE, $done, $clamav_conf, $clamav_settings; echo ' <div class="col-12 col-md-11 mx-auto"> <form accept-charset="'.$globals['charset'].'" name="clamav" id="clamav" method="post" action=""; class="form-horizontal" onsubmit="return submitit(this)" data-donereload=1> <div class="sai_main_head text-center mb-4"> <i class="fas fa-sliders-h me-2"></i>'.__('ClamAV Scanner Configuration').' </div> <div class="row mb-4"> <div class="col-md-3"> <label for="cpulimit" class="sai_head">'.__('CPU Limit (in %)').' <i class="fa fa-info-circle" data-bs-toggle="tooltip" data-bs-placement="top" title="'.__('If set, the CPU usage of clamscan will not exceed the specified value.').'"></i> :</label> </div> <div class="col-md-3"> <input type="number" class="form-control" name="cpulimit" id="cpulimit" value="'.$clamav_settings['cpulimit'].'"> </div> </div> <div class="soft-smbox mb-3"> <div class="sai_form_head">'.__('Scans Allowed Globally').'</div> <div class="sai_form p-3"> <div class="row"> <div class="col-12 col-md-6"> <label for="user_name" class="sai_head">'.__('Allow the following ClamAV scans to be run for all users:').'</label> <div id="" class="table-responsive mt-4"> <table class="table sai_form webuzo-table"> <tbody id="clamav_sett"> <tr class="table_row"> <td> <input type="checkbox" '.(!empty($clamav_conf['entire_home_dir']) ? 'checked' : '').' value="entire_home_dir" name="global_settings[]" /> </td> <td> <span>'.__('Scan Entire Home Directory').'</span> </td> </tr> <tr class="table_row"> <td> <input type="checkbox" '.(!empty($clamav_conf['scan_mail']) ? 'checked' : '').' value="scan_mail" name="global_settings[]" /> </td> <td> <span>'.__('Scan Mail').'</span> </td> </tr> <tr class="table_row"> <td> <input type="checkbox" '.(!empty($clamav_conf['scan_public_ftp']) ? 'checked' : '').' value="scan_public_ftp" name="global_settings[]" /> </td> <td> <span>'.__('Scan Public FTP Space').'</span> </td> </tr> <tr class="table_row"> <td> <input type="checkbox" '.(!empty($clamav_conf['scan_web_space']) ? 'checked' : '').' value="scan_web_space" name="global_settings[]" /> </td> <td> <span>'.__('Scan Public Web Space').'</span> </td> </tr> </tbody> </table> </div> </div> <div class="text-center"> <input type="submit" class="btn btn-primary" id="clamav_save" name="clamav_save" value="'.__('Save Changes').'"/> </div> </div> </div> </form> </div>'; }