
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
npm install mdb
use the mdbtools CLI tool (written in C) from node to convert MS Access databases to CSV
these aren't native bindings, they just talk to stdin/stdout/stderr of mdbtools (specifically mdb-tables and mdb-export)
install https://github.com/brianb/mdbtools. as of this writing I could only get it to compile on Ubuntu and not OS X
also as of this writing mdbtools supports .mdb and .accdb files up through Access 2010
var fruit = mdb('fruit.mdb')
fruit.tables(function(err, tables) {
tables.forEach(function(table) {
fruit.toCSV(table, function(err, csv) {
console.log(err, table, csv.split('\n').length - 1 + " lines")
})
})
})
MIT LICENSE
FAQs
use mdbtools from node to convert MS Access databases (.mdb and .accdb) to CSV
We found that mdb 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.