Linux server19.dn-server.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
LiteSpeed
Server IP : 46.209.20.154 & Your IP : 216.73.217.55
Domains :
Cant Read [ /etc/named.conf ]
User : emadteam
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
emadteam /
public_html /
hosting /
status /
Delete
Unzip
Name
Size
Permission
Date
Action
index.php
2.75
KB
-rw-r--r--
2024-09-28 11:59
Save
Rename
<?php /** * Server Status Monitoring Endpoint * * This file can be uploaded to each of your linux web servers in order to * display current load and uptime statistics for the server in the Server * Status page of the WHMCS Client Area and Admin Area Homepage. * * @package WHMCS * @author WHMCS Limited <development@whmcs.com> * @copyright Copyright (c) WHMCS Limited 2005-2019 * @license https://www.whmcs.com/license/ WHMCS Eula * @version $Id$ * @link https://www.whmcs.com/ */ error_reporting(0); $action = (isset($_GET['action'])) ? $_GET['action'] : ''; if ($action=="phpinfo") { /** * Uncomment the line below to allow users to view PHP Info for your * server. This potentially allows access to information a malicious * user could use to find weaknesses in your server. */ //phpinfo(); } else { $load = file_get_contents("/proc/loadavg"); $load = explode(' ',$load); $load = $load[0]; if (!$load && function_exists('exec')) { $reguptime=trim(exec("uptime")); if ($reguptime) if (preg_match("/, *(\d) (users?), .*: (.*), (.*), (.*)/",$reguptime,$uptime)) $load = $uptime[3]; } $uptime_text = file_get_contents("/proc/uptime"); $uptime = substr($uptime_text,0,strpos($uptime_text," ")); if (!$uptime && function_exists('shell_exec')) $uptime = shell_exec("cut -d. -f1 /proc/uptime"); $days = floor($uptime/60/60/24); $hours = str_pad($uptime/60/60%24,2,"0",STR_PAD_LEFT); $mins = str_pad($uptime/60%60,2,"0",STR_PAD_LEFT); $secs = str_pad($uptime%60,2,"0",STR_PAD_LEFT); $phpver = phpversion(); $mysqlver = (function_exists("mysql_get_client_info")) ? mysql_get_client_info() : '-'; $zendver = (function_exists("zend_version")) ? zend_version() : '-'; echo "<load>$load</load>\n"; echo "<uptime>$days Days $hours:$mins:$secs</uptime>\n"; /** * WHMCS does not rely on the following version information for tracking * server status. * * Some 3rd-party integrations may rely on previous revisions of this file that * exposed said information. Users who have 3rd-party functionality which * require this may uncomment the lines at their own risk. * * Future revisions to this file may remove those commented lines and this * documentation block entirely. If a 3rd-party integration that you use * relies on this, please notify them that access to that information via * this script is deprecated as of WHMCS 5.3.9-release.1. * * Anyone is free to contact WHMCS Support for further information or help * resolving integration issues. */ //echo "<phpver>$phpver</phpver>\n"; //echo "<mysqlver>$mysqlver</mysqlver>\n"; //echo "<zendver>$zendver</zendver>\n"; }