Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
1  
Along with sanitizing input queries, try forcing data types as well (e.g. if you have a variable $ID, force it to be an int by casting it: $ID = int($raw_ID)). – Blender Feb 3 '12 at 4:16
@Blender, good idea thanks for the tip – Casey Flynn Feb 3 '12 at 4:18
Do you salted password hashes as well? Also, I'd re-think IP and user agent matching. IPs can change, and some people use different browsers (or browsers update and change their user agent strings). – Blender Feb 3 '12 at 4:21
@Blender, the phpass password hashing framework takes care of that. It does create a unique salt for each password, and the salt is actually concatenated onto the resulting hash. See link if you're curious. – Casey Flynn Feb 3 '12 at 4:22
1  
That's about all that I could think of. I've never hired any company to perform a security audit (so I can't really suggest you one), but your webapp seems to be rock-solid. – Blender Feb 3 '12 at 4:26
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.