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.
Utility to split opportunities by the account level (free\pro\enterprise\etc.) for frontend and node
Utility to split opportunities by the account level (free\pro\enterprise\etc.) for frontend and node
bower i -S guard
npm i -S guard-bit
Save guard.min.js or guard.js to your assets folder
var guard = Guard();
// level === 0 by default
// getters
guard(); // false
guard('anyRule'); // false
// handlers
guard(function () {
console.log('called!');
})(); // nothing logged
guard('anyRule', function () {
console.log('called!');
})(); // nothing logged
guard.setLevel(1);
// getters
guard(); // true
guard('anyRule'); // true
// handlers
guard(function () {
console.log('called!');
})(); // 'called!'
guard('anyRule', function () {
console.log('called!');
})(); // 'called!'
var guard = Guard(function (done) {
// show there popup with login/register form
// call done when you are logged in
// call done with error when you are closed popup with forms
setTimeout(function () {
if (confirm('Give access?')) {
done();
} else {
done('error');
}
}, 100);
});
// level === 0 (unauthorized) by default
// getters
guard(); // false
guard('anyRule'); // false
// handlers
// calls request provided in constructor
// and after request success calls callback
guard(function (message) {
console.log(message);
})('called!'); // 'called' after login success (100ms)
// request called only once (only one login popup)
// but when it's done both callbacks will call
guard('anyRule', function () {
console.log('called!');
})(); // 'called' after 100ms
// awesome!
// onward suppose 100ms passed and we are on 1 level
// getters
guard(); // true
guard('anyRule'); // true
// handlers
guard(function () {
console.log('called!');
})(); // 'called!'
guard('anyRule', function () {
console.log('called!');
})(); // 'called!'
var guard = Guard([{
allowed: ['profile:create'],
request: function (done) {
if (confirm('Are you a User?')) {
done();
} else {
done('error');
}
}
}, {
// '*' means 'any'
// '@' is short for 'currentUser'
// but you can use any rule name convention that you prefer
allowed: ['@:profile:*'],
request: function (done) {
if (confirm('Are you an Admin?')) {
done();
} else {
done('error');
}
}
}, {
allowed: ['*']
}]);
// level === 0 (unauthorized) by default
// getters
guard(); // false
guard('profile:create'); // true
// handlers
guard(function (message) {
console.log(message);
})('called!'); // 'called' after login success
// level === 1
guard('@:profile:read', function () {
console.log('My Profile');
})(); // 'My Profile' immediately (but async)
guard('adminFeature', function () {
console.log('called!');
})(); // 'called' after admin request success
// level === 2
guard.setLevel(0);
guard('adminFeature', function (laugh) {
console.log(laugh + ' I\'m an Admin!');
})('Ha!');
// calls request to user (login popup)
// after it's success, calls admin request
// after admin request success calls callback
function guardMiddleware(rule) {
return function (req, res, next) {
if (guard(rule)) {
next();
} else {
res.sendStatus(401);
}
}
}
app.get('/profile', guardMiddleware('@:profile:read'),
function (req, res) {
res.send('Your profile');
});
var guard = Guard(function (done) {
console.log('Request for Auth')
done();
});
guard.listen(function (newLevel) {
console.log('now on level ' + newLevel);
});
var unsubscribe = guard.listen(function (newLevel) {
console.log('second listener!');
});
// request for next level
guard.request();
// 'Request for Auth'
// 'now on level 1'
// 'second listener!'
unsubscribe();
// get current level
guard.getLevel();
// 1
guard.setLevel(0);
// 'now on level 0'
guard.request(function () {
console.log('after success uplevel');
});
// 'Request for Auth'
// 'now on level 1'
// 'after success uplevel'
// it's possible to set new config on same instance
// config in same form as in constructor
guard.setup(config);
interface Guard {
() : boolean;
(feature : string) : boolean;
(callback : (...any) => any) : (...any) => void;
(feature : string, callback : (...any) => any) : (...any) => void;
request() : void;
request(callback : (...any) => any);
setup() : void;
setup(req: (done: (error? : any) => any) => any) : void;
setup(config: Array<{request?: (done: (error? : any) => any) => any; allowed: Array<any>}>) : void;
getLevel() : number;
setLevel(level : number) : void;
listen(listener : (newLevel) => any) : () => void;
}
interface GuardConstructor {
() : Guard;
new () : Guard;
(req: (done: (error? : any) => any) => any) : Guard;
new (req: (done: (error? : any) => any) => any) : Guard;
(config: Array<{request?: (done: (error? : any) => any) => any; allowed: Array<any>}>) : Guard;
new (config: Array<{request?: (done: (error? : any) => any) => any; allowed: Array<any>}>) : Guard;
}
declare module "guard" {
export = Guard;
}
declare var Guard : GuardConstructor;
It uses semver. Current version is 1.x.x. It means that API is stable. Whooa!
FAQs
Utility to split opportunities by the account level (free\pro\enterprise\etc.) for frontend and node
We found that guard-bit 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.