Secure PHP with Suhosin

Discussion in 'PHP' started by pradeep, May 7, 2007.

  1. pradeep

    pradeep Team Leader

    Joined:
    Apr 4, 2005
    Messages:
    1,645
    Likes Received:
    87
    Trophy Points:
    0
    Occupation:
    Programmer
    Location:
    Kolkata, India
    Home Page:
    http://blog.pradeep.net.in
    PHP is arguably the most popular scripting language for Web sites. This popularity comes with a price, however, and that is increased attention to various vulnerabilities in PHP itself and in the plethora of Web applications written in PHP. The security features built into PHP are weak, and the language itself is so flexible that not only is it easy to write sloppy and insecure code, but it almost seems to be encouraged. One could make that assumption based on the fact that, over and over again, the same vulnerabilities are found in various applications: SQL injection, cross-site scripting, arbitrary command execution, etc.

    Since the built-in PHP safeguards like safe_mode and open_basedir are marginal at best, the Hardened-PHP project came about to build more security and checks into PHP. Originally this was done by creating the Hardened-PHP patch, which required patching and recompiling PHP itself. More recently, the Hardened-PHP project came out with a new project called Suhosin.

    Suhosin has two parts; the first part is a patch to PHP that hardens the Zend Engine itself, protecting from possible buffer overflows and related vulnerabilities. The second is the Suhosin extension, a stand-alone module for use with PHP. The two can work together, or the extension alone can be used. For those who do not wish to maintain their own PHP installation and prefer to use the vendor-supplied PHP on their Linux distribution, using the extension provides many security features that are not present in PHP itself.

    The extension is easy to install; it can either be installed via PECL or downloaded and compiled:

    Code:
     $ tar xvzf suhosin-0.9.17
       $ cd suhosin-0.9.17
       $ phpize
       $ ./configure
       $ make
       $ sudo make install
    To enable suhosin, add to /etc/php.ini the following:
    Code:
    extension=suhosin.so
    The default configuration items are sufficient for most people. To tweak the settings, add values to /etc/php.ini. The Web site details the various configuration options that can be used.

    With Suhosin, you can enable logging of errors to syslog and/or arbitrary logfiles; create black- and white-lists per virtual host; and filter on GET and POST requests, file uploads, and cookies. You can enable transparent encryption of sessions and cookies, set upper memory limits that cannot be bypassed, and much more. And unlike the original Hardened-PHP patch, Suhosin is binary-compatible with third-party extensions like Zend Optimizer.
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice