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.
A thin wrapper around request to make it easy to work with the Reviso REST API
This small module wraps request
in order to provide easy access to the Reviso REST API.
Install via npm:
npm install reviso
Use it like you would use request
. The main difference is that you only have to specify relative URLs and that authentication is handled for you. Just provide a valid access token and you're ready to go:
var appSecretToken = 'your-app-secret-token';
var agreementGrantToken = 'your-agreement-grant-token';
var reviso = require('reviso')(appSecretToken, agreementGrantToken);
reviso('/customers', function (error, response, body) {
console.log(body);
});
In order to get access to the API you first need to register an app to get an appSecretToken
. With that in place you need to run your users through a flow in order to obtain an agreementGrantToken
that you can use to interact with their data.
The whole process is described in detail here: https://www.reviso.com/developer/connect
The general Reviso REST API documenation can be found here: http://api-docs.reviso.com
FAQs
A thin wrapper around request to make it easy to work with the Reviso REST API
We found that reviso 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.