
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@huggingface/blake3-wasm
Advanced tools
JS and WASM implementations of https://github.com/BLAKE3-team/BLAKE3
JS and WASM implementations of https://github.com/BLAKE3-team/BLAKE3
Using AssemblyScript to generate a lean WASM.
import { blake3, blake3Hex, createHasher, update, finalize } from '@huggingface/gearhash-wasm';
// Create a Uint8Array of data to search through
const data = new Uint8Array(1_000_000); // Example: 1MB of data
// ... fill data with your content ...
const hashUint8 = blake3(data);
const hashHex = blake3Hex(data);
// Or streaming fashion
const hasher = createHasher();
for (const chunk of dataSource) {
hasher.update(chunk);
}
const hash = hasher.finalize();
FAQs
JS and WASM implementations of https://github.com/BLAKE3-team/BLAKE3
The npm package @huggingface/blake3-wasm receives a total of 15 weekly downloads. As such, @huggingface/blake3-wasm popularity was classified as not popular.
We found that @huggingface/blake3-wasm demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.