Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
react-native-status-keycard
Advanced tools
React Native library to interact with Status Keycard using NFC connection (Android only)
React Native library to interact with Keycard using Java SDK
$ npm install react-native-status-keycard --save
$ react-native link react-native-status-keycard
Android is the only platform supported by now.
android/app/src/main/java/[...]/MainApplication.java
import im.status.ethereum.keycard.RNStatusKeycardPackage;
to the imports at the top of the filenew RNStatusKeycardPackage()
to the list returned by the getPackages()
methodAppend the following lines to android/settings.gradle
:
include ':react-native-status-keycard'
project(':react-native-status-keycard').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-status-keycard/android')
Insert the following lines inside the dependencies block in android/app/build.gradle
:
compile project(':react-native-status-keycard')
Add <uses-permission android:name="android.permission.NFC"/>
to android/app/src/main/AndroidManifest.xml
to enable NFC permission.
Make sure minSdkVersion
is 18 in android/build.gradle
.
Take a look into docs
For more usage examples, please refer to https://github.com/status-im/status-react (assuming you can read Clojure)
For Keycard API documention, please look into https://status.im/keycard_api/
FAQs
React Native library to interact with Status Keycard using NFC connection (Android only)
We found that react-native-status-keycard 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.