
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
hapi-relations
Advanced tools
A plugin for hapi using the relations ACL.
See relations for supported clients and ACL structure.
Pass in your relations schema and choosen client as options.
var Hapi = require('hapi');
var redis = require('redis');
var fs = require('fs');
var client = redis.createClient(6379, 'localhost');
var server = new Hapi.Server();
var schema = JSON.parse(
fs.readFileSync('schema.json', 'utf8')
);
server.register([
{
register: require('hapi-relations'),
options: {
schema: schema,
client: redis,
clientType: 'redis'
}
}
], function (err) {
console.log(err);
});
Or optionally pass the client in as a server plugin
server.register([
{
register: require('hapi-relations'),
options: {
schema: schema,
client: 'hapi-redis',
clientType: 'redis',
pluginClient: true
}
}
], function (err) {
console.log(err);
});
And access realtions from the plugins
server.plugins.relations.coins('Can TEST GET from EXAMPLE);
The schema
expects a loaded schema file, which will be added to relations. A context defines an application in which the user's privileges will be evaulated. For instance, if the context is inventory
, then the roles and actions listed within the context correspond to a user's ability to use or add to inventory
.
The context consists of roles, and which actions they are allowed to perform. Please see the test/permission.json
for an example.
Please follow the MRN Javascript Style Guide (forked from AirBnB). Use grunt lint
to check yo-self
FAQs
a relations plugin for hapi
We found that hapi-relations 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 researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.