
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
node-jsondb-client
Advanced tools
jsondb-client: Socket client for remote interaction with json database
Socket client for use with node-jsondb-srv
node-jsondb-client is a socket client for use with node-jsondb-srv. The JSON database socket service accepts connections from the client and allows interaction with a remote JSON database.
npm install node-jsondb-client
var dbName = "test";
var dbHost = "localhost";
var dbPort = 10089;
var jsonClient = require('node-jsondb-client').create(dbName,dbHost,dbPort);
jsonClient.connect();
var userName = "admin";
var userPass = "admin";
function callback(response) {
console.log("packet received: " + JSON.stringify(response));
}
var path = "path/to/object";
jsonClient.auth(callback,userName,userPass);
jsonClient.lock(callback,path,"w");
jsonClient.read(callback,path);
jsonClient.write(callback,[{path:"path/to",key:"object",value:10},...]);
jsonClient.unlock(callback,path);
jsonClient.subscribe(callback,path);
jsonClient.unsubscribe(callback,path);
jsonClient.disconnect();
FAQs
jsondb-client: Socket client for remote interaction with json database
We found that node-jsondb-client 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
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.