Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
authenticat
Advanced tools
All praise to the authenticat, keeper of secrets!
Authenticat is a simple drop-in library for adding token-based authentication and role-based authorization to a MEAN stack. It provides automated sign-in and sign-up routes through a router that can be mounted on your server.
npm install authenticat
Simply drop the router into an Express server and provide it with a connection to a MongoDB database.
var app = require('express')();
var mongoose = require('mongoose');
var connection = mongoose.conncect('mongodb://localhost/whatever');
var Authenticat = require('authenticat');
var authenticat = new Authenticat(connection);
app.use('/api', authenticat.router);
app.get('/secretpath', authenticat.tokenAuth, function(req, res) {
// your code here
});
app.listen(3000, function() {
console.log('server up on port 3000');
});
Method: POST
The signup route can be used to create a new user in the database. The password will be saved to the database as a hash. The route accepts a username and password as JSON and returns a token using JWT.
Example (using superagent-cli and the server above):
superagent localhost:3000/api/signup post '{"username":"someUser", "password":"somePassword"}'
Response:
{ token: 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VybmFtZSI6InRpbTEyMzQiLCJpYXQiOjE0NTA3NTk0NzN9.dvngcEuvntDp2t3fxGOlTZnAHxCCg_5CMxq-NaLnsFc' }
Method: GET
Uses http basic authentication for sign-in. Returns a token if authentication is successful.
Example (using superagent-cli and the server above):
superagent localhost:3000/api/signin -u someUser:somePassword
Method: PUT
This route can be used by an admin user to change another user's role(s). This route is only accessible by an admin. In the reqest body, send the following as JSON:
Example (using superagent-cli and the server above):
superagent localhost:3000/api/roles put '{"token":"adminUserToken", username": "someUser", "add": "someNewRole"}
or
superagent localhost:3000/api/roles put '{"token":"adminUserToken", username": "someUser", "remove": "someRoleToRemove"}'
Alternatively, the token may be sent in the request headers.
The only way to add admin status to a user is to log into the database directly and manually add admin: true
to the user document. There is no route to make someone an admin. By default, users do not have an admin property (neither true nor false).
Example (using MongoDB):
db.users.update({usrname: 'someUser'}, { $set: {admin: true}})
Simply add this middleware into a route to ensure that only users with valid tokens may access the route. BodyParser is required if the token is sent in the request body. It is recommended that the token should be sent with the response header.
app.get('/somePath', authenticat.tokenAuth, function(req, res) {
// your code here
});
The roleAuth middleware allows admins and users with specific roles to access the route. It must come after the tokenAuth middleware.
Simply add this middleware after authenticat.tokenAuth. There are three ways to use roleAuth. This is determined by the number of arguments passed to authenticat.roleAuth().
If no arguments are passed to authenticat.roleAuth(), then the route will only accessible to admins.
app.get('/somePath', authenticat.tokenAuth, authenticat.roleAuth(), function(req, res) {
// your code here
});
The first argument passed to authenticat.roleAuth() is either a string specifying a role or an array of strings which specify roles. Users whose roles property includes at least one of the supplied roles will be allowed to access the route.
app.get('/somePath', authenticat.tokenAuth, authenticat.roleAuth('someRole'), function(req, res) {
// your code
});
The second argument to authenticat.roleAuth() is a custom function. It must take three parameters: req, res, and a function.
var customRoles = ['someRole', 'anotherRole'];
var customCallback = function(req, res, callback){
// your code here
var userRoles = ['someRole', 'differentRole'];
callback(userRoles);
};
The roleAuth middleware will compare the roles specified as the first argument passed to roleAuth with the roles passed to the callback function above. If any of the roles passed to the callback function match the roles provided to roleAuth, then the user is allowed to use the route. This is useful for only allowing users who are owners on a specific resource.
Then your route might look like this:
app.get('/someRoute', authenticat.tokenAuth, authenticat.roleAuth(customRoles, customCallback), function(req, res) {
// your code here
});
FAQs
a mean stack token based authentication system
We found that authenticat 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.