Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

rails-session-decoder

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rails-session-decoder

Simple utility for decoding Rails 4.x sessions in node.js

  • 1.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Build Status

Simple utility for decoding Rails 4.x sessions in node.js

Installing:

$ npm install rails-session-decoder

Usage:

var sessionDecoder = require('rails-session-decoder');

var secret = 'find me in your rails app at config/secrets.yml';
var decoder = sessionDecoder(secret);

var sampleCookie = 'N0paYjIyWTNIOWgxV2VON0RCM1AvenZzQVNFeWY0elBoQkZ5SnN4OVAybXZQMEErV0VGa1luM2VmYTg4cEk0Y2paVUtMUW8xbEQyUE5VbFJ1OTZUeWJiODdYNkxZSWxvYUtiaE1ucy9LM1BMUy8yd0N0ZExZQzYzUVFsaGZ4M044MjdOdWNJYWhMbW5HOTJpY2UzQUdBPT0tLWtuWk9IWVJpakpWak5oSmZ2d2VLbWc9PQ==--d4292397f777c8f79655884b3fcc241e4bc2fcf5';


decoder.decodeCookie(sampleCookie, function(err, sessionData) {
  console.log(sessionData);
  // => {"session_id":"1cc5440b929e539280d94888629565d1","_csrf_token":"CzzmfmhiXOMfGDsL4wkUNsvgyjG7215I73e6bXX1MlQ="}
});

Methods

Decode a normal cookie.

#decodeCookie(cookieString, callback)

Decode a Signed cookie.

#decodeSignedCookie(cookieString, callback)

Change the secret.

#setSecret(newValue)

Change the normal cookie salt.

#setCookieSalt(newValue)

Change the signed cookie salt.

#setSignedCookieSalt(newValue)

Change the number of iterations for the PBKDF2 key generator .

#setIterations(newValue)

Change the key length of the PBKDF2 key generator.

#setKeyLength(newValue)

License

MIT

Keywords

FAQs

Package last updated on 07 Dec 2020

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc