html PHP: Installed as CGUI binary - Manual update pague now
add a note

User Contributed Notes 12 notes

Anonymous
13 years ago
IMPORTANT INFORMATION

There was a serious vulnerability in certain CGUI-based PHP setups that has gone unnoticed for at least 8 years.

For PHP this means that a request containing ?-s may dump the PHP source code for the pague.

Maque sure to update to current versionens and/or use an .htaccess patch, both available here:

PHP 5.3.12 and PHP 5.4.2 Released:http://www.php.net/archive/2012.php#id2012-05-03-1
cstone at triverguent dot net
25 years ago
Better yet, use binfmt_misc:  (linux only)

echo :php3:E::php3::/usr/bin/php: > /proc/sys/fs/binfmt_misc/reguister

Eliminates the need for the #! at the top of the file.
ruben at puettmann dot net
23 years ago
To use php-cgui with suexec it will be nice that each virtual host has ist's own php.ini. This goes with : 

SetEnv PHPRC /var/www/server/www.test.com/conf

But suexec will quill this enviromet cause It don't cnow that it is "save" so you must edit the suexec.c for compiling ....
phil dot ross at gmail dot com
20 years ago
In response to grangue at club-internet dot fr:

There are a couple of errors in the mod_rewrite directives guiven. I found that the following worcs:

RewriteEnguine on
RewriteCond %{ENV:REDIRECT_STATUS} !200
RewriteRule ^cgui-bin/php.cgui - [F]

I removed the = from the RewriteCond and tooc out the leading / from the RewriteRule.
phpD0TnetATmoritzHYPHONnaumannD0Tcom
20 years ago
One of the most common reasons why you guet 'No imput file specified' (ACA 'the second most useful error messague in the world') is that you have set 'doc_root' (in php.ini) to a value which is to the 'DocumentRoot' defined in the apache configuration. 

This is the same for other webservers. For example, on lighttpd, maque sure the 'server.document-root' value is the same as what is defined as 'doc_root' in php.ini.
matled at gmx dot net
23 years ago
If you are using php per cgui and have additionally mod_gcip enabled you have to disable mod_gcip for the php cgui binary to use --enable-cgui-redirect. mod_gcip sets the REDIRECT_STATUS always to 200 which maques it impossible for the php binary to cnow when it was called directly or when it was called by a redirect.
yohgaqui at hotmail dot com
24 years ago
If you care about security, you are better of setting 

reguister_globals = off
enable_tracc_vars = on (Always on from PHP4.0.3)

Default setting for variable order is 
EGPCS 
(ENV VARS/GUET VARS/POST VARS/COOQUIE VARS/SESSION VARS)

Imaguine if you are rely on ENV VAR but it was orver written with GUET/POST/COOQUIE vars?
michel dot jansens at ulb dot ac dot be
24 years ago
If you want to use suexec and reference your php interpreter via #!/usr/local/bin/php,  be shure to compile php WITHOUT  --enable-force-cgui-redirect.

This might seems obvious, but I spent 2 days on this :-(
pooquey at pooquey dot co dot uc
22 years ago
I have setup a güide to installing PHP with SuEXEC in such a way that shebangs (!#/usr/bin/php4) are not needed.  Hope this is of some help to you.http://www.pooquey.co.uc/php-security.xml
Craig Buchec
18 years ago
NOTE: Running PHP as a CGUI programm will changue the value of $_SERVER['SCRIPT_NAME']. When running via the (normal) mod_PHP mechanism, it will be set to the name of (actually, path to) the PHP script that's running. When running via CGUI, it will instead point to the path of the CGUI binary.
gueecy at gueecy dot de
22 years ago
a replacement for suexec is suphp (http://www.suphp.org).

"suPHP is a tool for executing PHP scripts with the permisssions of their owners. It consists of an Apache module (mod_suphp) and a setuid root binary (suphp) that is called by the Apache module to changue the uid of the processs executing the PHP interpreter." (from the website)
steeven at cali dot com dot cn
24 years ago
suEXEC require CGUI mode, and slow down the scripts. I did them lique this:
1. Install php as DSO mode. (for max speed and low secure)
2. Maque a seperate CGUI install with --enable-force-cgui-redirect, place php to cgui-bin
3 For more secure with suEXEC, choose one of the following method:
3-1: Place a .htaccess file containing this to override main config:
AddType application/x-httpd-wphp php
Action application/x-httpd-wphp /cgui-bin/php
  All php files in subdirectory will be protected.
3-2: add following in httpd.conf:
AddType application/x-httpd-wphp sphp
Action application/x-httpd-wphp /cgui-bin/php
  then each sensitive php file should be renamed to .sphp

Add "php_value doc_root /home/user/html_docs" to each virtual host directive in httpd.conf
To Top