145

I need to detect if php is running as nobody. How do I do this?

Are there any other names for "nobody"? "apache"? Any others?

Charles
  • 50,943
  • 13
  • 104
  • 142
  • What do you mean exactly with the "are there any other names" question? Sysadmins can create users with whatever name they want. – Álvaro González Oct 14 '11 at 18:06
  • Any other default names for anything that might be considered the server; apache, nobody, www-data, etc.. –  Oct 14 '11 at 18:11
  • 1
    If I recall correctly, system users normally have a small UID (below 1024?). That might be a better clue for whatever you are trying to accomplish. – Álvaro González Oct 14 '11 at 18:18
  • 1
    http://php.net/manual/en/function.get-current-user.php – E Ciotti Jan 21 '12 at 03:29
  • 12
    get_current_user() returns the owner of current script, not the user php is currently running. – Dima L. Apr 06 '14 at 09:41
  • Related: [How do I find out, which user is running the current php script?](http://stackoverflow.com/q/11088390/2157640) – Palec Aug 09 '15 at 16:26

16 Answers16

245

<?php echo exec('whoami'); ?>

AlienWebguy
  • 76,997
  • 17
  • 122
  • 145
104

If available you can probe the current user account with posix_geteuid and then get the user name with posix_getpwuid.

$username = posix_getpwuid(posix_geteuid())['name'];

If you are running in safe mode however (which is often the case when exec is disabled), then it's unlikely that your PHP process is running under anything but the default www-data or apache account.

Nick Tsai
  • 3,799
  • 33
  • 36
mario
  • 144,265
  • 20
  • 237
  • 291
  • 10
    There is [a comment on `get_current_user()` manpage](http://php.net/manual/en/function.get-current-user.php#57624) that shows this approach. As of PHP 5.4, it can be shortened to this: `print posix_getpwuid(posix_geteuid())['name'];` – Palec Aug 09 '15 at 16:17
86

Kind of backward way, but without exec/system:

file_put_contents("testFile", "test");
$user = fileowner("testFile");
unlink("testFile");

If you create a file, the owner will be the PHP user.

This could also likely be run with any of the temporary file functions such as tempnam(), which creates a random file in the temporary directory and returns the name of that file. If there are issues due to something like the permissions, open_basedir or safe mode that prevent writing a file, typically, the temp directory will still be allowed.

Palec
  • 12,743
  • 8
  • 69
  • 138
Jonathan Kuhn
  • 15,279
  • 3
  • 32
  • 43
  • 2
    Very clever cross platform solution. Boh! – Matt Fletcher May 23 '14 at 15:51
  • 3
    Nice: the only non-privileged solution here to also find the _group_ that PHP is running as. – tanius Dec 29 '14 at 03:25
  • 2
    a worthy hack, deserves a higher place – Abraham Philip Apr 18 '15 at 04:31
  • I can't write to the web directory, which is what brought me here, but rather than getting trapped in a circle of fail I read Jonathan Kuhn's comment, and tempnam worked a treat. I still can't write to the directory, but at least I've confirmed who I am. – Dazbert May 17 '16 at 08:07
  • Depends on the write permissions `php user` is having or not. And for giving write permissions you are required to know the username, Practically only feasible for those programmers who forgot the `php user` after assigning it the write permissions. – Ravinder Payal Apr 23 '17 at 11:03
  • 1
    @RavinderPayal Unless you use the tempnam function like I suggested. It is almost guaranteed that the user can write to the temporary directory regardless of who they are. Without being able to write to the temporary directory, you could temporarily give a folder 777 permissions and if enabled, disable selinux for that path. – Jonathan Kuhn Apr 24 '17 at 19:07
  • Got it brother. Sorry for not reading last two - three lines of answer. – Ravinder Payal Apr 24 '17 at 19:14
  • 1
    @RavinderPayal there are additional functions to return the temp path. So `$temp_file = tempnam(sys_get_temp_dir(), 'TMP');` would create a temporary file in the temp directory on most any system. You could then use that file to get the user/group. I left some of that up to the user to figure out. – Jonathan Kuhn Apr 24 '17 at 19:19
  • Thanks brother for adding more value to answer – Ravinder Payal Apr 24 '17 at 19:21
20

More details would be useful, but assuming it's a linux system, and assuming php is running under apache, it will run as what ever user apache runs as.

An easy way to check ( again, assuming some unix like environment ) is to create a php file with:

<?php
    print shell_exec( 'whoami' );
?>

which will give you the user.

For my AWS instance, I am getting apache as output when I run this script.

Naincy
  • 2,953
  • 1
  • 12
  • 21
Seth
  • 558
  • 3
  • 6
16

You can try using backticks like this:

echo `whoami`;
ricbra
  • 170
  • 6
15

Straight from the shell you can run:

php -r "echo exec('whoami');"
14

I would use:

  • lsof -i
  • lsof -i | less
  • lsof -i | grep :http

You can type any of these in your ssh command line and you will see which user is listening to each service.

You can also check this file:

more /etc/apache2/envvars

and look for these lines:

export APACHE_RUN_USER=user-name
export APACHE_RUN_GROUP=group-name

To filter out envvars file data, you can use grep:

more /etc/apache2/envvars | grep APACHE_RUN_
PoolloverNathan
  • 148
  • 2
  • 11
Lukas Liesis
  • 24,652
  • 10
  • 111
  • 109
14

exec('whoami') will do this

<?php
echo exec('whoami');
?>
Martin Ille
  • 6,747
  • 9
  • 44
  • 63
genesis
  • 50,477
  • 20
  • 96
  • 125
1

add the file info.php to the following directory - your default http/apache directory - normally /var/www/html

with the following contents

<?php                                                                           
phpinfo();                                                                    
?>  

Then httpd/apache restart the go to your default html directory http://enter.server.here/info.php

would deliver the whole php pedigree!

CRTLBREAK
  • 107
  • 1
  • 4
1

You can use these commands :

<? system('whoami');?>

or

<? passthru('whoami');?>

or

<? print exec('whoami');?>

or

<? print shell_exec('whoami');?>

Be aware, the get_current_user() returns the name of the owner of the current PHP script !

Freeman
  • 9,464
  • 7
  • 35
  • 58
0

In my setup I want to check if the current process has permission to create folders, subfolders and files before I begin a process and suggest a solution if it looks like I can't. I wanted to run stat(<file>) on various things to ensure the permissions match those of the running process (I'm using php-fpm so it varies depending on the pool).
The posix based solution Mario gave above, seems perfect, however it seems the posix extension is --disabled so I couldn't do the above and as I want to compare the results with the response from running stat() running whoami in a separate shell isn't helpful either (I need the uid and gid not the username).

However I found a useful hint, I could stat(/proc/self) and stat(/proc/self/attr) and see the uid and gid of the file.

Hope that helps someone else

sibaz
  • 1,242
  • 14
  • 26
0

Proposal

A tad late, but even though the following is a work-around, it solves the requirement as this works just fine:

<?
    function get_sys_usr()
    {
        $unique_name = uniqid();  // not-so-unique id
        $native_path = "./temp/$unique_name.php";
        $public_path = "http://example.com/temp/$unique_name.php";
        $php_content = "<? echo get_current_user(); ?>";
        $process_usr = "apache";  // fall-back

        if (is_readable("./temp") && is_writable("./temp"))
        {
            file_put_contents($native_path,$php_content);
            $process_usr = trim(file_get_contents($public_path));
            unlink($native_path);
        }

        return $process_usr;
    }


    echo get_sys_usr();  // www-data
?>


Description

The code-highlighting above is not accurate, please copy & paste in your favorite editor and view as PHP code, or save and test it yourself.

As you probably know, get_current_user() returns the owner of the "current running script" - so if you did not "chown" a script on the server to the web-server-user it will most probably be "nobody", or if the developer-user exists on the same OS, it will rather display that username.

To work around this, we create a file with the current running process. If you just require() this into the current running script, it will return the same as the parent-script as mentioned; so, we need to run it as a separate request to take effect.

Process-flow

In order to make this effective, consider running a design pattern that incorporates "runtime-mode", so when the server is in "development-mode or test-mode" then only it could run this function and save its output somewhere in an include, -or just plain text or database, or whichever.

Of course you can change some particulars of the code above as you wish to make it more dynamic, but the logic is as follows:

  • define a unique reference to limit interference with other users
  • define a local file-path for writing a temporary file
  • define a public url/path to run this file in its own process
  • write the temporary php file that outputs the script owner name
  • get the output of this script by making a request to it
  • delete the file as it is no longer needed - or leave it if you want
  • return the output of the request as return-value of the function
-1

I usually use

<?php echo get_current_user(); ?>

I will be glad if it helped you

yiimar
  • 25
  • 1
  • This has already been mentioned in the comments under the question and it does have only very little to do with the user the script is running under. – Palec Jun 03 '16 at 12:24
  • 1
    `get_current_user() - Gets the name of the owner of the current PHP script` - *not* the user running the PHP process. – Francisco Zarabozo Feb 04 '17 at 09:05
-1
$_SERVER["USER"]

$_SERVER["USERNAME"] 
NathanOliver
  • 171,901
  • 28
  • 288
  • 402
Step
  • 314
  • 3
  • 3
-2
<?php phpinfo(); ?>

save as info.php and

open info.php in your browser

ctrl+f then type any of these:

APACHE_RUN_USER
APACHE_RUN_GROUP
user/group

you can see the user and the group apache is running as.

-3
$user = $_SERVER['REMOTE_USER'];

http://php.net/manual/en/reserved.variables.server.php

Authenticated user

Tybion
  • 87
  • 1
  • 7