Skip to content

Instantly share code, notes, and snippets.

@halilim
Last active August 8, 2016 22:01
Show Gist options
  • Save halilim/3313755f6b7031a1d100 to your computer and use it in GitHub Desktop.
Save halilim/3313755f6b7031a1d100 to your computer and use it in GitHub Desktop.
Web Apps Security / Performance

Security

The Security Checklist

General

Passwordless Auth

  • Expire the link after a short amount of time
  • The link should only be one-time (e.g. usable only once)

Links

PHP


Performance

PHP

  • Opcode caching (OPcache, APC etc)
  • Develop your code against E_STRICT. If the code you are hosting have many notices, deprecation warnings, strict warnings etc your app might have to spend a long time for writing logs. Either fix the code or lower the error level in php.ini

MySQL

Ruby


... to be continued ...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment