
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
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 0 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.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.