Security in PHP Applications By: Aditya Mooley Nagpur PHP Meetup August'09
Who Am I? Aditya Mooley ( [email_address] )
Zend Certified PHP 5 Engineer
Working with SANIsoft Technologies since last 6 years
Opensource contributor
Writing secure web applications
We will discuss ... Why Secure
What to Secure
How to Secure
Why secure? PHP is widely used programming language for web
Used by individuals as well as corporates
Handles lot of critical and sensitive information
Malicious users can misuse this information if they get access to it
Secure what? Secure code
Secure database
Secure web server
How to secure Follow some basic guidelines
register_globals is biggest evil. It must be off.
Don't use $_REQUEST. Use individual super globals instead.
Follow Thumb Rule -  Filter input

Security In PHP Applications