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.
cordova-appivo-sibo-nfc
Advanced tools
A Cordova plugin that enables reading NFc tags using RFID/NFC Reader for Sibo Tablet.
A Cordova plugin that enables reading NFC tags using RFID/NFC Reader for Sibo Tablet.
API:
read data from a block : read(callback,errorCallBack,dataObject)
cancel the currently registered listener/reader : cancel(callback,errorCallBack)
write to a block : write(callback,errorCallBack,dataObject)
turn on LED : turnOnLED(callback,errorCallBack,dataObject)
turn off LED : turnOffLED(callback,errorCallBack)
Example:
var nfc = window.plugins.NFC;
// Write data onto a tags block
nfc.write(function(event) {
if (event.state == 'Success') {
alert("Data written Successfully!!!");
}
},
function(error){
alert(error);
},
{
// provide the data to be written onto the tag. If less than 16 characters 0's will be added at the end.
// BlockToWrite is the block number onto which the data will be written
Data:["newID"],
BlockToWrite:5
});
// read UID and data from a tags block
nfc.read(function(event) {
if (event.state == 'Success') {
alert("Scanned tag with data " + event.tag.data+"\n"+
"Scanned tag with UID " + event.tag.UID);
}
},
function(error){
alert(error);
},
{
// If ReadOnce is false it will keep the listener running until 'cancel' is called
// If AutoReadFromBlock is true it will read data from block as well
// BlockToRead is block number to read
ReadOnce:false,
AutoReadFromBlock:true,
BlockToRead:5
});
// Stop reading tags
nfc.cancel(function(event) {
if (event.state == 'Success') {
alert("Scanned stopped");
}
},
function(error){
alert(error);
});
// Turn on LED
nfc.turnOnLED(function(event) {
if(event.state == 'Success') {
alert("LED turned ON...");
}
},
function(error){
alert(error);
},
{
// True to turn on the LED with the resp. color. Only one of the colors can be selected.
Red:true,
Green:false,
Blue:false
});
// Turn off LED
nfc.turnOffLED(function(event) {
if (event.state == 'Success') {
alert("LED turned OFF...");
}
},
function(error){
alert(error);
});
FAQs
A Cordova plugin that enables reading NFc tags using RFID/NFC Reader for Sibo Tablet.
The npm package cordova-appivo-sibo-nfc receives a total of 2 weekly downloads. As such, cordova-appivo-sibo-nfc popularity was classified as not popular.
We found that cordova-appivo-sibo-nfc 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.