!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/billing/sysinfo/lib/   drwxr-xr-x
Free 13.34 GB of 57.97 GB (23.01%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     class.OS_OpenBSD.php (12.27 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/*
 * This file is part of Linfo (c) 2010, 2012 Joseph Gillotti.
 * 
 * Linfo is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * Linfo is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with Linfo.  If not, see <http://www.gnu.org/licenses/>.
 * 
*/


defined('IN_INFO') or exit;

/*
 * OpenBSD info class.
 * todo: as much functionality as the freebsd version
 */

class OS_OpenBSD extends OS_BSD_Common {

    
// Encapsulate these
    
protected
        
$settings,
        
$exec,
        
$error,
        
$dmesg;

    
// Start us off
    
public function __construct($settings) {

        
// Initiate parent
        
parent::__construct($settings);


        
// We search these folders for our commands
        
$this->exec->setSearchPaths(array('/sbin''/bin''/usr/bin''/usr/local/bin''/usr/sbin'));

        
// sysctl values we'll access below
        
$this->GetSysCTL(array(

            
// Has unix timestamp of boot time
            
'kern.boottime',

            
// Ram stuff
            
'hw.physmem',

            
// CPU related
            
'hw.model',
            
'hw.ncpu',
            
'hw.cpuspeed',

            
'vm.loadavg'
        
), false);
    }
    
    
// Return it all
    
public function getAll() {

        
// Return everything, whilst obeying display permissions
        
return array(
            
'OS' => empty($this->settings['show']) ? '' $this->getOS(),             # done
            
'Kernel' => empty($this->settings['show']) ? '' $this->getKernel(),         # done
            
'HostName' => empty($this->settings['show']) ? '' $this->getHostName(),     # done
            
'Mounts' => empty($this->settings['show']) ? array() : $this->getMounts(),     # done
            
'RAM' => empty($this->settings['show']) ? array() : $this->getRam(),         # done
            
'Load' => empty($this->settings['show']) ? array() : $this->getLoad(),         # done
            
'Devices' => empty($this->settings['show']) ? array() : $this->getDevs(),     # done
            
'HD' => empty($this->settings['show']) ? '' $this->getHD(),             # done
            
'UpTime' => empty($this->settings['show']) ? '' $this->getUpTime(),         # done
            
'Network Devices' => empty($this->settings['show']) ? array() : $this->getNet(),# done
            
'CPU' => empty($this->settings['show']) ? array() : $this->getCPU(),         # done
            
'processStats' => empty($this->settings['show']['process_stats']) ? array() : $this->getProcessStats(), # lacks thread stats

            // Columns we should leave out. (because finding them out is either impossible or requires root access)
            
'contains' => array(
                
'drives_rw_stats' => false,
                
'hw_vendor' => false,
                
'drives_vendor' => false
            
)
        );
    }

    
// OS
    
private function getOS() {
        return 
'OpenBSD';
    }

    
// Kernel
    
private function getKernel() {
        return 
php_uname('r');
    }

    
// Hostname
    
private function getHostName() {
        return 
php_uname('n');
    }

    
// Get mounted file systems and their disk usage stats
    
private function getMounts() {
        
// Time?
        
if (!empty($this->settings['timer']))
            
$t = new LinfoTimerStart('Mounted file systems');
        
        
// Get result of mount command
        
try {
            
$mount_res $this->exec->exec('mount');
        }
        catch (
CallExtException $e) {
            
$this->error->add('Linfo Core''Error running `mount` command');
            return array();
        }

        
// Match that up
        
if (preg_match_all('/^(\S+) on (\S+) type (\S+) \(.+\)$/m'$mount_res$mount_matchesPREG_SET_ORDER) == 0
            return array();

        
// Store them here
        
$mounts = array();

        
// Go through
        
foreach ($mount_matches as $mount) {
            
// Should we not show this?
            
if (in_array($mount[1], $this->settings['hide']['storage_devices']) || in_array($mount[3], $this->settings['hide']['filesystems']))
                continue;
            
            
// Get these
            
$size = @disk_total_space($mount[2]);
            
$free = @disk_free_space($mount[2]);
            
$used $size $free;
            
            
// Might be good, go for it
            
$mounts[] = array(
                
'device' => $mount[1],
                
'mount' => $mount[2],
                
'type' => $mount[3],
                
'size' => $size ,
                
'used' => $used,
                
'free' => $free,
                
'free_percent' => ((bool)$free != false && (bool)$size != false round($free $size2) * 100 false),
                
'used_percent' => ((bool)$used != false && (bool)$size != false round($used $size2) * 100 false)
            );
        }

        
// Give it
        
return $mounts;
        
    }

    
// Get memory usage statistics
    
private function getRam() {
        
        
// Store our shit here
        
$return = array();
        
$return['swapTotal'] = 0;
        
$return['swapFree'] = 0;
        
$return['swapInfo'] = array();

        
// Get amount of real hard ram, in bytes
        
$return['total'] =  $this->sysctl['hw.physmem'];

        
// Get real
        
try {
            
$vmstat $this->exec->exec('vmstat');
            if (
preg_match('/\s\d\s\d\s\d\s+\d+\s+(\d+)/'$vmstat$vmstat_match)) {
                
$hard_ram_free $vmstat_match[1];
                
$return['type'] = 'Physical';
                
$return['free'] = $return['total'] - ($hard_ram_free*1024);
            }
        }
        catch (
CallExtException $e) {
            
$this->error->add('Linfo Core''Error using `vmstat` to get memory usage usage');
        }

        
// Get swap
        
try {
            
$swapinfo $this->exec->exec('swapctl''-k');
            @
preg_match_all('/^(\S+)\s+(\d+)\s+(\d+)\s+(\d+)/m'$swapinfo$smPREG_SET_ORDER);
            foreach (
$sm as $swap) {
                
$return['swapTotal'] += $swap[2]*1024;
                
$return['swapFree'] += (($swap[2] - $swap[3])*1024);
                
$ft is_file ($ft) ? @filetype($swap[1]) : 'Unknown'// TODO: I'd rather it be Partition or File
                
$return['swapInfo'][] = array(
                    
'device' => $swap[1],
                    
'size' => $swap[2]*1024,
                    
'used' => $swap[3]*1024,
                    
'type' => ucfirst($ft
                );
            }
        }
        catch (
CallExtException $e) {
            
$this->error->add('Linfo Core''Error using `swapctl` to get swap usage');
        }

        
// Give it
        
return $return;    
    }

    
// System load averages
    
private function getLoad() {
        
// Time?
        
if (!empty($this->settings['timer']))
            
$t = new LinfoTimerStart('Load Averages');

        
// Use sysctl
        
$loads $this->sysctl['vm.loadavg'];

        
// hmm?
        
if ($loads == false)
            return 
'unknown';

        
// Blow your load
        
$parts explode(' '$loads);

        
// Give
        
return array(
            
'now' => $parts[0],
            
'5partsin' => $parts[1],
            
'15partsin' => $parts[2]
        );
    }

    
// Get hardware devices
    
private function getDevs() {
        
// Time?
        
if (!empty($this->settings['timer']))
            
$t = new LinfoTimerStart('Hardware Devices');

        
// Match them
        
if(preg_match_all('/([a-z]+\d+) at ([a-z]+)\d*.+ "(.+)"/m'$this->dmesg$devices_matchPREG_SET_ORDER) == 0)
            return array();

        
// Store them here
        
$devices = array();

        
// Stuff them
        
foreach ($devices_match as $match) {
            
            
$type strtoupper($match[2]);

            
$devices[] = array(
                
'vendor' => false// hmm
                
'device' => $match[3],
                
'type' => $type
            
            
);
        }

        
// Give them
        
return $devices;
    }

    
// Get hard disk drives and the like
    
private function getHD() {
        
        
// Time?
        
if (!empty($this->settings['timer']))
            
$t = new LinfoTimerStart('CPU');

        
// Temp shit
        
$drives = array();
        
$curr_hd false;

        
// Parse dmesg
        
foreach (explode("\n"$this->dmesg) as $dmesg_line) {
            if (
preg_match('/^(\w+) at .+<(.+)>/'$dmesg_line$hd_start_match)) {
                
$curr_hd $hd_start_match;
            }
            elseif (
$curr_hd !== false && preg_match('/^'.preg_quote($curr_hd[1]).': \d+\-sector \w+, \w+, (\d+)MB/'$dmesg_line$hd_spec_match)) {
                
$drives[] = array(
                    
'name' => $curr_hd[2],
                    
'vendor' => false,
                    
'device' => '/dev/'.$curr_hd[1],
                    
'size' => $hd_spec_match[1] * 1048576,
                    
                    
// Not sure how to get the following:
                    
'reads' => false
                    
'writes' => false 
                    
                
);
                
$curr_hd false;
            }
            else
                
$curr_hd false;
        }

        
// give it
        
return $drives;        
    }

    
// Get uptime
    
private function getUpTime() {
        
        
// Time?
        
if (!empty($this->settings['timer']))
            
$t = new LinfoTimerStart('Uptime');
        
        
// Short and sweet
        
$booted $this->sysctl['kern.boottime'];

        
// Well fuck?
        
if ($booted == false)
            return 
'Unknown';

        
// Is it not a timestamp?
        
if (!is_numeric($booted))
            
$booted strtotime($booted);

        
// Give it
        
return seconds_convert(time() - $booted) . '; booted ' date($this->settings['dates'], $booted);
    }

    
// Get network devices, their stats, status, and type
    
private function getNet() {
        
        
// Time?
        
if (!empty($this->settings['timer']))
            
$t = new LinfoTimerStart('Network Devices');

        
// Get result of netstat command
        
try {
            
$res $this->exec->exec('netstat''-nbi');
        }
        catch(
CallExtException $e) {
            
$this->error->add('Linfo Core''Error using `netstat` to get network info');
            return 
$return;
        }
        
        
// Get initial matches
        
if (preg_match_all('/^([a-z0-9]+)\*?\s+\d+\s+<Link>(?:\s+[a-z0-9\:]+)?\s+(\d+)\s+(\d+)$/m'$res$net_matchesPREG_SET_ORDER) == 0)
            return array();
        
        
// Store statuses for each here
        
$statuses = array();
    
        
// Try using ifconfig to get statuses for each interface
        
try {
            
$ifconfig $this->exec->exec('ifconfig''-a');
            
$current_nic false;
            foreach ((array) 
explode("\n"$ifconfig) as $line) {
                if (
preg_match('/^(\w+):/m'$line$m) == 1)
                    
$current_nic $m[1];
                elseif (
$current_nic != false && preg_match('/^\s+status: ([^$]+)$/m'$line$m) == 1) {
                    
$statuses[$current_nic] = $m[1];
                    
$current_nic false;
                }
            }
        }
        catch(
CallExtException $e) {}
        
        
        
// Get type from dmesg boot
        
$type = array();
        
$type_nics = array();

        
// Store the to-be detected nics here
        
foreach ($net_matches as $net)
            
$type_nics[] = $net[1];


        
// Go through dmesg looking for them
        
if (preg_match_all('/^(\w+) at ([a-zA-Z]+)\d*.+address [\w\:]+.+/m'$this->dmesg$type_matchPREG_SET_ORDER)) {

            
// Go through each
            
foreach ($type_match as $type_nic_match

                
// Is this one of our detected nics?
                
if (in_array($type_nic_match[1], $type_nics))

                    
// Yes; save status
                    
$type[$type_nic_match[1]] = $type_nic_match[2];
        }

        
// Save them here
        
$nets = array();
        
        
// Go through each
        
foreach($net_matches as $net) {

            
// See if we successfully found a status, and use it if so
            
switch (array_key_exists($net[1], $statuses) ? $statuses[$net[1]] : 'unknown') {
                case 
'active':
                    
$state 'up';
                break;
                case 
'inactive':
                case 
'no carrier':
                    
$state 'down';
                break;
                default:
                    
$state 'unknown';
                break;
            }

            
// Save this interface
            
$nets[$net[1]] = array(

                
// pulled from netstat
                
'recieved' => array(
                    
'bytes' => $net[2],
                ),
                
'sent' => array(
                    
'bytes' => $net[3],
                ),

                
// pulled from ifconfig
                
'state' => $state,

                
// pulled from dmesg
                
'type' => array_key_exists($net[1], $type) ? strtoupper($type[$net[1]]) : 'N/A'
            
);
        }
        
        
// Give them
        
return $nets;
    }

    
// processors...
    
private function getCPU() {

        
// Time?
        
if (!empty($this->settings['timer']))
            
$t = new LinfoTimerStart('CPUs');

        
        
// Store them here
        
$cpus = array();
        
        
// Stuff it with identical cpus
        
for ($i 0$i $this->sysctl['hw.ncpu']; $i++)
            
            
// Save each
            
$cpus[] = array(
                
'Model' => $this->sysctl['hw.model'],
                
'MHz' => $this->sysctl['hw.cpuspeed']
            );
        
        
// Return
        
return $cpus;
    }
    
    
// Get process stats
    
private function getProcessStats() {
        
// Time?
        
if (!empty($this->settings['timer']))
            
$t = new LinfoTimerStart('Process Stats');

        
// We'll return this after stuffing it with useful info
        
$result = array(
            
'exists' => true
            
'totals' => array(
                
'running' => 0,
                
'zombie' => 0,
                
'sleeping' => 0,
                
'stopped' => 0,
            ),
            
'proc_total' => 0,
            
'threads' => false // I'm not sure how to get this
        
);

        
// Use ps
        
try {
            
// Get it
            
$ps $this->exec->exec('ps''ax');

            
// Match them
            
preg_match_all('/^\s*\d+\s+[\w?]+\s+([A-Z])\S*\s+.+$/m'$ps$processesPREG_SET_ORDER);
            
            
// Get total
            
$result['proc_total'] = count($processes);
            
            
// Go through
            
foreach ($processes as $process) {
                switch (
$process[1]) {
                    case 
'S':
                    case 
'I':
                        
$result['totals']['sleeping']++;
                    break;
                    case 
'Z':
                        
$result['totals']['zombie']++;
                    break;
                    case 
'R':
                    case 
'D':
                    case 
'O':
                        
$result['totals']['running']++;
                    break;
                    case 
'T':
                        
$result['totals']['stopped']++;
                    break;
                }
            }
        }
        catch (
CallExtException $e) {
            
$this->error->add('Linfo Core''Error using `ps` to get process info');
        }

        
// Give
        
return $result;

    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0063 ]--