Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Simple error monitoring for developers. Monitor production errors in real-time and get them reported to Telegram with Telebugs.
Any Ruby application or script can be integrated with
Telebugs using the
telebugs
gem. The gem is designed to be
simple and easy to use. It provides a simple API to send errors to Telebugs,
which will then be reported to your Telegram project. This guide will help you
get started with Telebugs for Ruby.
For full details, please refer to the Telebugs documentation.
Install the gem and add to the application's Gemfile by executing:
bundle add telebugs
If bundler is not being used to manage dependencies, install the gem by executing:
gem install telebugs
This is the minimal example that you can use to test Telebugs for Ruby with your project:
require "telebugs"
Telebugs.configure do |c|
c.api_key = "YOUR_API_KEY"
end
begin
1 / 0
rescue ZeroDivisionError => e
Telebugs.report(e)
end
sleep 2
puts "An error was sent to Telebugs asynchronously.",
"It will appear in your dashboard shortly.",
"A notification was also sent to your Telegram chat."
Replace YOUR_API_KEY
with your actual API key. You can ask
@TelebugsBot for your API key or find it in
your project's dashboard.
Telebugs for Ruby is a standalone gem that can be used with any Ruby application or script. It can be integrated with any Ruby framework or library.
We provide official integrations for the following Ruby platforms:
Telebugs for Ruby supports the following Ruby versions:
If you need support older rubies or other Ruby implementations, please contact us at help@telebugs.com.
After checking out the repo, run bin/setup
to install dependencies. Then, run
rake test
to run the tests. You can also run bin/console
for an interactive
prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To
release a new version, update the version number in version.rb
, and then run
bundle exec rake release
, which will create a git tag for the version, push
git commits and the created tag, and push the .gem
file to
rubygems.org.
Bug reports and pull requests are welcome on GitHub at https://github.com/telebugs/telebugs-ruby.
FAQs
Unknown package
We found that telebugs 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.