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 wrapper for the Kippt API.
You can install using Node Package Manager (npm)
npm install node-kippt
Or define in your package.json
dependencies
Refer to the Kippt developer API page for information about the API response.
var Kippt = require('node-kippt');
// Initialize the KipptAPI
// You can easily obtain the API token by running
// curl --user name:password https://kippt.com/api/account/
var kippt = new Kippt.KipptAPI({
username: 'YOUR_USERNAME',
api_token: 'API_TOKEN'
});
// Returns the full clips listing
kippt.clips.all(function(error, data) {
if(!error) console.log(data);
});
// Returns the clip information associated with a clip ID
kippt.clips.getById(CLIP_ID, function(error, data) {
if(!error) console.log(data);
});
FAQs
A wrapper for the kippt.com API
The npm package node-kippt receives a total of 1 weekly downloads. As such, node-kippt popularity was classified as not popular.
We found that node-kippt 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.