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 /
webdisk /
themes /
enduser /
Delete
Unzip
Name
Size
Permission
Date
Action
webdisk_account_theme.php
5.23
KB
-rw-r--r--
2023-01-18 07:26
webdisk_config_clients_theme.php
5.4
KB
-rw-r--r--
2022-10-14 10:09
webdisk_theme.php
4.14
KB
-rw-r--r--
2022-11-14 06:07
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 webdisk_config_clients_theme(){ global $theme, $globals, $error, $clients, $wuser, $user, $port, $hostname; echo ' <div class="card soft-card p-4"> <div class="sai_main_head mb-2"> <img src="'.WEBDISK_ASSETS.'webdisk.png" alt="" class="webu_head_img me-2" style="width: 60px;"> <h5 class="d-inline-block">'.__('Configure Web Disk Clients').'</h5> </div>'; echo ' <div class="p-2"> <p>'.__('To view login details or download a configuration script, select your operating system, device, or application from the appropriate menu.').'</p> <h6 id="conn">'.__('Connection instructions for <b>'.$wuser.'</b>').'</h6> </div> <form form accept-charset="'.$globals['charset'].'" action="" method="post" name="wd_account" id="editform" class="form-horizontal text-center"> <div class="row"> <div class="col-sm border rounded bg-light m-1 p-2"> <h5>'.__('Apple').'</h5> <i class="fab fa-apple" style="font-size:7rem;"></i><br> <select class="mt-3 apple" name="apple">'; foreach($clients['apple'] as $os){ echo ' <option value="'.$os.'">'.$os.'</option>'; } echo ' </select> </div> <div class="col-sm border rounded bg-light m-1 p-2"> <h5>'.__('Windows').'</h5> <i class="fab fa-windows" style="font-size:7rem;"></i><br> <select class="mt-3 windows" name="windows">'; foreach($clients['windows'] as $os){ echo ' <option value="'.$os.'">'.$os.'</option>'; } echo ' </select> </div> <div class="col-sm border rounded bg-light m-1 p-2"> <h5>'.__('Linux').'</h5> <i class="fab fa-linux" style="font-size:7rem;"></i><br> <select class="mt-3 linux" name="linux">'; foreach($clients['linux'] as $os){ echo ' <option value="'.$os.'">'.$os.'</option>'; } echo ' </select> </div> <div class="col-sm border rounded bg-light m-1 p-2"> <h5>'.__('Mobile').'</h5> <i class="fas fa-mobile-alt" style="font-size:7rem;"></i><br> <select class="mt-3 mobile" name="mobile">'; foreach($clients['mobile'] as $os){ echo ' <option value="'.$os.'">'.$os.'</option>'; } echo ' </select> </div> </div> </form> <div class="p-2" id="secure_connection" style="display:none"> <i class="fas fa-lock"></i> Secure Connnection (SSL) <div class="pt-4" data-user> Server Address: '.$hostname.'<br/> Port: '.$port.'<br/> Username: '.$wuser.'<br/> Password: Your Web disk Acount Password<br/> SSL: Enabled<br/> <input type="button" class="btn btn-primary pt-1" name="download_script" id="dwld" value="'.__('Download Configuration Script').'" /> </div> </div> </div>'; echo ' <script language="javascript" type="text/javascript"> $(document).ready(function(){ $("select.apple").on("change", function(){ $("#secure_connection").show(); $(".windows").val("Microsoft Operating System"); $(".linux").val("Linux and BSD Operating System"); $(".mobile").val("Mobile Operating System"); var os_ver = $(this).children("option:selected").index(); if (os_ver == 11){ $("#dwld").hide(); }else{ $("#dwld").show(); } $("#dwld").on("click", function(){ window.location.href = "'.$globals['index'].'act=webdisk_config_clients&os=apple&download_script=1"; }); }); $("select.windows").on("change", function(){ $("#secure_connection").show(); $(".apple").val("Apple Operating System"); $(".linux").val("Linux and BSD Operating System"); $(".mobile").val("Mobile Operating System"); var os_ver = $(this).children("option:selected").index(); if (os_ver == 9){ $("#dwld").hide(); }else{ $("#dwld").show(); } $("#dwld").on("click", function(){ window.location.href = "'.$globals['index'].'act=webdisk_config_clients&os=windows&download_script=1"; }); }); $("select.linux").on("change", function(){ $("#secure_connection").show(); $(".apple").val("Apple Operating System"); $(".windows").val("Microsoft Operating System"); $(".mobile").val("Mobile Operating System"); $("#dwld").show(); var appname = $(this).val().toLowerCase(); $("#dwld").on("click", function(){ window.location.href = "'.$globals['index'].'act=webdisk_config_clients&os=linux&app="+appname+"&download_script=1"; }); }); $("select.mobile").on("change", function(){ $("#secure_connection").show(); $(".apple").val("Apple Operating System"); $(".linux").val("Linux and BSD Operating System"); $(".windows").val("Microsoft Operating System"); $("#dwld").hide(); }); }); </script>'; }