
Research
/Security News
Malicious npm Packages Target WhatsApp Developers with Remote Kill Switch
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
express-drupal7-session-middleware
Advanced tools
Express middleware to retrieve a user session from a drupal 7 cookie
Express middleware to retrieve a user session from a drupal 7 cookie
npm i express-drupal7-session-middleware
You need to use knex query builder to use this package.
npm i cookie-parser knex
See knex documentation on how to create a new instance.
In your server definition
const { drupalExpressMiddleware } = require('express-drupal7-session-middleware');
app.httpServer = http.createServer(app);
// ...
app.use(cookieParser());
app.use(drupalExpressMiddleware('local.my-website.com', knex));
then in your routes
const { drupalUserAccess, drupalCSRFToken } = require('express-drupal7-session-middleware');
const myRoute = async (req, res) => {
const access = await drupalUserAccess(knex, 'access api myRoute', req.userId);
if (!access) {
return res.status(403).send();
}
// Bonus if you need it
console.log(req.cookieSessionText);
// -- and --
const drupalHashSalt = 'fwf3qfwgrbq34h34qeg134g3434g5340f-0f';
const csrfToken = await drupalCSRFToken(knex, req.sessionId, drupalHashSalt, 'services'));
res.json({ csrfToken });
}
FAQs
Express middleware to retrieve a user session from a drupal 7 cookie
We found that express-drupal7-session-middleware demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
/Security News
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
Research
/Security News
Socket uncovered 11 malicious Go packages using obfuscated loaders to fetch and execute second-stage payloads via C2 domains.
Security News
TC39 advances 11 JavaScript proposals, with two moving to Stage 4, bringing better math, binary APIs, and more features one step closer to the ECMAScript spec.