
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.
hibp-downloader
Advanced tools
Download all the HIBP passwords
It's like HaveIBeenPwned/PwnedPasswordsDownloader, only in node.js
CLI Usage:
# output all hashes to stdout:
npx hibp-downloader download
# output to a file:
npx hibp-downloader download -o hashes.txt
# get a subset of hashes (start and end are inclusive):
npx hibp-downloader download -s 0x00010 -e 0x00011
Javascript module usage:
const { createRange, getPrefixRange } = require('hibp-downloader');
async function getSomeHashes({start, end}){
const range = createRange({start, end});
const responses = getPrefixRange(range);
responses.forEach(({prefix, hashes}) => {
hashes.split(/\r?\n/).forEach(hash => {
console.log(`${prefix}${hash}`);
});
});
}
FAQs
Download all the HIBP passwords
The npm package hibp-downloader receives a total of 0 weekly downloads. As such, hibp-downloader popularity was classified as not popular.
We found that hibp-downloader 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.