
Research
Malicious Go “crypto” Module Steals Passwords and Deploys Rekoobe Backdoor
An impersonated golang.org/x/crypto clone exfiltrates passwords, executes a remote shell stager, and delivers a Rekoobe backdoor on Linux.
level-live-stream
Advanced tools
Stream live changes from levelup.
Works just like LevelUp#readStream except instead of ending, it will stay open and stream changes to the database as they are inserted!
Just like the couchdb changes feed, but for any arbitrary range of keys!
see also, level-livefeed for the same idea, but with a streams2 api.
var level = require('level')
level('/tmp/level-live-stream',
{createIfMissing: true}, function (err, db) {
var liveStream = require('level-live-stream')(db)
liveStream
.on('data', console.log)
setInterval(function () {
db.put('time', new Date().toString())
}, 1000)
})
You can also attach liveStream as a method to the db like below.
This will allow multilevel
clients to use db.liveStream().
var LiveStream = require('level-live-stream');
// attach the `liveStream` method using `install`
LiveStream.install(db);
// then invoke the method using the `db` instance
db.liveStream()
.on('data', console.dir);
LiveStream(db, {
tail: true, //follow
old : true, //get old records from data base
//if old=false you will only get live updates
min : loKey, //lowest key in range
max : hiKey, //highest key in range
reverse: true //stream in reverse (only applies to old records)
})
MIT
FAQs
Stream live changes from levelup.
We found that level-live-stream 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
An impersonated golang.org/x/crypto clone exfiltrates passwords, executes a remote shell stager, and delivers a Rekoobe backdoor on Linux.

Security News
npm rolls out a package release cooldown and scalable trusted publishing updates as ecosystem adoption of install safeguards grows.

Security News
AI agents are writing more code than ever, and that's creating new supply chain risks. Feross joins the Risky Business Podcast to break down what that means for open source security.