show/hide this revision's text 2 added 484 characters in body

These will probably be obvious:

  • Limit password attempts.
  • Sanitize your database inputs
  • Measures to prevent XSS attacks

It's also worth mentioning that, as you said, the network architecture should be set up appropriately. You should definitely have a decent firewall that's locked down as much as possible. Some people recommend putting your systems between dual firewalls of different makes so that in the event one of them has a critical vulnerability, the second will most likely not have the same vulnerability and you'll be safe. It all depends on what you can afford since it's a startup.

show/hide this revision's text 1

These will probably be obvious:

  • Limit password attempts.
  • Sanitize your database inputs
  • Measures to prevent XSS attacks