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.
@labshare/services-auth
Advanced tools
LabShare Services plugin for resource scope-based HTTP route and socket authorization
@labshare/services-auth
is a plugin that integrates with @labshare/services to
provide Socket.io and Express.js API Resource Scope authorization with RS256 JWT validation.
npm i @labshare/services-auth --save
authUrl
(String
) - The base URL for a remote LabShare Auth service. Example: https://a.labshare.org/_api
. Required.tenant
(String
) - The LabShare Auth Tenant ID the API service is registered to. Required if
secretProvider
is not specified.audience
(String
) - An optional API service identifier used for JWT audience
validation. This is the identifier of an API service (OAuth Resource Server) registered to the LabShare Auth system.issuer
(String
) - Optional value for validating the JWT issuer (the iss
claim).secretProvider
(Function
) - An optional, custom function for obtaining the signing certificate for RS256. The signature is (req, header: {alg: string}, payload, cb: (error: Error, signingCert: string) => void): void
.This example demonstrates scope-based authorization for an HTTP API module using @labshare/services
to load the route definition.
With the configuration below, only JWTs containing an audience of https://my.api.identifier/resource
and a read:users
scope
would be allowed to access the API route. Additionally, the JWT would be validated using the JSON Web Key Set of the
specified LabShare Auth Tenant.
// api/users.js
module.exports = {
routes: [
{
path: '/users',
httpMethod: 'GET',
middleware: getUsers,
scope: [
'read:users'
]
}
]
}
// lib/index.js
const {Services} = require('@labshare/services');
const servicesAuth = require('@labshare/services-auth');
const services = new Services(/* options */);
// Adds scope-based route authentication and authorization to LabShare Service routes and sockets
services.config(servicesAuth({
authUrl: 'https://ls.auth.io/_api',
audience: 'https://my.api.identifier/resource',
issuer: 'LabShare Auth',
tenant: 'my-org'
}));
services.start();
npm i
npm test
FAQs
Loopback 4 plugin for resource scope-based HTTP route authz
The npm package @labshare/services-auth receives a total of 74 weekly downloads. As such, @labshare/services-auth popularity was classified as not popular.
We found that @labshare/services-auth demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.