0
0
Fork 0
mirror of https://github.com/ENSL/ensl_gathers.git synced 2025-03-02 15:21:53 +00:00
ensl_gathers/scripts/unmarshal.rb
2015-09-15 14:25:00 +01:00

13 lines
No EOL
231 B
Ruby

# Reads in raw Rails 3 session store, returns user id
require 'base64'
session_store = ARGV[0]
deserialised_store = Marshal.load(Base64.decode64(session_store))
user_id = deserialised_store['user']
STDOUT.write user_id
exit 0