
Research
Malicious fezbox npm Package Steals Browser Passwords from Cookies via Innovative QR Code Steganographic Technique
A malicious package uses a QR code as steganography in an innovative technique.
The scmp package in npm is a secure, constant-time comparison of strings or buffers. It is primarily used to prevent timing attacks when comparing sensitive data, such as cryptographic hashes or tokens.
Secure String Comparison
This feature allows for the secure comparison of two strings, ensuring that the time taken to compare is constant, thus preventing timing attacks.
const scmp = require('scmp');
const a = 'not_so_secret';
const b = 'not_so_secret';
console.log(scmp(a, b)); // outputs: true
Secure Buffer Comparison
Similar to string comparison, this feature enables the secure, constant-time comparison of two buffers, which is useful for comparing binary data securely.
const scmp = require('scmp');
const buffer1 = Buffer.from('secret_data');
const buffer2 = Buffer.from('secret_data');
console.log(scmp(buffer1, buffer2)); // outputs: true
bcryptjs is a package that provides secure password hashing. While it does not offer direct string comparison like scmp, it is used for securely handling passwords which is a similar domain of security.
The built-in Node.js 'crypto' module provides a method called 'timingSafeEqual' which performs a constant-time comparison of buffers, similar to what scmp does. It is a more comprehensive security toolkit that includes a variety of cryptographic functions.
Safe, constant-time comparison of Buffers.
npm install scmp
To minimize vulnerability against timing attacks.
const scmp = require('scmp');
const Buffer = require('safe-buffer').Buffer;
const hash = Buffer.from('e727d1464ae12436e899a726da5b2f11d8381b26', 'hex');
const givenHash = Buffer.from('e727e1b80e448a213b392049888111e1779a52db', 'hex');
if (scmp(hash, givenHash)) {
console.log('good hash');
} else {
console.log('bad hash');
}
v2.1.0 (2019/12/26)
standard
as lintervar
has been replaced with const
and let
FAQs
safe, constant-time comparison of Buffers
The npm package scmp receives a total of 1,717,438 weekly downloads. As such, scmp popularity was classified as popular.
We found that scmp 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
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.
Application Security
/Research
/Security News
Socket detected multiple compromised CrowdStrike npm packages, continuing the "Shai-Hulud" supply chain attack that has now impacted nearly 500 packages.