golaravelsession

package module
v1.1.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 8, 2019 License: MIT Imports: 7 Imported by: 0

README

Go Laravel Session

Build Status

Basic Decrypt Laravel's SessionID and Read Session Data support for golang.

Features
  • Decrypt SessionID (now for the default AES-256-CBC cipher only)
  • Read Session Data from php-serialized format
Purpose
  • golang websocket app combined with laravel app (authorize user)
  • other
Examples
  • GetSessionID
cookie := "eyJpdiI6IjVrTVVDSmlyb1FtN2NrbmlOTllOUkE9PSIsInZhbHVlIjoiUU9pbCtMTjhQQnQyamJ6ZE5qenVWanhuZktUcjBkOUVsWU5ibkhlWHJyc25DNnZYQlRrOWlFd01ObVJwam1yVUtNcGRUanV1aEJIWHBsYXNiZytNenc9PSIsIm1hYyI6ImMzYzVmMGE1NWY5ZjEzMzRjOTVkN2FlZGY2YzZhNDExOTVhZjUzMjYzZmE3OTE1ODIwYWYzNmY5ODQzYjIwOGEifQ=="
key := "base64:qsDvCdhT+JPXEBD3ys/XraOXVNpshsyElzJmtgnBqEI="

sessionID, _ := GetSessionID(cookie, key)
fmt.Println(sessionID)
//produces: RYodG5AekDidQCVLvs4fQIRAPSwarZV26U4shNVX
  • ParseSessionData

this is just wrapper usage of package github.com/yvasiyarov/php_session_decoder/php_serialize

sessionData := `a:5:{s:6:"_token";s:40:"eE5gVNqGSn6wneCJAzhtTMulPFwvOfDyZRSoVStA";s:3:"url";a:0:{}s:9:"_previous";a:1:{s:3:"url";s:29:"https://test.dev";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}s:52:"login_admin_59ba36addc2b2f9401580f014c7f58ea4e30989d";i:1;}`
session, _ := ParseSessionData(sessionData)
fmt.Println(session["_token"].(string))

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func GetSessionID

func GetSessionID(cookie, key string) (string, error)

GetSessionID Decypt laravel's session cookie and return it's SessionID

func ParseSessionData

func ParseSessionData(data string) (php_serialize.PhpArray, error)

ParseSessionData Parse session data into readable golang struct

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL