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_manage_dbusers_theme(){ global $theme, $globals, $user, $error, $done, $db_users_list; echo ' <div class="soft-smbox p-4"> <div class="sai_main_head"> '.__('Manage Database Users').' <span class="search_btn float-end"> <a href="javascript:void(0);" class="text-dark" data-bs-toggle="collapse" data-bs-target="#search_queue" aria-expanded="true" aria-controls="search_queue" title="'.__('Search').'"><i class="fas fa-search"></i></a> </span> </div> <div class="mt-2" style="background-color:#e9ecef;"> <div class="collapse '.(!empty(optREQ('user')) || !empty(optREQ('dbuser_search')) ? 'show' : '').'" id="search_queue"> <form accept-charset="'.$globals['charset'].'" name="search" method="post" action=""; class="form-horizontal" > <div class="row p-3 col-md-12 d-flex"> <div class="col-12 col-md-6"> <label class="sai_head">'.__('Search by Database User Name').'</label> <select class="form-select make-select2" s2-placeholder="'.__('MySQL User').'" s2-ajaxurl="'.$globals['index'].'act=mysql_manage_dbusers&api=json" s2-query="dbuser_search" s2-data-key="db_users_list" s2-result-add="'.htmlentities(json_encode([['text' => 'All', 'id' => 'all', 'value' => 'all']])).'" style="width:100%" name="dbuser_search" id="dbuser_search" > <option value="'.optREQ('dbuser_search').'" selected="selected">'.optREQ('dbuser_search').'</option> </select> </div> <div class="col-12 col-md-6"> <label class="sai_head">'.__('Search By Owner Name').'</label><br/> <select class="form-select make-select2" s2-placeholder="'.__('Select Owner').'" s2-ajaxurl="'.$globals['index'].'act=users&api=json" s2-query="search" s2-data-key="users" s2-data-subkey="user" s2-result-add="'.htmlentities(json_encode([['text' => 'All', 'id' => 'all', 'value' => 'all']])).'" style="width: 100%" id="user_search" name="user_search"> <option value="'.optREQ('user').'" selected="selected">'.optREQ('user').'</option> </select> </div> </div> </form> </div> </div> </div> <div class="soft-smbox p-4 mt-4">'; page_links(); echo ' <div class="sai_form table-responsive p-0 rounded-0"> <table border="0" cellpadding="8" cellspacing="1" class="table align-middle table-nowrap mb-0 webuzo-table" id="usertab" align="center"> <thead class="sai_head2"> <tr> <th class="align-middle" width="20%">'.__('User').'</th> <th class="align-middle" width="20%">'.__('Owner').'</th> <th class="align-middle" width="20%">'.__('Host').'</th> <th class="align-middle" width="20%"></th> <th class="align-middle" colspan="3" width="10%" style="text-align:right">'.__('Options').'</th> </tr> </thead> <tbody>'; if(empty($db_users_list)){ echo ' <tr class="text-center"> <td colspan=7> <span>'.__('No database user found').'</span> </td> </tr>'; }else{ foreach ($db_users_list as $k => $v){ echo ' <tr id="ur'.$v['name'].'"> <td> <span id="user'.$v['name'].'">'.$v['name'].'</span> <input id="dbuser'.$v['name'].'" name="new_user_name" style="display:none;" value="'.$v['name'].'" size="12" > <input type="hidden" name="db_user" value="'.$v['name'].'" /> </td> <td> '.$v['owner'].' <input type="hidden" name="owner" value="'.$v['owner'].'" /> </td> <td>'.implode(', ', $v['host']).'</td> <td width="40%"> <label id="lbl_pass'.$v['name'].'" style="display:none;">'.__('New Password').' : </label> <input type="password" name="dbpass" id="chng_pass'.$v['name'].'" style="width:150px; display:none;" > </td> <td width="2%"> <i title="Cancel" id="cid'.$v['name'].'" class="fas fa-reply cancel cancel-icon" style="display:none;"></i> </td> <td width="2%"> <i title="Change Password" id="uid'.$v['name'].'" class="fa-regular fa-pen-to-square edit edit-icon"></i> </td> </tr>'; } } echo ' </tbody> </table> </div>'; page_links(); echo '</div> <script language="javascript" type="text/javascript"> // Change DB user password $(".edit").click(function(){ var id = $(this).attr("id"); id = id.substr(3); $("#cid"+id).show(); $("#chng_pass"+id).show(); $("#lbl_pass"+id).show(); if($("#uid"+id).hasClass("fa-save")){ var d = $("#ur"+id).find("input, textarea, select").serialize(); submitit(d, { done: function(){ var tr = $("#ur"+id); tr.find(".cancel").click();// Revert showing the inputs }, sm_done_onclose: function(){ $("#ur"+id).find("input,.input").hide(); location.reload(); } }); }else{ $("#uid"+id).removeClass("fa-edit").addClass("fa-save"); $("#chng_pass"+id) .val($("#chng_pass"+id).text().substring(0, $("#chng_pass"+id).text().length - 1)) .show() .focus(); $("#ur"+id).find("span").hide(); $("#ur"+id).find("input,.input").show(); } }); //Cancel action $(".cancel").click(function() { var id = $(this).attr("id"); id = id.substr(3); $("#cid"+id).hide(); $("#chng_pass"+id).hide(); $("#lbl_pass"+id).hide(); $("#ur"+id).find("span").show(); $("#ur"+id).find("input,.input").hide(); $("#uid"+id).removeClass("fa-save").addClass("fa-edit"); }); $("#user_search").on("select2:select", function(e, u = {}){ user = $("#user_search option:selected").val(); if(user == "all"){ window.location = "'.$globals['index'].'act=mysql_manage_dbusers"; }else{ window.location = "'.$globals['index'].'act=mysql_manage_dbusers&user="+user; } }); $("#dbuser_search").on("select2:select", function(){ var dbuser = $("#dbuser_search option:selected").val(); if(dbuser == "all"){ window.location = "'.$globals['index'].'act=mysql_manage_dbusers"; }else{ window.location = "'.$globals['index'].'act=mysql_manage_dbusers&dbuser_search="+dbuser; } }); </script>'; }