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.
This library provides a JavaScript implementation of Flow-Based Programming graphs. There are two areas covered:
Graph
- the actual graph libraryJournal
- journal system for keeping track of graph changes and undo historyInstall fbp-graph with:
npm install fbp-graph --save
Load a graph definition into an object. Loading graph definitions works with both JSON and FBP formatted graphs.
const fbpGraph = require('fbp-graph');
fbpGraph.graph.loadFile('some/path.json', (err, graph) => {
// Do something with the graph object
});
graph.addNode().addEdge().toJSON()
loadFile
and save
) now return Promises in case no callback is suppliedcomponentLoader
and baseDir
are not serialized into JSONloadJSON
no longer gets mutated by the graph instance (thanks @davecarlson)FAQs
JavaScript FBP graph library
We found that fbp-graph 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.