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_show_processes_theme(){ global $theme, $globals, $user, $error, $done, $dbs_list, $process_list; echo ' <div class="soft-smbox p-4"> <div class="sai_main_head"> '.__('Show MySQL Processes').' </div> </div> <div class="soft-smbox p-4 mt-4"> <div class="sai_form table-responsive p-0 rounded-0">'; echo ' <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">'.__('ID').'</th> <th class="align-middle">'.__('User').'</th> <th class="align-middle">'.__('Host').'</th> <th class="align-middle">'.__('DB').'</th> <th class="align-middle">'.__('Command').'</th> <th class="align-middle">'.__('Time').'</th> <th class="align-middle">'.__('State').'</th> <th class="align-middle">'.__('Info').'</th> </tr> </thead> <tbody>'; if(empty($process_list)){ echo ' <tr class="text-center"> <td colspan=8> <span>'.__('No process found').'</span> </td> </tr>'; }else{ foreach ($process_list as $key => $value){ echo ' <tr id="ur'.$key.'"> <td>'.$value['id'].'</td> <td>'.$value['user'].'</td> <td>'.$value['host'].'</td> <td>'.(empty($value['db']) ? 'NULL' : $value['db']).'</td> <td>'.$value['command'].'</td> <td>'.$value['time'].'</td> <td>'.$value['state'].'</td> <td>'.(empty($value['info']) ? 'NULL' : $value['info']).'</td> </tr>'; } } echo ' </tbody> </table> </div> </div>'; }