Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
This is a native javascript implementation of Unix/Linux compatible password hashing. The currently implemented variants include MD5 ($1$), SHA256 ($5$), and SHA512 ($6$).
The ones missing are
Should some brave soul implement any or all of above, they will be accepted.
const up = require('unixpass');
// Returns password hash using SHA256
up.crypt('mypassword', '$5$saltsaltmoresalt');
// Returns a password hash with autogenerated salt using SHA512
up.hash('mypassword');
// Returns true if password matches hash, false otherwise
up.hash('mypassword', '$1$saltsalt$dfhjlwheucnsdicbnwuibnwicb');
Timo J. Rinne tri@iki.fi
GPL-2.0
FAQs
Native implementation of Unix compatible DES/MD5/SHA256/SHA512 password hashing.
We found that unixpass 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
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.