
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.
electron-mumble
Advanced tools
This module implements mumble protocol handling for Node.js
npm install mumble
var mumble = require('mumble'),
fs = require('fs');
var options = {
key: fs.readFileSync( 'private.pem' ),
cert: fs.readFileSync( 'public.pem' )
};
console.log( 'Connecting' );
mumble.connect( 'mumble://example.org', options, function ( error, connection ) {
if( error ) { throw new Error( error ); }
console.log( 'Connected' );
connection.authenticate( 'ExampleUser' );
connection.on( 'initialized', onInit );
connection.on( 'voice', onVoice );
});
var onInit = function() {
console.log( 'Connection initialized' );
// Connection is authenticated and usable.
};
var onVoice = function( voice ) {
console.log( 'Mixed voice' );
var pcmData = voice;
};
Take a look at the advanced example in "examples/advanced.js"!
Please also take a look at the wiki for an complete documentation of the API.
Pull requests, found issues, etc. are welcome. The authors are tracked in the AUTHORS file. This file is kept up to date manually so authors are encouraged to pull request the necessary changes to the AUTHORS themselves.
FAQs
A fork of the node-mumble project, with electron support
The npm package electron-mumble receives a total of 0 weekly downloads. As such, electron-mumble popularity was classified as not popular.
We found that electron-mumble 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.