
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.
quake3-rcon
Advanced tools
A tiny library for using Quake 3's RCON server feature, including an command-line interface.
A tiny library for using Quake 3's RCON server feature, including an command-line interface. Dependency-free.
quake3-rcon
lets you send rcon commands to your Quake 3 server. You can use it as a library for your project or as an interface to access your server from your command-line.
Install this package globally with NPM to use the command-line interface
. Most OS need you to be root (e.g. using sudo
) to install a global npm package:
$ [sudo] npm -g install quake3-rcon
or install quake3-rcon
as a dependency for your package:
$ npm install --save quake3-rcon
quake3-rcon
depends on Node.js. Tested with node v12.16
.
run:
$ quake3-rcon <server-address> <rcon-password> [<server-port>]
and then type in your commands for the server, e.g. say Hi
or addbot Sarge
.
var Q3RCon = require('quake3-rcon');
Initialize the quake3-rcon
object:
var rcon = new Q3RCon({
address: '127.0.0.1',
port: 27960, // optional
password: 'my_super_secret_password',
debug: true // optional
});
Send a command to the server:
rcon.send('rcon_command param1 param2 ...', (response) => {
// this callback is optional
});
var Q3RCon = require('quake3-rcon');
var rcon = new Q3RCon({
address: '127.0.0.1',
password: 'my_super_secret_password'
});
rcon.send('say Hello, World!', (response) => {
console.log(response);
});
That's it. Have fun.
Found a bug? Open an issue here on Github.
Wanna help? Submit a pull request or contact me.
Wanna tip me a beer? Use Bitcoin: 14pSD9AmuNhLDbGRXehxbhwzRSRrkpiAKg
Copyright (c) 2016 Thomas Baumbach tom@xolo.pw
Licensed under the MIT License
FAQs
A tiny library for using Quake 3's RCON server feature, including an command-line interface.
The npm package quake3-rcon receives a total of 10 weekly downloads. As such, quake3-rcon popularity was classified as not popular.
We found that quake3-rcon 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.