Security News
UK Officials Consider Banning Ransomware Payments from Public Entities
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
hapi-auth-bearer-simple
Advanced tools
hapi Bearer Token Authentication Scheme
The plugin requires validating a token passed in by the bearer authorization header. The validation function is something you have to provide to the plugin.
var validateFunction = function (token, callback) {
// Use a real strategy here to check if the token is valid
if (token === 'abc456789') {
callback(null, true, userCredentials);
}
else {
callback(null, false, userCredentials);
}
};
server.register(require('hapi-auth-bearer-simple'), function (err) {
if (err) {
throw err;
}
server.auth.strategy('bearer', 'bearerAuth', {
validateFunction: validateFunction
});
// Add a standard route here as example
server.route({
method: 'GET',
path: '/',
handler: function (request, reply) {
reply({ success: true });
},
config: {
auth: {
strategy: 'bearer',
scope: 'user' // or [ 'user', 'admin' ]
}
}
});
server.start(function (err) {
if (err) {
throw err;
}
server.log([],'Server started at: ' + server.info.uri);
});
});
validateFunc
- (required) a token lookup and validation function with the signature function (token, [request], callback)
token
- the auth token received from the client.request
- Optional request object. See below.callback
- a callback function with the signature function (err, isValid, credentials)
where:
err
- any error.isValid
- true
if both the username was found and the password matched, otherwise false
.credentials
- an object passed back to the plugin and which will become available in the request
object as request.auth.credentials
. Normally credentials are only included when isValid
is true
.exposeRequest
- (optional / advanced) If set to true
the validateFunction
's signature will be function (token, request, callback)
. This can be usefull if you have plugins that expose certain functions/object to the request
object and you want to use them in your validateFunction
. Be aware that modifying the object is not recommended because this is the same object that you will use in the whole lifecycle. Also exposing functions/object to the request
object during the validation is not recommended. Follow the hapi
standards whenever you can!FAQs
Custom authentication plugin for Hapi using Bearer tokens
We found that hapi-auth-bearer-simple 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
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.