+ Reply to Thread
Results 1 to 1 of 1
  1. #1
    Join Date
    Aug 2004
    Location
    Oradea, Romania
    Posts
    135
    Downloads
    0
    Uploads
    0

    Exclamation PHP Security Announcements

    For those of you that don't constantly check out php.net site for news, here's a must read one:

    source:
    php.net/security-note.php

    --- copy & paste ---
    A Note on Security in PHP

    PHP is a powerful and flexible tool. This power and flexibility comes from PHP being a very thin framework sitting on top of dozens of distinct 3rd-party libraries. Each of these libraries have their own unique input data characteristics. Data that may be safe to pass to one library may not be safe to pass to another.

    A recent Web Worm known as NeverEverSanity exposed a mistake in the input validation in the popular phpBB message board application. Their highlighting code didn't account for double-urlencoded input correctly. Without proper input validation of untrusted user data combined with any of the PHP calls that can execute code or write to the filesystem you create a potential security problem. Despite some confusion regarding the timing of some unrelated PHP security fixes and the NeverEverSanity worm, the worm didn't actually have anything to do with a security problem in PHP.

    When we talk about security in a web application we really have two classes. Remote and Local. Every remote exploit can be avoided with very careful input validation. If you are writing an application that asks for a user's name and age, check and make sure you are only getting characters you would expect. Also make sure you are not getting too much data that might overflow your backend data storage or whatever manipulation functions you may be passing this data to. A variation of the remote exploit is the XSS or cross-site scripting problem where one user enters some javascript that the next user then views.

    For Local exploits we mostly hear about open_basedir or safemode problems on shared virtual hosts. These two features are there as a convenience to system administrators and should in no way be thought of as a complete security framework. With all the 3rd-party libraries you can hook into PHP and all the creative ways you can trick these libraries into accessing files, it is impossible to guarantee security with these directives. The Oracle and Curl extensions both have ways to go through the library and read a local file, for example. Short of modifying these 3rd-party libraries, which would be difficult for the closed-source Oracle library, there really isn't much PHP can do about this.

    When you have PHP by itself with only a small set of extensions safemode and open_basedir are generally enough to frustrate the average bad guy, but for critical security situations you should be using OS-level security by running multiple web servers each as their own user id and ideally in separate jailed/chroot'ed filesystems. Better yet, use completely separate physical servers. If you share a server with someone you don't trust you need to realize that you will never achieve airtight security.
    Last edited by alexandru; 02-07-2005 at 01:26 PM.

  2. WebmasterServe Adverts:
+ Reply to Thread

Similar Threads

  1. Security issue raised about offline browsing
    By temi in forum Forum Lobby
    Replies: 0
    Last Post: 02-19-2009, 01:45 PM
  2. Windows Security Flaw Is 'Severe'
    By ovi in forum Computers
    Replies: 0
    Last Post: 12-30-2005, 10:54 AM
  3. PHP & PHPBB security
    By ealex in forum Computers
    Replies: 0
    Last Post: 11-09-2005, 01:49 PM
  4. Simple PHP Template Tutorial
    By theomnis in forum Website Programming Discussion
    Replies: 8
    Last Post: 03-30-2005, 03:39 PM
  5. PHP Security: PHPSC Site launched!
    By alexandru in forum Computers
    Replies: 0
    Last Post: 02-07-2005, 02:28 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110