
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.
This gem provides some set classes based on Redis sorted set. So a set may have scores for each elements.
By using them, it is possible to implement fast ranking system, search system, or filtering system based on coherent cache management of Redis.
Please suppose that there are some tagged documents and we want to provide search system. A user can full-text search, and filter by the tags.
For example, to implement the following query:
We construct the follwoing set:
keyword_set = KeywordSet.new("Ruby") # Each elements have score based on full-text serach.
tagged_set_1 = TaggedSet.new(:new)
tagged_set_2 = TaggedSet.new(:starred)
set = IntersectionSet.new([
keyword_set,
UnionSet.new([tagged_set_1, tagged_set_2]),
], cache_time: 3.minutes)
set.ids #=> [3, 4, 8, 9, 1]
The result is order by the score of keyword set, because each scores of elements are summed on intersection, or union by default.
This is a simple example, and it is possible to apply this pattern to construct more complex system which has small latency. For example, if you want to personalize the result, you have to prepare a personalized ranking and use it as a base set.
In general, there are some advantages by using RedBlocks.
gem 'red_blocks'
This entry and this slide describe the usage of RedBlocks (in japanese).
FAQs
Unknown package
We found that red_blocks 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
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.