Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
express-session-mongodb
Advanced tools
Implementation of the store functionality conforming to the API specified in express-session project (https://github.com/expressjs/session).
This implementation uses the MongoDB database.
A recent version of MongoDB (version 2.4.9 is installed on my machine) [1]
A recent version of Node.js (version 0.10.25 is installed on my machine) [1]
npm if you want the easy way to install this module.
Read the package.json file for other dependencies. The devDependencies are solely to run the tests and not required for production.
[1] Later versions should also work. If you find it not to be the case, let me know.
npm install express-session-mongodb
In the directory where the module is located, run the following 2 commands on the prompt:
Running the tests will a bit over a minute due to the TimeToLive test.
Example of the usage pattern for this module:
var Mongodb = require('mongodb');
var Store = require('express-session-mongodb');
var ExpressSession = require('express-session');
var Express = require('express');
var App = Express();
//Probably Some code
var StoreOptions = {'TimeToLive': 0, 'IndexSessionID': false}; //Read more below
MongoDB.MongoClient.connect("mongodb://localhost:27017/SomeDatabase", function(Err, DB) { //Obviously, your code will probably differ here
Store(DB, function(Err, SessionStore) {
var Options = {'secret': 'qwerty!', 'store': SessionStore}; //Look at the express-session project to find out all the options you can pass here
App.use(ExpressSession(Options));
//Probably more code
}, StoreOptions);
});
The express-session-mongodb module returns a function with the following signature:
function(<DBHandle>, <Callback>, <Options>);
<DBHandle> is the database handle that the store will operate on. It should be obtained using the MongoDB driver.
<Options> are the options you can pass to the session store instance. It is an object with the following properties:
While theorically, an error should be reported if duplicate session IDs are created, this will never happen in practice because of the way the express-session project is implemented (the fact that the call it makes to create or update a session in the database are the same). Rather, if ever express-session somehow creates two sessions with duplicate IDs, one will overwrite the other. Obviously, a good key generator will make this occurence logically or probabilistically impossible.
Additional note: I tried passing a key generator that always generated the same key to express-session to see how it would react, but it appended some random string to the generated keys so express-session does seem to take extra precautions to avoid collisions.
TimeToLive: Integer than can be 0 (default) or greater. If greater than 0, a Time-to-Live index will be set which will represent how long (in seconds) a session can be idle in the database (neither written to nor accessed) before MongoDB deletes it. Note that according to the author of "MongoDB: The Definitive Guide", MongoDB check on Time-To-Live indexes about once per minute, so you should not rely on a session getting deleted the exact second it expires.
Filter: Can be true or false (default). If set to true, the '.', '$' and '\0' special characters are sanitized in session properties before storage. Necessary to store sessions with properties that contains those characters. You can gain a bit of speed by setting this to false if you are certain your session properties won't contain those characters.
<Callback> is the function that will be called when the session store instance (and its underlying database collection/index dependencies) have been created. It takes the following signature:
function(<Err>, <StoreInstance>)
<Err> is null if no error occured (otherwise it contains the error object).
<StoreInstance> is the resulting store instance you can pass to express-session.
For those who use the TimeToLive options (which introduces the phenomemon of sessions being deleted in the database without express-session knowing it):
If sessions are deleted between request (when Req.session doesn't exist), express-session will just automatically generate a new session (blank with a new ID) whenever a client submits a request with a cookie for a session that doesn't exist.
Things get just a little more complicated if a session gets deleted while the server is processing a request (when Req.session exists) which could feasibly happen if TimeToLive is very short and a requests takes a while to process:
Manipulations on the Req.session will behave as normal and the session will be re-saved in the database when the request returns (ok for TimeToLive, probably bad if you want to implement reliably deleting sessions from an admin panel)
Calls to Req.session.regenerate or Req.session.destroy will not report an error and will behave as expected: a new generation will be created during the request in the former and the Req.session object will be taken down in the later (nothing will be done in the database, because the session will already have been deleted there)
Calls to Req.session.reload won't do anything (there is no session in the database to reload from), but will report an error.
Calls to Req.session.save will behave as expected and will save the session back to the database (in this case, re-create it).
Immediate plans for this module include more integration tests (internal tests are finished) to cover the following cases:
Longer term plans include implementing further useful options you can pass to the constructor as well as an evented API.
Initial Release.
Documentation display fix.
FAQs
Session Store for express-session
The npm package express-session-mongodb receives a total of 3 weekly downloads. As such, express-session-mongodb popularity was classified as not popular.
We found that express-session-mongodb 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 researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.