Socket
Socket
Sign inDemoInstall

tssrp6a

Package Overview
Dependencies
3
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    tssrp6a

SRP6a client and server lib


Version published
Weekly downloads
151
decreased by-24.88%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Midokura TSSRP6a

This library is a TypeScript implementation of Secure Remote Password SRP6a.

SRP allows a user to authenticate to a server without sending the password (zero-knowledge proof of password) using generated private/public keys.

https://en.wikipedia.org/wiki/Secure_Remote_Password_protocol https://tools.ietf.org/html/rfc5054

Signup / registration

Diagram

The user requests a registration page, the browser will generate a salt and take the user's identity and password and generate a verifier.
The browser sends email, salt, verifier to server. The server saves this to storage.

Signin / login

Diagram

The user starts an authentication session by entering his id and password.

The id is sent with a request to the server, which finds salt and verifier for that id. Server executes step1 to generate private key b and public key B, and responds to browser with salt and B.

The browser generates private key a, public key A and computes M1. Browser makes requests with A and M1.

Server verifies that the credentials were correct with step2, using b and M1. If successful, it also takes A and generates and responds with M2.

Browser may additionally verify the authority of the server from M2 with step3.

Note: a and b are generated for one authentication "session" and discarded immediately.

Usage

See session test for actual usage of a complete authentication flow between client and server.

This package's client and server hashing algorithms of course match, and matches Java's Nimbus SRP.

These settings can be overriden, client and server receive a SRPConfig instance that holds parameters for N and g, and also an instance of SRPRoutines. A subclass of routines can be used that uses different hashing and computation algorithms, to adapt to any other server implementation. This example shows how to override computeIdentityHash() routine of the client.

Recomendations

SRP alone only prevents a man-in-the-middle attack from reading the password, but such an attack could also inject code into the browser to hijack the password.

Always use SRP in combination with HTTPS. Browsers can be vulnerable to: having malicious certificates installed beforehand, rogue certificates in the wild, server misconfiguration, bugs like the heartbleed attack, servers leaking password into errors and logs. SRP in the browser offers an additional hurdle and may prevent some mistakes from escalating.

The client can chose to exclude the identity of its computations or not. If excluded, the id cannot be changed. But this problem is better solved by an application schema that separates "identity" from "authentication", so that one identity can have multiple authentications. This allows to switch identity + password, and also to user more than one way of logging in (think "login with email+password, google, or facebook").

Notes

Please NOTE that default routines does not strictly follow SRP6a RFC because user identity is NOT included in the verifier generation. This makes possible for malicious server to detect if two users share the same password but also allows client to change it "identity" without regenerating password.

This example shows how to make implementation strictly compliant with SRP6a specification.

Keywords

FAQs

Last updated on 08 Aug 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc