⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.23
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
local
/
cwp
/
softaculous
/
themes
/
default
/
admin
/
View File Name :
updates_theme.php
<?php ////////////////////////////////////////////////////////////// //=========================================================== // updates_theme.php //=========================================================== // SOFTACULOUS // Version : 1.1 // Inspired by the DESIRE to be the BEST OF ALL // ---------------------------------------------------------- // Started by: Alons // Date: 10th Jan 2009 // Time: 21:00 hrs // Site: http://www.softaculous.com/ (SOFTACULOUS) // ---------------------------------------------------------- // Please Read the Terms of use at http://www.softaculous.com // ---------------------------------------------------------- //=========================================================== // (c)Softaculous Inc. //=========================================================== ////////////////////////////////////////////////////////////// if(!defined('SOFTACULOUS')){ die('Hacking Attempt'); } function updates_theme(){ global $theme, $globals, $user, $l, $error, $updated, $info, $report; softheader($l['<title>']); echo '<div class="container-fluid"> <div class="row my-5"> <div class="col-12 col-lg-10 mx-auto"> <div class="sai-card p-3"> <div class="sai_main_head"> <h2 class="sai-heading mb-2">'.$l['update_softaculous'].'</h2> <hr class = "sai_main_head_hr"/> </div> <div class="sai_form">'; error_handle($error); if(!empty($updated)){ echo '<div class="alert alert-success text-center"><i class="fas fa-check sai_icons mr-2"></i> '.$l['updated_successfully'].'</div>'; } if(!empty($report)){ echo'<label>'.$l['update_logs'].': </label> <span>'.implode('<br />', $report['log']).'</span> <img src="'.$theme['images'].'admin/'.(empty($report['status']) ? 'softerror.gif' : 'softok.gif').'" />'; } $curr_version = (!empty($updated) ? $report['version'] : asperapp($globals['version'], @$globals['webuzo_version'], @$globals['ampps_version'])); $latest_version = (empty($info['version']) ? $l['not_connect_soft'] : $info['version']); echo '<form accept-charset="'.$globals['charset'].'" name="updatesoftaculous" method="post" action=""> <label class="sai-label">'.$l['cur_ver'].': </label> <span class="sai-label">'.$curr_version.'</span><br/> <label class="sai-label">'.$l['latest_ver'].': </label> '.($curr_version != $latest_version ? '<span class="sai-label" style="color:#FF0033;">' : '<span class="sai-label">').$latest_version.'</span> <hr /> <div>'.$info['message'].'</div> '.($curr_version != $latest_version ? '<p align="center"><input type="submit" name="update" value="'.$l['updatesoftaculous'].'" '.(empty($info['link']) ? 'disabled="disabled"' : '').' class="flat-butt" /></p>' : '').' '.csrf_display().' </form>'; echo'</div> </div> </div> </div> </div>'; softfooter(); } ?>