Skip to content

Commit

Permalink
Create new secure sessions assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
soumyaray committed May 6, 2017
1 parent 3dac37c commit 1493f9a
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions descriptions/055_secure_sessions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Secure Sessions

This week we will secure the storage of session state across our system and on the client machine. See the latest version of our [application side code](https://github.com/ISS-Security/configshare-app/tree/2_secure_sessions).

1. Let's update some of the security choices we made last week
- Let's switch our API to forbid insecure HTTP access – it should only accept HTTPS scheme from requests
- Try adding tests for the web application's service objects: *stub* any outward HTTP requests to the API
- If you are using cookies for any non-session purposes, make sure to implement a strong session secret nonce
2. Let's switch our session storage to server-side pool
- Provision a Redis machine on Heroku
- Specify Redis as our application's session store
3. Use encrypted session variables
- Create a secure messaging library for all outgoing messages
- Create a class in `/lib` that can `encrypt` and `decrypt` any message
- it should be able to `encrypt` and `decrypt` any message using a secret `MSG_KEY`
- Create a secure session library
- Create a class in `/lib` that can securely `set` and `get` session variables
- Use the NaCl library (`rbnacl/libsodium`) for all cryptography
3. Create a registration workflow that verifies user emails
- Allow users to create accounts with only username and email
- Verify the email address by sending an email
- Use Pony + Sendgrid to send the verification email with a link back to our site
- Use your secure messaging library to create an encrypted token to embed the new account information in the link
- Once users return using their verification link, ask for password + password confirmation
- Create users who have finished the entire process (use a service object)

0 comments on commit 1493f9a

Please sign in to comment.