![38% of CISOs Fear They’re Not Moving Fast Enough on AI](https://cdn.sanity.io/images/cgdhsj6q/production/faa0bc28df98f791e11263f8239b34207f84b86f-1024x1024.webp?w=400&fit=max&auto=format)
Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
nfc-react-native
Advanced tools
nfc-react-native is a react-native module for android to write/read Mifare Classic (NFC) tags.
$ npm install nfc-react-native --save
$ react-native link nfc-react-native
android/app/src/main/java/[...]/MainApplication.java
import es.tiarg.nfcreactnative.NfcReactNativePackage;
to the imports at the top of the filenew NfcReactNativePackage()
to the list returned by the getPackages()
methodandroid/settings.gradle
:
include ':nfc-react-native'
project(':nfc-react-native').projectDir = new File(rootProject.projectDir, '../node_modules/nfc-react-native/android')
android/app/build.gradle
:
compile project(':nfc-react-native')
import {readTag, writeTag} from 'nfc-react-native'
...
//get card id
getCardId()
.then((card) => {
console.log(card)
}).catch((err) => {
console.log(err)
})
//read multiple sectors + blocks and get card id
readTag([{ sector: 5, bloques: [1,2], clave: 'FFFFFFFFFFFF', tipoClave: 'A' },
{ sector: 6, bloques: [0,1,2], clave: 'FFFFFFFFFFFF', tipoClave: 'A' },
{ sector: 4, bloques: [0], clave: 'FFFFFFFFFFFF', tipoClave: 'A' }])
.then((card) => {
console.log(card)
// returns Object {lectura: Array[3], card: "A3F813DB"}
}).catch((err) => {
console.log(err.message)
})
//writes multiple sectors and blocks but you must provide card id
writeTag([{ sector: 5, bloques: [
{ indice: 1, data: [15,15,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,15,15] },
{ indice: 2, data: [15,15,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,15,15] } ],
clave: 'FFFFFFFFFFFF', tipoClave: 'A' },
{ sector: 6, bloques: [
{ indice: 0, data: [15,15,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,15,15] },
{ indice: 1, data: [15,15,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,15,15] },
{ indice: 2, data: [15,15,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,15,15] } ],
clave: 'FFFFFFFFFFFF', tipoClave: 'A' },
{ sector: 4, bloques: [
{ indice: 0, data: [15,15,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,15,15] } ],
clave: 'FFFFFFFFFFFF', tipoClave: 'A' },
], "A3F813DB")
.then((card) => {
console.log(card)
}).catch((err) => {
console.log(err.message)
})
...
In your manifest add:
<uses-permission android:name="android.permission.NFC" />
....
Your main activity should look like
...
<activity
android:name=".MainActivity"
android:launchMode="singleTask"
android:label="@string/app_name"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize">
<intent-filter>
<action android:name="android.nfc.action.TECH_DISCOVERED"/>
</intent-filter>
<meta-data android:name="android.nfc.action.TECH_DISCOVERED"
android:resource="@xml/nfc_tech_filter" />
</activity>
Add a xml file in res folder with the following:
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<tech-list>
<tech>android.nfc.tech.MifareClassic</tech>
</tech-list>
</resources>
Contributions are welcome :raised_hands:
This repository is distributed under MIT license
FAQs
NFC Wrapper
The npm package nfc-react-native receives a total of 6 weekly downloads. As such, nfc-react-native popularity was classified as not popular.
We found that nfc-react-native 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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.