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?

link|improve this question

What do you mean exactly with the "are there any other names" question? Sysadmins can create users with whatever name they want. – Álvaro G. Vicario Oct 14 '11 at 18:06
Any other default names for anything that might be considered the server; apache, nobody, www-data, etc.. – Wesley 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 G. Vicario Oct 14 '11 at 18:18
feedback

6 Answers

up vote 4 down vote accepted

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

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.

link|improve this answer
feedback

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

link|improve this answer
Can't really use exec or system or any such passthru functions. – Wesley Oct 14 '11 at 18:00
feedback

exec('whoami') will do this

<?php
exec('whoami');
?>
link|improve this answer
Can't really use exec or system or any such passthru functions. – Wesley Oct 14 '11 at 18:00
@Wesley: so that's not possible. – genesis Oct 14 '11 at 18:01
feedback

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.

link|improve this answer
feedback

You can try using backticks like this:

echo `whoami`;
link|improve this answer
feedback

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:

print shell_exec( 'whoami' );

which will give you the user.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.