
Research
5 Malicious Chrome Extensions Enable Session Hijacking in Enterprise HR and ERP Systems
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.
hyperfilter
Advanced tools
Distributed map and filter. Useful for filtering distributed streams of data, similar to Apache Spark, but implemented in ~16 lines of code.
$ npm install hyperfilter
var hypercore = require('hypercore')
var filter = require('hyperfilter')
var memdb = require('memdb')
var core = hypercore(memdb())
var inp = core.createFeed()
var out = core.createFeed()
// uppercase all input, filter out 'hello world 1'
filter(inp, out, function (data, cb) {
if (data.toString() === 'hello world 1') return cb()
cb(null, data.toString().toUpperCase())
})
inp.append(new Buffer('hello world 0'))
inp.append(new Buffer('hello world 1'))
inp.append(new Buffer('hello world 2'))
out.createReadStream({live: true}).pipe(process.stdout)
// => HELLO WORLD 0
// => HELLO WORLD 2
We believe ops doesn't need to be complicated. If hypercore is distributed
streams, hyperfilter is a distributed filter for streams. We needed this to
to turn our feed of server logs into a feed of server errors.
Create a new filter function that reads data from an input hypercore feed to
and writes it to an output hypercore feed. Each chunk of data is passed
throug the map function. The next function has a signature of err, data.
If neither an error or data is written, it skips to the next chunk, acting like
a filter function.
MIT
FAQs
Distributed map and filter
We found that hyperfilter 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
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.

Research
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.