I'm developing a web application (PHP) that may store sensitive/confidential company information and is targeted towards medium to large size businesses.
In developing this application, my team is taking every security measure we can think of, including:
- Sanitizing user input for SQL queries (By using the codeigniter input/database libraries)
- Forcing the use of HTTPS via HTTP-redirects
- Hashing user passwords with the phpass framework (CRYPT_BLOWFISH) (also checking passwords are < 72 characters to prevent DoS attacks)
- Using a database to store session data along with quick session expiration ( < 10min), secure sessions (only sent via HTTPS), and encrypted cookies, and matching IP & User Agent
- CSRF (Cross Site Request Forgery) tokens
- Using a third party to store and process any credit card data
First, are there any security practices that I may have overlooked? However, my main question is: Are there any reputable auditing bodies/groups/organizations that could audit our application and affirm that we're using the best (or at least industry accepted standard) security measures? We would like to use such an accreditation as a selling-point for our software.
$ID, force it to be anintby casting it:$ID = int($raw_ID)). – Blender Feb 3 '12 at 4:16