
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.
simple-protocol
Advanced tools
A very simple header-and-body protocol.
Originally written as an example in a Node API doc.
var sp = require('simple-protocol');
var Incoming = sp.Incoming;
var Outgoing = sp.Outgoing;
// throw some tcp in there, just for funsies
// Note that we have to use allowHalfOpen, because we're not
// explicitly managing the sockets, and we want to not close
// when we get a FIN from the client.
// In a real live environment, you'd probably want a client that can
// pool and reuse connections, do keepAlive, etc., and you'd then
// want to turn off allowHalfOpen, because the server is not
// interested in what the client has to say after it's finished
// sending the response.
require('net').createServer({ allowHalfOpen: true }, function(sock) {
var req = new Incoming();
var res = new Outgoing();
res.pipe(sock).pipe(req);
req.on('header', function(h) {
console.log('SERVER header', h);
});
req.on('data', function(chunk) {
console.log('SERVER message %j', chunk.toString());
});
req.on('end', function() {
console.log('SERVER end');
res.header = { well: 'that was fun' };
res.write('ok, ');
res.end('goodbye, now');
});
this.close();
}).listen(1337, function() {
var sock = require('net').connect(1337);
sock.allowHalfOpen = true;
sock.on('connect', function() {
var req = new Outgoing();
var res = new Incoming();
req.pipe(sock).pipe(res);
req.header = { hello: 'alice', this: 'is bob' };
res.on('header', function(h) {
console.log('CLIENT header', h);
});
res.on('data', function(chunk) {
console.log('CLIENT message %j', chunk.toString());
});
res.on('end', function() {
console.log('CLIENT end');
});
req.write('this is body chunks');
req.write('. and it will stream and stream\n');
req.end('because there is no I in example.\n');
});
});
And the output goes like:
SERVER header { hello: 'alice', this: 'is bob' }
SERVER message "this is body chunks. and it will stream and stream\nbecause there is no I in example.\n"
SERVER end
CLIENT header { well: 'that was fun' }
CLIENT message "ok, goodbye, now"
CLIENT end
If you want to use this with node v0.8 and before, you'll need to also
install the readable-stream module. It's not added as a dependency,
because the future is larger than the past.
FAQs
A very simple json-header-and-body protocol
We found that simple-protocol 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
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.