Skip to content

Instantly share code, notes, and snippets.

@erubboli
Created March 12, 2013 11:01
Show Gist options
  • Save erubboli/5142022 to your computer and use it in GitHub Desktop.
Save erubboli/5142022 to your computer and use it in GitHub Desktop.
Protection methods :
- OAUTH2
- pros:
- already in place
- secure
- cons:
- increase latency because of the bouncing requests (verify)
- very complicated (verify)
- questions:
- increased latency will affect user responsiveness? (aka are all
request in background?)
- Shared pass
- pros:
- easy to implement
- no delays
- cons:
- not secure
- not scalable
- IP address block
- pros:
- no application changes
- easy to implement
- no delays
- cons:
- hard to maintain with a scalable architecture
- SSL certificate
- pros:
- no delays
- scalable
- secure
- no application changes
- cons:
- ?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment