
Security News
Follow-up and Clarification on Recent Malicious Ruby Gems Campaign
A clarification on our recent research investigating 60 malicious Ruby gems.
Send messages to Slack via Monit.
Add this line to your application's Gemfile:
gem 'monit2slack'
And then execute:
$ bundle
Or install it yourself as:
$ gem install monit2slack
This gem provides a binary monit2slack
.
monit2slack --webhook 'https://hooks.slack.com/services/xxx/xxx/xxx' --host MyServer --service NginX --status error --text 'Process NginX is down'
If using rbenv
/usr/local/rbenv/shims/monit2slack --webhook 'https://hooks.slack.com/services/xxx/xxx/xxx' --host MyServer --service NginX --status error --text 'Process NginX is down'
If you prefer you can call if manually from a rb file.
#!/usr/bin/env ruby
require "monit2slack"
Monit2Slack::Post
In this case hostname
, service
and description
gets read from the environment variables that monit provides.
check process NginX
with pidfile /run/nginx.pid
start program = "/etc/init.d/nginx start" with timeout 30 seconds
stop program = "/etc/init.d/nginx stop" with timeout 30 seconds
if does not exist for 1 cycle
then exec "/usr/local/rbenv/shims/monit2slack --webhook 'https://hooks.slack.com/services/xxx/xxx/xxx' --status error'"
else if succeeded for 1 cycle then exec "/usr/local/rbenv/shims/monit2slack --webhook 'https://hooks.slack.com/services/xxx/xxx/xxx' --status ok"
if does not exist then restart
You control settings like hostname
, service
and description
.
check process NginX
with pidfile /run/nginx.pid
start program = "/etc/init.d/nginx start" with timeout 30 seconds
stop program = "/etc/init.d/nginx stop" with timeout 30 seconds
if does not exist for 1 cycle
then exec "/usr/local/rbenv/shims/monit2slack --webhook 'https://hooks.slack.com/services/xxx/xxx/xxx' --host MyServer --service NginX --status error --text 'Process NginX is down'"
else if succeeded for 1 cycle then exec "monit2slack --webhook 'https://hooks.slack.com/services/xxx/xxx/xxx' --host MyServer --service NginX --status ok --text 'Process NginX is up'"
if does not exist then restart
check filesystem rootfs with path /
if space usage > 80%
then exec "/usr/local/rbenv/shims/monit2slack --webhook 'https://hooks.slack.com/services/xx/xx/xx' --status error"
else if succeeded then exec "/usr/local/rbenv/shims/monit2slack --webhook 'https://hooks.slack.com/services/xx/xx/xx' --status ok"
The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that monit2slack demonstrated a healthy version release cadence and project activity because the last version was released less than 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.