
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 is a coffee-script port of adler32.c from zlib, written by Mark Adler. Port by Jason Walton.
npm install --save adler32-js
adler32-js complies to the Hash interface from the node.js crypto package:
Adler32 = require('adler32-js');
hash = new Adler32();
hash.update('Hello world!');
console.log("Digest: ", hash.digest('hex'));
Unlike crypto Hash objects, Adler32 object can be recycled using the reset()
method.
If you are after the raw integer value, you can also use:
hash = new Adler32();
hash.update('Hello world!');
console.log("Digest as int: ", hash.result());
Helper functions are also available for hashing strings, files, and streams:
Adler32.fromStream(stream, {encoding: 'hex'}, function(err, result) {
console.log("Digest", result);
});
Adler32.fromFile('./foo.txt', {encoding: 'hex'}, function(err, result) {
console.log("Digest", result);
});
result = Adler32.fromFileSync('./foo.txt', {encoding: 'hex'});
result = Adler32.fromString('Hello world!');
FAQs
adler32-js ----------
We found that adler32-js 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.