Giter Site home page Giter Site logo

impruthvi / node-express-api-auth Goto Github PK

View Code? Open in Web Editor NEW

This project forked from ylorenzana/node-express-api-auth

0.0 0.0 0.0 144 KB

Boilerplate for API auth following secure standards. Includes user registration/login and authentication using bearer tokens and CSRF protection using CSRF-tokens.

License: MIT License

JavaScript 100.00%

node-express-api-auth's Introduction

Node.js + Express.js Authentication API Boilerplate

This is a project meant to be used as a starting point for APIs that require user authentication (registration and sign on). Sign on sessions are showcased with protected routes that pass through authentication middleware. API is designed to be consumed by a SPA.

This is a WIP, if you find any issues or concerns with the security of the implementation, please, open a new issue or contact me directly @yanglorenzana on Twitter.

Read the tutorial series for this project if you'd like a more detailed explanation and walkthrough.

WIP:

  • Password reset mechanism
  • Account lockout after too many unsuccessful login attempts
  • Another security mechanism against CSRF โœ”๏ธ

TODO:

  • Request throttling

Tried following json:api specification for the design of the API for the error responses, but didn't get a good example for other response objects.

Project uses mongoose for data modeling and express.js for easy server setup.

The auth system uses 16 random bytes generated with the node.js crypto module as authentication tokens.

Project Setup

To run project locally:

  • Clone repo
  • npm install in root directory
  • Add your mongoDB uri to secrets.js file or add it to your ENV variables
  • npm start to run nodemon in watch mode
  • Use postman to test endpoints or curl if you're cool

Overview of auth system:

  1. User registers account. Password is hashed and salted with bcrypt and is stored in database
  2. User enters credentials, server validates credentials. If valid, a random 16 byte token is generated and stored in database along with the user ID of the requesting user
  3. Token is set in a cookie along with the server's response
  4. Client includes cookie on subsequent requests.
  5. Protected endpoints send request through authentication middleware, which checks token received in request to exist in database and have a status of 'valid'. The endpoints that use the authentication in this project are the GET/DELETE api/users/me and PUT api/users/logout. Meant to serve as examples of how it would work
  6. To logout, client would send request to api/users/logout with their auth token. If token exists and is valid, set session status as 'expired'

CSRF Protection

  1. Implemented CSRF-tokens for CSRF mitigation. Read more at 'Synchronizer (CSRF) Tokens' section of OWASP CSRF Prevention
  2. Added new key to session schema. Every session now includes csrfToken key.
  3. Whenever a new user registers or existing user logs in, a new session is initialized. Sessions now require a csrfToken to be generated along with the original bearer token (using the same generateToken() method).
  4. Once session is initalized, server sets bearer token in a token cookie, but also responds with the session's csrf-token in body.
  5. This csrf-token must be attached to the headers of every request as csrf-token: 'YOUR TOKEN HERE' that would change/modify server-side state. In this case, the DELETE api/users/me and PUT api/users/logout routes require a csrf token.
  6. Protected routes use csrfCheck middleware. This middleware should be added to any route that would change state. The csrfCheck for the delete user route is somewhat redundant as it requires the user to provide credentials, but I included it to serve as example.

An example of login route response and placing the csrf-token in headers:

postman-example.png

License

MIT


Feedback and PR's welcome. Follow me @yanglorenzana, DM's always open.

node-express-api-auth's People

Contributors

ylorenzana avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.