
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.
Event-based wrapper around snoowrap
Basic Usage:
import { InboxStream, CommentStream, SubmissionStream } from "snoostorm";
import Snoowrap from "snoowrap";
const creds = require("./credentials.json");
const client = new Snoowrap(creds);
// Options object is a Snoowrap Listing object, but with subreddit and pollTime options
const comments = new CommentStream(client, {
subreddit: "AskReddit",
limit: 10,
pollTime: 2000,
});
comments.on("item", console.log);
const submissions = new SubmissionStream(client, {
subreddit: "AskReddit",
limit: 10,
pollTime: 2000,
});
submissions.on("item", console.log);
const inbox = new InboxStream(client);
inbox.on("item", console.log);
inbox.end();
inbox.on("end", () => console.log("And now my watch has ended"));
Out of the box, snoostorm
supports the following objects:
If you would like to poll another object in snoowrap
, you can implement your own Poll easily. For example, here is an implementation that will poll for new friends:
import { Poll } from "snoostorm"
export interface FriendStreamOptions {
pollTime?: number;
}
export class FriendStream extends Poll<Snoowrap.RedditUser> {
constructor(
client: Snoowrap,
options: FriendStreamOptions = { pollTime: 2000 }
) {
super({
frequency: options.pollTime,
get: () => client.getFriends(),
identifier: "name",
});
}
}
const friends = new FriendStream(client);
friends.on("item", (item) => {
console.log("New Friend!", item.name);
});
FAQs
A streaming client for reddit, based off of snoowrap
The npm package snoostorm receives a total of 75 weekly downloads. As such, snoostorm popularity was classified as not popular.
We found that snoostorm 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.