Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
automerger
Advanced tools
Streaming ETL
bin/test
npm install automerger
# setup
{EventEmitter} = require "events"
es = require "event-stream"
redis = require "redis"
AM = require "automerger"
conf =
db:
name: "test-model"
find: (id, cb) -> cb null, null
upsert: (id, doc, cb) -> cb null
model: new EventEmitter
redis: null
sourceStream: es.through (data) -> @queue data
sourceToIdPieces: (doc) -> [doc.type, doc.field]
subscriptions: [
["dest1"]
[
"filtered-sub"
(doc) ->
allow = doc.type is "allowed"
return allow
]
]
schema: ["type", "field"]
version: "test-version"
am = new AM conf
# input a source object
sourceDoc =
current: {type: "none", field: "name"}
am.sourceStream.write sourceDoc
# observe output
rc = redis.createClient()
rc.blpop "dest1", (err, res) ->
console.error if err
queueName = res[0]
inputForSubscriber = JSON.parse res[1]
FAQs
Streaming ETL
The npm package automerger receives a total of 2 weekly downloads. As such, automerger popularity was classified as not popular.
We found that automerger demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.