
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
react-native-simpl-fingerprint-sdk
Advanced tools
[![Version][version-badge]][package]
This project serves as a Simpl FingerPrint Sdk wrapper for React Native. Currently supported React Native version: >= 0.50.3
Using npm:
npm install --save react-native-simpl-fingerprint-sdk
or using yarn:
yarn add react-native-simpl-fingerprint-sdk
Example app lives in example directory
React-native from v0.60 supports auto linking so none of the folwing steps are required.
Run the following command to link the SDK to Android and iOS
react-native link react-native-simpl-fingerprint-sdk
Add the following to android/app/build.gradle
:
...
repositories {
maven { url "http://maven.getsimpl.com"}
}
dependencies {
...
compile project(':react-native-simpl-fingerprint-sdk')
compile "com.simpl.android:fingerprintSDK:+"
}
If you are using Cocoapods, Add FingerPrint SDK to your Podfile
pod 'react-native-simpl-fingerprint-sdk', :podspec => '../node_modules/react-native-simpl-fingerprint-sdk/react-native-simpl-fingerprint-sdk.podspec
Then run,
pod install
If you are not using Cocoapods, Link the Framework from here manually.
For generating fingerprint data:
import Simpl from "react-native-simpl-fingerprint-sdk";
//Get Payload
Simpl.generateFingerprint(
"<client_id>",
"<phone_number>",
"<email>",
(payload) => {
console.log("Fingerprint", payload);
}
);
FAQs
A React Native wrapper for Simpl FingerPrint SDK
The npm package react-native-simpl-fingerprint-sdk receives a total of 10 weekly downloads. As such, react-native-simpl-fingerprint-sdk popularity was classified as not popular.
We found that react-native-simpl-fingerprint-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.