Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
rails-session-decoder
Advanced tools
Simple utility for decoding Rails 4.x sessions in node.js
$ npm install rails-session-decoder
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="}
});
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)
FAQs
Simple utility for decoding Rails 4.x sessions in node.js
We found that rails-session-decoder 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.