Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@sh-a-v/passport-passwordless
Advanced tools
This project was build, to handle Passwordless as a build in authentication method using the common authentication library Passport. By plugging into Passport, Passwordless can be easily and unobtrusively integrated into any application or framework that supports Connect-style middleware, including Express.
For now, only the redis store and the email delivery was tested. Feel free to add configuration samples for data stores and code samples for new delivery types.
$ npm install passport-passwordless
passport.use(new PasswordlessStrategy({
//... configuration ...
}, function (req, user, done) {
//.. validate the logged in user and build your final user object
return done(null, user);
};
{
allowTokenReuse : true,
tokenLifeTime : 1000 * 60 * 10,
store : {
path : __dirname + '/node_modules/passwordless-redis',
config : [
6379,
'127.0.0.1',
{
}
]
},
delivery : {
type : 'emailjs',
allowGet : true,
path : __dirname + '/node_modules/emailjs',
config : {
server : {
user : 'test.user@domain.com',
password : 'yourPwd',
host : 'yourSmtp',
ssl : true
},
msg : {
text : 'Hello!\nAccess your account here: http://<%= hostname %>?token=<%= tokenToSend %>&uid=',
html : '<html><p>Hello</p><br><p>Access your account here: http://<%= hostname %>?token=<%= tokenToSend %>&uid=<%= uidToSend %></p>'
subject : 'Token for <%= hostname %>'
}
}
}
}
The path parameter for the store and delivery configuration is needed to exclude obsolete library dependencies of this package. So the delivery / store package can be required from the parent lib.
{
//If this property will be set to true, each authentication request generates a new passwordless instance to handle multiple and dynamic configurations
//If it's set to false, the passwordless instance will be created by instantiating the strategy
dynamicConfig : false,
//all passwordless internal parameters, that are used to parse the request query object
userField : 'user',
tokenField : 'tokenField',
uidField : 'uidField',
deliveryField : 'delivery',
originField : null,
//token relevant parameters
allowTokenReuse : true,
tokenLifeTime : 1000 * 60 * 10,
//specify maximal token length
maxTokenLength : 16,
//If you want to create your own token type use this function, to use your own algorithm.
//tokenAlgorithm : function() {
// Function shall return the token in sync mode (default: Base58 token)
//},
//includes the store configuration
//setup a path to the node_module that should be used
//setup a configuration array that will be applied to the store constructor
//internally it looks like the following code :
// var store = require(this.options.store);
// store.call(this.options.store.config);
store : {
path : __dirname + '/node_modules/passwordless-redis',
config : [
6379,
'127.0.0.1',
{
}
]
},
//Specify the delivery configurations
//following object contains an example with emailjs
//
//Notice : currently only a delivery for emailjs is written
// If you want to use another delivery, feel free to implement it or apply a function like the following as the delivery
// function(options) {
// var email = require(options.path);
// var smtp = email.server.connect(options.config.server);
//
// return function(tokenToSend, uidToSend, recipient, callback, req) {
// ... do delivery stuff..
// callback(err);
// };
// }
delivery : {
type : 'emailjs',
allowGet : true,
path : __dirname + '/node_modules/emailjs',
config : {
server : {
user : 'test.user@domain.com',
password : 'yourPwd',
host : 'yourSmtp',
ssl : true
},
//all message parameters are compiled as an underscore template (http://underscorejs.org/#template)
//the following parameters are available:
// {
// hostName : 'localhost:3000',
// tokenToSend : tokenToSend,
// uidToSend : uidToSend,
// recipient : recipient,
// req : req
// }
msg : {
text : 'Hello!\nAccess your account here: http://<%= hostname %>?token=<%= tokenToSend %>&uid=',
//a html property was added by my self, to be able add html body automatically to the configuration
html : '<html><p>Hello</p><br><p>Access your account here: http://<%= hostname %>?token=<%= tokenToSend %>&uid=<%= uidToSend %></p>'
subject : 'Token for <%= hostname %>'
}
}
},
//is used to check if an user is authorized to request a token
//call the callback with an error and an user object (user object needs an parameter called "id" to specify it's email adress, sms, ...)
//the default access functions contains the following function
access : function(user, callback) {
callback(null, user);
}
}
The MIT License (MIT) Copyright © 2016
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Passport module for the passwordless library.
The npm package @sh-a-v/passport-passwordless receives a total of 0 weekly downloads. As such, @sh-a-v/passport-passwordless popularity was classified as not popular.
We found that @sh-a-v/passport-passwordless 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.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.