Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@shankarmorwal/webauth-server
Advanced tools
Implementation of strong authentication with the webauthn standard and FIDO2. Strong authentication is an authentication method using a physical key.
Implementation of strong authentication with the webauthn standard and FIDO2. Strong authentication is an authentication method using a physical key.
For a more thorough introduction see these two nice articles:
npm install @shankarmorwal/webauth-client
npm install @shankarmorwal/webauth-server
Webauthn
is composed of two parts @shankarmorwal/webauth-client
and @shankarmorwal/webauth-server
import {
solveRegistrationChallenge,
solveLoginChallenge
} from '@shankarmorwal/webauth-client';
solveRegistrationChallenge
:
convert the challenge returned by the server on the register route into the response to be returnedsolveLoginChallenge
:
convert the challenge returned by the server on the login route into the response to be returnedSee an example in example/front
import {
parseRegisterRequest,
generateRegistrationChallenge,
parseLoginRequest,
generateLoginChallenge,
verifyAuthenticatorAssertion,
} from '@shankarmorwal/webauth-server';
parseRegisterRequest
:
Extract challenge and key from the register request body. The challenge allow to retrieve the user, and the key must be stored server side linked to the user.generateRegistrationChallenge
:
Generate a challenge from a relying party and a user { relyingParty, user }
to be sent back to the client, in order to registerparseLoginRequest
:
Extract challenge and KeyId from the login request.generateLoginChallenge
:
Generate challengeResponse from the key sent by the client during login. challengeResponse.challenge should be stored serverside linked to the corresponding userverifyAuthenticatorAssertion
:
Take the loginChallenge request body and the key stored with the user, and return true if it passes the authenticator assertionSee an example in example/server
For now only fido-u2f and packed format are implemented
FAQs
Implementation of strong authentication with the webauthn standard and FIDO2. Strong authentication is an authentication method using a physical key.
We found that @shankarmorwal/webauth-server demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.