One Hat Cyber Team
Your IP :
18.221.83.96
Server IP :
172.67.155.96
Server :
Linux server3.shared.spaceship.host 4.18.0-372.9.1.1.lve.el8.x86_64 #1 SMP Tue May 24 07:49:22 EDT 2022 x86_64
Server Software :
LiteSpeed
PHP Version :
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
rlcugxuggt
/
audiomalawi.com
/
View File Name :
system-status.php
<?php require_once('assets/init.php'); $getStatus = getStatus(['curl' => true, "nodejsport" => true, "htaccess" => true]); ?> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>System Status</title> <link rel="stylesheet" href="<?php echo $pt->config->theme_url;?>/css/style.css"> </head> <body> <div class="container content-container"> <ul style="list-style: circle;"> <?php if (!empty($getStatus)) { ?> <?php foreach ($getStatus as $key => $value) {?> <li style="margin-bottom: 20px;"><?php echo ($value["type"] == "error") ? '<strong style="color: red">Important!</strong>' : '<strong style="color: #f98f1d">Warning:</strong>';?> <?php echo $value["message"];?></li> <?php }} else { ?> <li>All good, no issues found.</li> <?php } ?> </ul> </div> </body> </html>