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_conf_theme(){ global $globals, $user, $error, $saved, $done, $filename, $iapps, $mysql; echo ' <div class="soft-smbox p-3"> <div class="sai_main_head"> <img src="'.MYSQL_COMMON_ASSETS.$mysql.'_icon.png" class="me-1"/>'.$iapps[$mysql.'_1']['name'].' '.__('Configuration').' </div> </div> <div class="soft-smbox p-4 mt-4">'; $linecount = count(file($filename)); if($linecount < 24){ $linecount = 24; } echo ' <form accept-charset="'.$globals['charset'].'" name="editemailsettings" method="post" action="" id="editmysql" class="form-horizontal" onsubmit="return submitit(this)"> <div class="row"> <div class="col-12 ContentDivs"> <div class="row ini-data m-3"> <div class="col-2 col-sm-1 text-center line-numbers">'; for($i=1; $i<=$linecount;$i++){ echo $i."<br />"; } echo ' </div> <div class="col-10 col-sm-11"> <textarea class="form-control" WRAP=OFF name="mysql_data" id="mysql_data" rows='.$linecount.' onkeydown="if(event.keyCode===9){var v=this.value,s=this.selectionStart,e=this.selectionEnd;this.value=v.substring(0, s)+\'\t\'+v.substring(e);this.selectionStart=this.selectionEnd=s+1;return false;}">'.htmlentities(file_get_contents($filename), ENT_QUOTES, "UTF-8").'</textarea> </div> </div> </div> </div> <div class="text-center"> <input type="submit" value="'.__('Save').'" name="savemysql" class="btn btn-primary me-1" id="savemysql" /> </div> </form> </div>'; }