
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.
@remusao/smaz
Advanced tools
@remusao/smaz
Compress strings using custom codebooks
A port of the smaz small string compression library to JavaScript.
From the original library:
Smaz is a simple compression library suitable for compressing very short strings. General purpose compression libraries will build the state needed for compressing data dynamically, in order to be able to compress every kind of data. This is a very good idea, but not for a specific problem: compressing small strings will not work.
Smaz instead is not good for compressing general purpose data, but can compress text by 40-50% in the average case (works better with English), and is able to perform a bit of compression for HTML and urls as well. The important point is that Smaz is able to compress even strings of two or three bytes!
For example the string "the" is compressed into a single byte.
To compare this with other libraries, think that like zlib will usually not be able to compress text shorter than 100 bytes.
const { compress, decompress } = require('@remusao/smaz');
const compressed = compress('foobar');
console.log(decompress(compressed));
With encoding:
const { compress, decompressRaw } = require('@remusao/smaz');
const compressed = compress(new TextEncoder().encode('foobar'));
console.log(new TextDecoder('utf8').decode(decompressRaw(compressed)));
FAQs
Compress strings using custom codebooks
The npm package @remusao/smaz receives a total of 50,162 weekly downloads. As such, @remusao/smaz popularity was classified as popular.
We found that @remusao/smaz 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.