Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
EMV / Chip and PIN library
var cardreader = require('card-reader');
var emvTags = require('../lib/emvTags');
var emvApplication = require('../lib/emvApplication');
cardreader.on('device-activated', function (reader) {
console.info(`Device '${reader.name}' activated`);
});
cardreader.on('device-deactivated', function (reader) {
console.info(`Device '${reader}' deactivated`);
});
cardreader.on('card-removed', function (reader) {
console.info(`Card removed from '${reader.name}' `);
});
cardreader.on('command-issued', function (reader, command) {
console.info(`Command '${command.toString('hex')}' issued to '${reader.name}' `);
});
cardreader.on('response-received', function (reader, response) {
console.info(`Response '${response}' received from '${reader.name}' `);
});
cardreader.on('card-inserted', function (reader, status) {
console.info(`Card inserted into '${reader.name}', atr: '${status.atr.toString('hex')}'`);
var application = emvApplication(cardreader);
application
.selectPse()
.then(function (response) {
console.info(`Select PSE Response:\n${emvTags.format(response)}`);
var sfi = 1;
var record = 0;
while (record++ < 10) {
application.readRecord(sfi, record).then(function (response) {
if (response.isOk()) {
console.info(`Read Record Response: ${emvTags.format(response)}`);
var aid = emvTags.findTag(response, 0x4f);
if (aid) {
console.info(`Application ID: '${aid.toString('hex')}`);
}
}
return response;
}).catch(function (error) {
console.error('Read Record Error:', error, error.stack);
});
}
}).catch(function (error) {
console.error('Error:', error, error.stack);
});
});
Tested on Mac OSX with the SCM SCR3500 Smart Card Reader. This library should work with most PC/SC readers - I'll update this page when I get to test others. If you know of any other devices that work please let me know.
FAQs
EMV / Chip and PIN library
We found that emv 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.