[email protected]: > /** drop privileges to 'nobody' */ > if(!@posix_setgid(99) || !@posix_setuid(99))
PHP, eh? You also need to drop "secondary groups". On UNIX, that's
done with setgroups() or initgroups(), before dropping root privileges.
Wietse
