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.26
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
apps /
pureftpd /
themes /
enduser /
Delete
Unzip
Name
Size
Permission
Date
Action
editftp_theme.php
2.93
KB
-rw-r--r--
2024-06-11 07:36
ftp_account_theme.php
6.32
KB
-rw-r--r--
2024-06-11 07:36
ftp_connections_theme.php
2.6
KB
-rw-r--r--
2024-06-11 07:36
ftp_theme.php
12.18
KB
-rw-r--r--
2024-06-27 07:39
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 ftp_connections_theme(){ global $user, $globals, $theme, $softpanel, $WE, $catwise, $error, $scripts, $ftp_list, $done, $tuser; echo ' <div class="card soft-card p-3"> <div class="sai_main_head"> <img src="'.$theme['images'].'ftp_connections.png" alt="" class="webu_head_img me-2"/> <h5 class="d-inline-block">'.__('FTP Connections').'</h5> </div> </div> <div class="card soft-card p-4 mt-4"> <div id="showrectab" class="table-responsive my-3">'; ftp_list_conn(); echo ' </div> </div>'; } function ftp_list_conn(){ global $user, $globals, $theme, $softpanel, $WE, $catwise, $error, $scripts, $ftp_list, $done, $tuser; echo ' <table class="table align-middle table-nowrap mb-0 webuzo-table"> <thead class="sai_head2"> <tr> <th class="align-middle">'.__('User').'</th> <th class="align-middle">'.__('Logged in From').'</th> <th class="align-middle">'.__('Login Time').'</th> <th class="align-middle">'.__('Status').'</th> <th class="align-middle">'.__('Process ID').'</th> <th class="align-middle">'.__('Disconnect').'</th> </tr> </thead> <tbody>'; if(!empty($ftp_list)){ $i = 1; foreach ($ftp_list as $key => $value){ echo ' <tr id="tr'.$key.'"> <td>'.$value['ftp_user'].'</td> <td>'.$value['log_from'].'</td> <td>'.datify($value['ftp_timestamp'], 1, 1, 0).'</td> <td>'.$value['status'].'</td> <td>'.$key.'</td> <td width="2%" align="center"> <i class="fas fa-times delete delete-icon" title="'.__('Delete').'" id="did'.$key.'" onclick="delete_record(this)" data-ftp_connection_pid="'.$key.'"></i> </td> </tr>'; $i++; } }else{ echo ' <tr class="text-center"> <td colspan="6">'.__('<strong>There are no active FTP connections to your server</strong>').'</td> </tr>'; } echo ' </tbody> </table>'; }