
Security News
Follow-up and Clarification on Recent Malicious Ruby Gems Campaign
A clarification on our recent research investigating 60 malicious Ruby gems.
nserver by Jon Moses
http://burningbush.rubyforge.org/nserver/
== DESCRIPTION:
NServer is a set of classes that provide a flexible notification system for Linux based systems. It sits in the systray, waiting for messages to be submitted for display. X.org standards (via Gtk) and libnotify are used.
Messages can be submitted from the localhost, or via remote hosts, depending on settings.
== FEATURES/PROBLEMS:
== SYNOPSIS:
=== Server Example:
If you have the Daemons ruby gem installed, simply run:
% nserver start
This starts a persistent NServer::Server instance on port 10001.
If you want to customize the bind ip or port:
% nserver start --bind-ip x.x.x.x --allow y.y.y.y,z.z.z.z/24
=== Client Example:
Assuming you have a NServer::Server instance running, you can use the client like this:
require 'rubygems' require 'nserver'
NServer::Client.notify("My test message goes here").
There is also support for building messages to send.
require 'nserver'
msg = NServer::Message.new msg.text = "My text" msg.title = "Test Message"
NServer::Client.notify( msg )
Or, if you want a easy command line client:
% nclient "Message"
or
% nclient "Urgent message" -p critical
If you're NServer is listening on another mahcine, you can:
% nclient --host y.y.y.y "My message"
== REQUIREMENTS:
== INSTALL:
% gem install nserver
== LICENSE:
NServer is released under the GPL. Text is available at http://www.gnu.org/copyleft/gpl.html
FAQs
Unknown package
We found that nserver 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
A clarification on our recent research investigating 60 malicious Ruby gems.
Security News
ESLint now supports parallel linting with a new --concurrency flag, delivering major speed gains and closing a 10-year-old feature request.
Research
/Security News
A malicious Go module posing as an SSH brute forcer exfiltrates stolen credentials to a Telegram bot controlled by a Russian-speaking threat actor.