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?
|
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?
| |||||||||||
feedback
|
|
If available you can probe the current user account with 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 | |||
|
feedback
|
|
| |||
|
feedback
|
|
| |||||
|
feedback
|
|
kind of backward way, but without exec/system:
if you create a file, the owner will be the php user. | |||
|
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:
which will give you the user. | |||
|
feedback
|