Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
express-socket.io-session
Advanced tools
Share a cookie-based express-session middleware with socket.io
Share a cookie-based express-session middleware with socket.io
express-socket.io-session works with express > 4.0.0 and socket.io > 1.0.0 and won't be backward compatible.
Help me notice errors or ask me for improvements creating an issue.
On every socket connection, you'll have the session object at
socket.handshake.session
That is the same session object req.session
you get in your route middleware when your app
uses express-session
.
Don't rely on session data autosaving if you use an async store for express-session.
Use Session.reload() and Session.save()
on the socket.handshake.session
object inside your socket.io event handlers.
Please, see More about updating and getting session data for better understanding of how to read and update session data inside your socket.io event handlers.
$ npm install express-socket.io-session
var session = require("express-session")({
secret: "my-secret",
resave: true,
saveUninitialized: true
});
var sharedsession = require("express-socket.io-session")(session);
app.use(session); // Use express-session middleware for express
io.use(sharedsession(session)); // use shared session middleware for socket.io
Sharing session data with a namespaced socket
io.of('/namespace').use(sharedsession(session));
Using your own custom cookie-parser instance
...
var cookieParser = require("cookie-parser");
...
io.use(sharedsession(session, cookieParser({
/* your params to cookie-parser* /
}));
$ npm install express socket.io express-session express-socket.io-session
index.js
var app = require('express')(),
server = require("http").createServer(app),
io = require("socket.io")(server),
session = require("express-session")({
secret: "my-secret",
resave: true,
saveUninitialized: true
}),
sharedsession = require("express-socket.io-session");
// Attach session
app.use(session);
// Share session with io sockets
io.use(sharedsession(session));
io.on("connection", function(socket) {
// Accept a login event with user's data
socket.on("login", function(userdata) {
socket.handshake.session.userdata = userdata;
socket.handshake.session.save();
});
socket.on("logout", function(userdata) {
if (socket.handshake.session.userdata) {
delete socket.handshake.session.userdata;
// Save the data to the session store
socket.handshake.session.save();
}
});
});
server.listen(3000);
You may be used to express-session
behaviour by which, you just
modify the session
properties and its value gets updated (even with
using asynchronous stores like mongodb or redis). express-session achieves that
by monkeypatching (and overloading) req.end
.
The case here is that socket.io middleware is run only once. On connection handshake. The event handlers you define can't trigger the middleware.
So if you get used to accessing and saving session data inside
your event handlers, with the .reload()
and .save()
from the session object you'll do just fine.
By using express-socket.io-session you'll find these methods in socket.handshake.session.get()
and socket.handshake.session.save()
when handling an event.
This module exports a middleware function for socket.io.
This sharedsession function can be used with the io.use()
method.
sharedsession( express_session_middleware, [cookieparser_instance] )
express_session_middleware
is required and must be an express middleware function created with the express-session module that allows cookie-based sessions.cookieparser_instance
is optional. If you don't provide en instance created by cookie-parser, this module creates one for you with defaults.Although there are a couple of modules that allow you to share session objects between express and socket.io,
I wanted to be able to share the modules without affecting regular express-session
instantiation.
These modules do the same work but with different approachs on initialization.
The MIT License (MIT)
Copyright (c) 2014-2015 osk <oskosk@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
Share a cookie-based express-session middleware with socket.io
The npm package express-socket.io-session receives a total of 5,624 weekly downloads. As such, express-socket.io-session popularity was classified as popular.
We found that express-socket.io-session 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.