
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
sqlite3-offline-next
Advanced tools
Bundled SQLite3 library for offline environments but with modern node support
Bundled library for SQLite3 for offline deployments. Zero dependencies, zero external HTTP downloads.
Based on the awesome work of DenisCarriere and Howe Huang and just forked + published to by me.
After version upgrade to v5.0.0, Offical SQLite3 use Node-API to build native addons so that we can use one prebuild native library support across versions of Node.js. But Unfortunately, some old Node release and Electron version has been end of support.
# Install as normal package
npm install --save sqlite3-offline-next
yarn sqlite3-offline-next
# Install as sqlite3 alias
npm install --save sqlite3@npm:sqlite3-offline-next
yarn add sqlite3@npm:sqlite3-offline-next
const sqlite3 = require('sqlite3-offline-next').verbose()
var db = new sqlite3.Database('./dev.db')
db.serialize(function() {
db.run("CREATE TABLE lorem (info TEXT)")
var stmt = db.prepare("INSERT INTO lorem VALUES (?)")
for (var i = 0; i < 10; i++) {
stmt.run("Ipsum " + i)
}
stmt.finalize()
db.each("SELECT rowid AS id, info FROM lorem", function(err, row) {
console.log(row.id + ": " + row.info)
})
})
db.close()
These plattforms should work but I haven't tested them yet...
These releases should work but I haven't tested them yet...
Version v5.0.0 and up
Versions below v5.0.0
BSD © Mapbox
FAQs
Bundled SQLite3 library for offline environments but with modern node support
The npm package sqlite3-offline-next receives a total of 12 weekly downloads. As such, sqlite3-offline-next popularity was classified as not popular.
We found that sqlite3-offline-next 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.