PHP 8.2.30
Preview: get_user.php Size: 947 B
/var/softaculous/suitecrm7/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>';
	
?>

Directory Contents

Dirs: 6 × Files: 20

Name Size Perms Modified Actions
images DIR
- drwxr-xr-x 2026-03-23 21:04:43
Edit Download
php53 DIR
- drwxr-xr-x 2026-03-23 21:04:43
Edit Download
php56 DIR
- drwxr-xr-x 2026-03-23 21:04:43
Edit Download
php71 DIR
- drwxr-xr-x 2026-03-23 21:04:43
Edit Download
php81 DIR
- drwxr-xr-x 2026-03-23 21:04:43
Edit Download
php82 DIR
- drwxr-xr-x 2026-03-23 21:04:43
Edit Download
16.49 KB lrw-r--r-- 2026-03-23 12:32:06
Edit Download
11.90 KB lrw-r--r-- 2026-03-23 06:45:36
Edit Download
132 B lrw-r--r-- 2024-11-06 12:05:18
Edit Download
4.68 KB lrw-r--r-- 2026-03-23 12:32:06
Edit Download
433 B lrw-r--r-- 2023-11-23 11:31:18
Edit Download
9.44 KB lrw-r--r-- 2026-03-23 12:32:06
Edit Download
673 B lrw-r--r-- 2023-11-23 11:31:18
Edit Download
947 B lrw-r--r-- 2023-11-23 11:31:18
Edit Download
3.33 KB lrw-r--r-- 2026-03-23 12:32:06
Edit Download
3.55 KB lrw-r--r-- 2026-03-23 06:45:36
Edit Download
924 B lrw-r--r-- 2023-11-23 11:31:18
Edit Download
11.07 KB lrw-r--r-- 2026-03-23 12:32:06
Edit Download
1.12 KB lrw-r--r-- 2024-02-07 07:59:46
Edit Download
3.16 KB lrw-r--r-- 2026-03-23 12:32:06
Edit Download
1.11 KB lrw-r--r-- 2026-03-23 06:45:36
Edit Download
305 B lrw-r--r-- 2023-11-23 11:31:18
Edit Download
402.07 KB lrw-r--r-- 2026-03-23 06:45:36
Edit Download
50.02 MB lrw-r--r-- 2026-03-23 06:45:36
Edit Download
558 B lrw-r--r-- 2023-11-23 11:31:18
Edit Download
4.13 KB lrw-r--r-- 2025-12-22 07:06:42
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).