
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@orangybot/influxmonitor
Advanced tools
This is Orangy's official package to forward the bot's stats to an InfluxDB instance.
:white_check_mark: Easy to use :white_check_mark: Fast :white_check_mark: Open source
:white_check_mark: AutoMonitor (sends stats every minute)
//ES6:
import Discord from "discord.js";
import OrangyMonitor from "@orangybot/influxmonitor";
//Create the Discord client
const Client = new Discord.Client({ intents: ["GUILDS"] });
//Start the monitor
new OrangyMonitor(
"Your InfluxDB URL",
"Your InfluxDB token",
"your InfluxDB bucket",
"Your InfluxDB org",
"This service's name (could be pretty much anything, such as your bot's name)",
Client //Discord client object
);
//Log into Discord with a bot token
Client.login(your-discord-bot-token);
//CommonJS:
const Discord = require("discord.js");
const OrangyMonitor = require("../OrangyMonitor/Index.js");
//Create the Discord client
const Client = new Discord.Client({ intents: ["GUILDS"] });
//Start the monitor
new OrangyMonitor(
"Your InfluxDB URL",
"Your InfluxDB token",
"Your InfluxDB bucket",
"Your InfluxDB org",
"This service's name (could be pretty much anything, such as your bot's name)",
Client //Discord client object
);
//Log into Discord with a bot token
Client.login(your-discord-bot-token);
FAQs
Orangy's components monitor
We found that @orangybot/influxmonitor 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.