
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.
yoonik-face-api
Advanced tools
Functionalities for biometric processing (detection, verification and identification) for YooniK.Face.
This repository implements an integration SDK to facilitate the consumption of the YooniK.Face API, an YooniK Services offering.
For more information please contact us.
NODE 16 and later
npm install yoonik-face-api
Verifies the faces similarity between two images in base 64
const apiKey = "YOUR-X-API-KEY";
const baseURL = "YOUR-API-ENDPOINT";
const { Face, ImageUtils, VerifyImagesRequest} = require('yoonik-face-api');
const client = new Face({apiKey, baseURL});
const payload = new VerifyImagesRequest();
const iu = new ImageUtils();
(async () => {
try {
const img1 = await iu.imagePath_base64_encode("<IMAGE_PATH>")
payload.setFirstImage(img1);
const img2 = await iu.imagePath_base64_encode("<IMAGE_PATH>")
payload.setSecondImage(img2);
let result = await client.verify_images(payload);
console.log(result);
} catch (error) {
console.error('Exception when calling client.verify_images: ', error);
}
})();
If you're interested in using YooniK.Face API for identification purposes, please visit our examples.
FAQs
Functionalities for biometric processing (detection, verification and identification) for YooniK.Face.
The npm package yoonik-face-api receives a total of 0 weekly downloads. As such, yoonik-face-api popularity was classified as not popular.
We found that yoonik-face-api 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.