
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
@ceejbot/jumphash
Advanced tools
Really remarkably trivial node bindings for Google's jump consistent hash.
Tested on nodes 4, 6, and 7. Is probably just fine on node 0.10 too.
npm install --save @ceejbot/jumphash
This module provides one function: jumphash(key, bucketCount)
. key
must be a non-negative integer or a buffer. bucketCount
must be a positive integer (0 is an invalid bucket count).
The return value is a integer in the range [0, bucketCount)
that you can use as you wish. The paper linked above describes the intended data storage use.
var jumphash = require('@ceejbot/jumphash')
assert = require('assert'),
crypto = require('crypto');
var location = jumphash(23102, 16);
assert(location >= 0);
assert(location < 16);
var buffer = crypto
.createHash('md5')
.update('my-string-key-for-some-resource')
.digest();
var location2 = jumphash(buffer, 16);
Only the first 64 bits of the buffer are considered, with the most significant bit first.
ISC
FAQs
an implementation of the jump consistent hash for node
The npm package @ceejbot/jumphash receives a total of 0 weekly downloads. As such, @ceejbot/jumphash popularity was classified as not popular.
We found that @ceejbot/jumphash 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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.