ABREPR / cipp

http://www.abrepr.org/
GNU General Public License v2.0
0 stars 1 forks source link

Run deployment Checklist #81

Open Krista-Nuams opened 10 years ago

Krista-Nuams commented 10 years ago

Security and Spam Possibilities

File Permissions

ini_set('session.cache_expire', 200000);

ini_set('session.cache_limiter', 'none');

ini_set('session.cookie_lifetime', 2000000);

ini_set('session.gc_maxlifetime', 200000);


The default values result in the sessions table growing very quickly and unnecessarily. Changing the numbers to something reasonable will not hinder the user experience and will prevent database bloating.

Krista-Nuams commented 10 years ago

http://www.zivtech.com/blog/impending-drupal-site-launch-use-list

dafeder commented 10 years ago

This may be opening a can of worms, but according to security standards, HTML uploads are not safe, and we have several fields that allow them.

dafeder commented 10 years ago