Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Manacle is a lightweight ACL implementation for Node.js and the browser.
Create a new ACL:
var acl = manacle.create();
Define some rules:
var user = { ... };
acl.allow('read', 'post');
if (user) {
acl.allow('create', 'post');
acl.allow(['update', 'delete'], 'post', function(post) {
return post.user === user;
});
if (user.admin) {
acl.allow('*', 'post');
}
if (user.blocked) {
acl.deny(['create', 'update', 'delete'], 'post');
}
}
Check various rules:
var post = { ... };
// `true` for users who are not blocked
acl.allowed('create', 'post');
// `true` for all users (the given post object is ignored
// and unnecessary since there is no condition defined)
acl.allowed('read', 'post', post);
// `true` for users who are not blocked and either own
// the post or are an admin
acl.allowed('update', 'post', post);
acl.allowed('delete', 'post', post);
// `true` (undefined rules are denied by default)
acl.denied('foo', 'bar');
Note that the order in which the rules are defined matters as each newly defined rule takes precedence over past rules.
Releases are available on GitHub or via NPM.
npm install manacle
Development: manacle.js
Production: manacle.min.js
Allow (or deny) the specified action(s) and subject(s), optionally only if the given condition holds.
Arguments:
Check if the specified action(s) and subject(s) are allowed (or denied), optionally checking a condition against any extra arguments.
Arguments:
FAQs
Lightweight ACL for Node.js and the browser
We found that manacle 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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.