
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
:fire: Keep personal data out of your logs
logger.info "Hi test@example.org!"
# => Hi [FILTERED]!
By default, scrubs:
Works with all types of logging - Ruby, Active Record, Active Job, and more
User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? [["email", "[FILTERED]"]]
Works even when sensitive data is URL-encoded with plus encoding
Add this line to your application’s Gemfile:
gem "logstop"
And add it to your logger:
Logstop.guard(logger)
Create config/initializers/logstop.rb
with:
Logstop.guard(Rails.logger)
To scrub IP addresses (IPv4), use:
Logstop.guard(logger, ip: true)
To scrub MAC addresses, use:
Logstop.guard(logger, mac: true)
Add custom rules with:
scrubber = lambda do |msg|
msg.gsub(/custom_regexp/, "[FILTERED]".freeze)
end
Logstop.guard(logger, scrubber: scrubber)
Disable default rules with:
Logstop.guard(logger,
email: false,
phone: false,
credit_card: false,
ssn: false,
url_password: false
)
To scrub outside of logging, use:
Logstop.scrub(msg)
It supports the same options as guard
.
This should be used in addition to config.filter_parameters
, not as a replacement.
Learn more about securing sensitive data in Rails.
Also:
View the changelog
Everyone is encouraged to help improve this project. Here are a few ways you can help:
To get started with development:
git clone https://github.com/ankane/logstop.git
cd logstop
bundle install
bundle exec rake test
FAQs
Unknown package
We found that logstop 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.