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.
oada-client-discovery
Advanced tools
Connect style middleware for OADA (openag.io) client discovery.
The library can be installed with npm
using
$ npm install oada-client-discovery
See examples README
The libraries test can be ran with:
$ npm test
The coverage report is generated by:
$ npm run cover
Gulp runs jshint
(lint) and jscs
(style) with:
$ gulp lint
$ gulp style
Connect style middleware for OADA client discovery.
To eliminate a dependency on any particular storage system or database a
lookup
function that fetches client registrations must be provided by the
caller.
CORS is required by OADA client discovery and therefore automatically enabled. See node-cors.
lookup
{Function} that resolves a client registration from a client ID. It
takes the form function(lookup, callback)
.
options
{Object, Optional} possibly containing the following properties:
cors
{Object} Options object for node-cors. Default: {}An OADA client registration is a JSON document with at least the following properties:
clientId
{String} client IDredirectUrls
{Array of Strings} Array of allowable OAuth 2.0 redirect URLs.licenses
{Array of Strings} Array of license names the client developer has
agreed to.keys
{JSON Web Key (JWK) Set} containing the client's JWKs for use
with OADA specific OAuth 2.0/OpenID Connect client secrets.{
"clientId": "123abc@agcloud.com",
"redirectUrls": [
"https://agcloud.com/redirect"
],
"licenses": [
"oada",
],
"keys": [
{
"kty": "RSA",
"use": "sig",
"alg": "RS256",
"kid": "ad8alkjca38afvudsZA",
"n": "AOtWalmH3vZ2q2Be ... SRQjYzxqpyVR9HEJYJ",
"e": "AQAB",
}
]
}
var express = require('express');
var clientDiscovery = require('oada-client-discovery');
var app = express();
app.get('/clientDiscovery', clientDiscovery(
function(clientId, cb) {
clients.find({clientId: clientId}, function(err, clients) {
if(err) { return cb(err); }
cb(null, clients[0]);
})
}));
FAQs
OADA (openag.io) client discovery middleware
We found that oada-client-discovery 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.