PHP Security: Limit Resources Used By Script

by Vivek Gite on February 7, 2010 · 6 comments

How do I control and put limits on php scripts such as maximum execution time of each script and upload file size?

PHP supports the following resource limits directives in php.ini file:

  1. max_execution_time : Maximum execution time of each script, in seconds.
  2. max_input_time : Maximum amount of time each script may spend parsing request data.
  3. memory_limit : Maximum amount of memory a script may consume.

Edit php.ini, enter:
# vi /etc/php.ini
Set up values as follows:

max_execution_time =  30
max_input_time = 30
memory_limit = 40M

Set maximum size of POST data that PHP will accept:

post_max_size = 8M

Set maximum allowed size for uploaded files:

upload_max_filesize = 2M

Turn on or off HTTP file uploads (disallow uploading unless necessary):

file_uploads = Off

Make sure PHP redirects appropriately with the following:

cgi.force_redirect = 0

Disable file requests as fopen calls with the following

allow_url_fopen = Off

Turn on SQL safe mode:

sql.safe_mode = O

Reload Apache web server:
# service httpd reload
OR
Reload lighttpd web server:
# /etc/init.d/lighttpd reload
Note any attempt to exceed these limits will result in a "500 Server Error".

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

{ 6 comments… read them below or add one }

1 Roy Kaldung February 8, 2010

The most of these settings can be restricted to specific VirtualHosts. For details
see http://www.php.net/manual/en/ini.list.php and http://php.net/manual/en/configuration.changes.modes.php.

Reply

2 Juan Giordana February 9, 2010

You don’t need to reload lighty, you need to reload php-cgi or php-fpm.

Reply

3 Vivek Gite February 9, 2010

@Juan

When you reload Lighttpd it reload php-fastcgi too.

Reply

4 Nilesh February 9, 2010

@vivek, do you personally use ‘vi’ to edit files ???? vi sucks. vim rocks.

BTW, isn’t this very basic ? Somebody who reads the manual well b4 setup, knows this. But its funny that there are ppl who don’t do that LOL.

@others, you may also be interested in this -Apache2, PHP, mod_fastcgi and SuExec

Reply

5 Vivek Gite February 9, 2010

@Nilesh: vi is aliased to vim. On production server I do not install vim and just use whatever is shipped with distro. Less is better :)

Reply

6 Nilesh February 10, 2010

@vivek, vi is ok for editing simple config files. but its WORST for editing config files like those of apache. vi cannot highlight whereas vim can.

vi is not always symlinked to vim. in my system (Arch) its linked to ex. and it sucks to core.
I’ve removed it, and set $EDITOR globally to vim. even on my VPS I use vim instead of vi. :)

BTW, where’s the global comment feed ?

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 2 + 14 ?
Please leave these two fields as-is:
Solve the simple math so we know that you are a human and not a bot.




Previous post:

Next post: