Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
cookie-derail
Advanced tools
Decode Ruby on Rails' cookies, without monkey patching in serializing to JSON
Decode, and optionally verify the signature of, unencrypted Ruby on Rails cookies.
Alternative implementations of this require you to change the default serialization format on the Rails app's side to something like JSON - this does not, instead using a basic (hashes/arrays/strings/numbers only) Marshal parser written in javascript.
var derail = require('cookie-derail');
var token = '3d8(...snip...)3cc5'
// in an HTTP server / express / whatever connection handler
var cookie = req.cookies._app_session;
Decode a cookie, verifying it has not been tampered with using the Rails app's secret token:
var value = derail.decode(req.cookies._app_session, { secret: token });
Decode a cookie, ignoring the signature:
var value = derail.decode(req.cookies._app_session, { verifySignature: false });
If something goes wrong an exception with details will be thrown.
npm test
FAQs
Decode Ruby on Rails' cookies, without monkey patching in serializing to JSON
The npm package cookie-derail receives a total of 4 weekly downloads. As such, cookie-derail popularity was classified as not popular.
We found that cookie-derail demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.