Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Server side mrz scanner.
Using mrz-detection written for NodeJS by Daniel Kostro and Michaël Zasso.
Based on mrz-scanner
Refactored by ProjectINT because original package was to big for lambda function
yarn add mrz-scan
OR
npm i mrz-scan
// @flow
const mrzScanner = require('mrz-scan');
type Result = ?{ // undefined if errored
number: string,
validDate: string,
birthDate: string,
name: string,
surname: string,
};
// Pass [Buffer](https://nodejs.org/api/buffer.html) to mrzScanner
const result: Result = await mrzScanner(Buffer);
// @flow
const mrzScanner = require('mrz-scan');
type Fields = {
documentCode: string,
issuingState: string,
lastName: string,
firstName: string,
documentNumber: string,
documentNumberCheckDigit: string,
nationality: string,
birthDate: string,
birthDateCheckDigit: string,
sex: string,
expirationDate: string,
expirationDateCheckDigit: string,
personalNumber: string,
personalNumberCheckDigit: string,
compositeCheckDigit: string,
}
type FullResult = ?{ // undefined if errored
format: string, // TD1, TD2, TD3
details: Array<{
label: string,
field: $Values<Fields>,
value: string,
valid: boolean,
ranges: Array<[number, number]>,
line: number,
start: number,
end: number,
}>,
fields: Fields,
valid: boolean,
}
const fullResult: FullResult = const result = await mrzScanner(Buffer, { original: true });
Supported image formats The following formats can be loaded by image-js:
FAQs
Server side mrz (Machine Readable Zone) scanner.
The npm package mrz-scan receives a total of 267 weekly downloads. As such, mrz-scan popularity was classified as not popular.
We found that mrz-scan 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.