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.
MySQL (5.7 and 8.0) replication binlog parser using mysql-binlog-connector-java.
Add this line to your application's Gemfile:
gem "ecco"
And then execute:
$ bundle
Or install it yourself as:
$ gem install ecco
require "ecco"
hostname = "localhost" # Optional
port = 3306 # Optional
username = "username"
password = "password"
client = Ecco::Client.new(hostname: hostname, port: port, username: username, password: password)
client.on_row_event do |row_event|
type = row_event.type
database = row_event.database
table = row_event.table
rows = row_event.rows
next unless database == "FooDatabase"
next unless table == "FooTable"
second_column = rows.first[1]
puts "Row event: #{database} #{table} #{type} #{second_column}"
end
client.on_save_position do |filename, position, event_type_name|
puts "Saved #{event_type_name} event: #{filename} #{position}"
end
client.on_communication_failure do |client, error|
puts error.message
end
# Optionally set a starting position
client.set_binlog_filename("mysql-bin.000009")
client.set_binlog_position(276753)
client.start
To download a new version of mysql-binlog-connector-java
bundle exec rake maven:dependencies
Note: You need Maven to download
brew install maven
Run the tests
bin/specs
For an interactive prompt
bin/console
To install this gem onto your local machine
bundle exec rake install
The integration tests don't run by default. To run all the tests, including integration, use
bin/all_specs
The tests needs a MySQL server with replication enabled.
Ecco includes multiple Docker Compose definitions that can be used for this, one per supported MySQL version.
Start the desired version before running the tests:
# MySQL 5.7
docker-compose -f docker-compose-mysql-base.yml -f docker-compose-mysql-5-7.yml up
# MySQL 8.0
docker-compose -f docker-compose-mysql-base.yml -f docker-compose-mysql-8-0.yml up
Note: Stop any local MySQL server first, otherwise there will be port collisions
To release a new version, make a commit bumping 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 tags, and push the .gem
file to rubygems.org.
Update the changelog with GitHub Changelog Generator:
github_changelog_generator
Preparations you might have to do:
gem install github_changelog_generator
if you don't have itCHANGELOG_GITHUB_TOKEN
to a personal access token to increase your GitHub API rate limitMake a commit with the changelog changes and push.
The gem is available as open source under the terms of the Apache License, Version 2.0.
FAQs
Unknown package
We found that ecco 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
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.