
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.
Easily put your node server behind stud SSL terminator
You need stud installed first. Then:
npm install studify
The following starts an HTTP server on random port and stud "in front" of it
port 8433.
var path = require('path');
var http = require('http');
var studify = require('studify');
var server = http.createServer(function (req, res) {
res.writeHead(200, { 'content-type': 'text/plain' });
res.end('Hello, stud!\n');
});
studify(server, {
cert: path.join(__dirname, 'server.pem'),
port: 8433,
log: function () { console.log.apply(console, arguments); }
});
server.listen();
studify(server, options)server (net.Server) - server stud is supposed to forward traffic tooptions (Object)
options.port (number) - required. Port to start stud onoptions.cert (string) - required. Path to PEM file with the certificateoptions.stud (string) - stud binary, default: "stud"options.ssl (boolean) - whether to use SSLv3 or not, default: true
if server is an instance of http.Serveroptions.workers (number) - number of stud workers, default: 1Returns an EventEmitter, which emits following events:
restart(code, signal) - stud crashed and had to be restartederror(err) - ChildProcess emitted an error eventFAQs
Easily put your node server behind `stud` SSL terminator
The npm package studify receives a total of 3 weekly downloads. As such, studify popularity was classified as not popular.
We found that studify 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.