
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
A javascript key value store with pub-sub.
npm install v-store --save
// Create your store (books.js)
var Books = require('v-store');
module.exports = Books;
// Usage
var store = require('./books'); // Path to your store (books.js)
var print = function (newChapter, oldChapter) {
console.log('From: ', oldChapter, ' to: ', newChapter);
};
store.set('name', 'A Song of ice and fire');
store.set('chapter', 1);
// Subscriber to whenever the value of chapter changes.
store.subscribe('chapter', print);
// Set the value and trigger any subscribers.
store.set('chapter', 2); // Calls print and logs => From: 1 to: 2
// Remove print subscriber.
// If the second argument is not specified then all subscribers are removed.
store.unsubscribe('chapter', print);
// Reset the store
store.flush();
FAQs
A javascript key value store with pub-sub.
The npm package v-store receives a total of 0 weekly downloads. As such, v-store popularity was classified as not popular.
We found that v-store 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.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.