Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
This adaptor is primarily made for the Univelop 500 RFID reader/writer made by Texas Instruments.
This reader supports the following tags:
Uses event emitters for passing tag and content, and can be controlled by nodejs, or externally via TCP Socket or Websocket.
var rfid = require('rfidgeek');
rfid.init() takes optional parameters (defaults in parantheses):
tcpsocket: (false) // {port: <port>, host: <host>} | true, defaults to localhost:4444
websocket: (false) // {port: <port>, host: <host>} | true, defaults to localhost:4444
debug: ('none') // show debug information, possible values: 'none', 'error', 'debug'
portname: ('/dev/ttyUSB0') // device path to reader
tagtype: ('ISO15693') // type rfid ['ISO15693', 'ISO14443A', 'ISO14443B', 'TAGIT']
scaninterval: (1000) // interval between each scan, tested down to 100ms
readerconfig: ('./univelop_500b.json') // path to json config file for rfid commands
bytes_to_read: ('08') // block length to read from ISO15693
rfid.init({
tcpsocket: {
port: 8888,
host: 'localhost'
},
tagtype: "ISO14443A"
});
### TCP Socket or Websocket control
### nodejs control
Start scan loop;
rfid.startScan(function(err) {console.log(err) });
Stop scan loop
rfid.stopScan();
Deactivate alarm
rfid.deactivateAFI(function(err) {console.log(err) });
Activate alarm
rfid.activateAFI(function(err) {console.log(err) });
Write ISO15693 tag:
rfid.writeISO15693("<tag id>", "<data>", function(err) { console.log(err) });
### Websocket in browser example
var ws = new WebSocket("ws://localhost:4444"); ws.onopen = function(evt) { console.log("connected!"); ws.send(JSON.stringify({cmd:"SCAN-ON"})); }
ws.onmessage = function(evt) { console.log(evt); };
For more info check the `rfid.js` file and the tests
Note, there is work on the reader in Python:
https://github.com/scriptotek/pyrfidgeek
and in Ruby:
https://github.com/digibib/rfidgeek
License is MIT
FAQs
serial connector to univelop RFID reader
The npm package rfidgeek receives a total of 3 weekly downloads. As such, rfidgeek popularity was classified as not popular.
We found that rfidgeek 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.