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 /
mysql-common /
themes /
admin /
Delete
Unzip
Name
Size
Permission
Date
Action
mysql_additional_access_hosts_theme.php
2.49
KB
-rw-r--r--
2024-06-25 08:54
mysql_change_dbuser_pass_theme.php
3.54
KB
-rw-r--r--
2024-06-25 08:54
mysql_conf_theme.php
2.26
KB
-rw-r--r--
2024-06-25 08:54
mysql_dbmap_tool_theme.php
2.84
KB
-rw-r--r--
2025-03-12 02:51
mysql_manage_dbs_theme.php
5.9
KB
-rw-r--r--
2024-09-20 08:35
mysql_manage_dbusers_theme.php
6.46
KB
-rw-r--r--
2024-09-20 08:35
mysql_repair_database_theme.php
2.92
KB
-rw-r--r--
2024-09-20 08:35
mysql_root_pass_theme.php
3.24
KB
-rw-r--r--
2024-06-25 08:54
mysql_settings_theme.php
3.64
KB
-rw-r--r--
2024-07-01 10:01
mysql_show_processes_theme.php
2.41
KB
-rw-r--r--
2024-06-25 08:54
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 mysql_additional_access_hosts_theme(){ global $theme, $globals, $user, $error, $done, $host; error_handle($error); echo ' <div class="soft-smbox p-3"> <div class="sai_main_head"> '.__('Additional MySQL Access Hosts').' </div> </div> <div class="soft-smbox p-4 mt-4"> <form accept-charset="'.$globals['charset'].'" name="addonhosts" id="addonhosts" method="post" action=""; class="form-horizontal" onsubmit="return submitit(this)" data-donereload="1"> <div class="sai_form"> <div class="row mb-3"> <div class="col-12"> <label for="hosts" class="sai_head">'.__('Enter any additional hosts (each on seprate line) that you want to allow MySQL databases on this').'</label> </div> <textarea class="form-control log" name="hosts" id="hosts" cols="50" rows="10" style="width: auto;" >'.$host.'</textarea> <div class="my-3"> <input class="btn btn-primary" type="submit" value="'.__('Save').'" name="save" id="save"/> </div> </div> </div> <div class="my-3"> <label class="sai_head">'.__('$0 NOTE $1 : Users must log into enduser panel and use the Remote MySQL feature to allow access from these hosts. After you have done this, if you want to allow this hosts for all users’ accounts click below button',['<b>', '</b>']).'</label> <input class="btn btn-primary" type="button" value="'.__('Allow users').'" name="allow_user" id="allow_user" data-allow_user="1" onclick="return allowusers(this)"/> </div> </form> </div> <script> function allowusers(jEle){ var d = $(jEle).data(); //console.log(d); // Submit the data submitit(d, { sm_done_onclose: function(){ if("donereload" in d){ location.reload(); } } }); } </script>'; }