Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
This a fake implementation of redis-rb for machines without Redis or test environments
Install the gem:
gem install fakeredis
Add it to your Gemfile:
gem "fakeredis"
FakeRedis currently supports redis-rb v3 or later, if you are using redis-rb v2.2 install the version 0.3.x:
gem install fakeredis -v "~> 0.3.0"
or use the branch 0-3-x on your Gemfile:
gem "fakeredis", :git => "git://github.com/guilleiguaran/fakeredis.git", :branch => "0-3-x"
You can use FakeRedis without any changes:
require "fakeredis"
redis = Redis.new
>> redis.set "foo", "bar"
=> "OK"
>> redis.get "foo"
=> "bar"
Read redis-rb documentation and Redis homepage for more info about commands
Require this either in your Gemfile or in RSpec's support scripts. So either:
# Gemfile
group :test do
gem "rspec"
gem "fakeredis", :require => "fakeredis/rspec"
end
Or:
# spec/support/fakeredis.rb
require 'fakeredis/rspec'
Require this either in your Gemfile or in Minitest's support scripts. So either:
# Gemfile
group :test do
gem "minitest"
gem "fakeredis", :require => "fakeredis/minitest"
end
Or:
# test/test_helper.rb (or test/minitest_config.rb)
require 'fakeredis/minitest'
Thanks to all contributors.
Copyright (c) 2011-2023 Guillermo Iguaran. See LICENSE for further details.
FAQs
Unknown package
We found that fakeredis 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 supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.