
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
accountdown-token
Advanced tools
Token authentication for accountdown
Install with npm
$ npm i accountdown-token --save
Install dev dependencies:
$ npm i -d && npm test
var Token = require('accountdown-token');
var accountdown = require('accountdown');
var level = require('level');
var db = level('tmp/users.db');
var users = accountdown(db, {
login: {
token: Token
}
});
var username = 'doowb';
var opts = {
login: { token: { username: username, token: 'foobarbaz' } },
value: { name: 'Brian' }
};
users.create(username, opts, function (err) {
if (err) return console.log('Error creating user', err);
users.verify('token', opts.login.token, function (err, ok, id) {
if (err) return console.log('Error', err);
if (ok === false) return console.log('Invalid token for ' + id);
console.log('Valid token for ' + id);
});
});
Verify that the token is correct and still valid (e.g. not expired)
Params
creds
{Object}: Credentials object containing a username
and token
to validate.cb
{Function}: Callback that takes err, ok, id
Example
login.verify({ username: 'doowb', token: 'XXXXXXXXXXXX' }, function (err, ok, id) {
if (err) return console.log('Error validating token');
if (ok === true) return console.log('valid token for ' + id);
console.log('Invalid token for ' + id);
});
Create a new user token for the given id and credentials.
Params
id
{String}: Identifier of the account being created.creds
{Object}: Credentials object used for creating the token.returns
{Array}: Array of rows to be added to the accountdowndatabaseExample
login.create('doowb', { username: 'doowb' });
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue
Brian Woodward
Copyright © 2015 Brian Woodward Released under the MIT license.
This file was generated by verb-cli on July 23, 2015.
FAQs
Token authentication for accountdown
The npm package accountdown-token receives a total of 1 weekly downloads. As such, accountdown-token popularity was classified as not popular.
We found that accountdown-token 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.