gpt4 book ai didi

go - 解密 gorilla session Cookie 数据

转载 作者:IT王子 更新时间:2023-10-29 01:41:56 27 4
gpt4 key购买 nike

首先,让我先声明一下,我正在参加夺旗比赛,但我在回答与 Go Gorilla Sessions 相关的问题时遇到了一些困难。我从来没有用 Go 编写过代码,所以这很有趣,也很令人沮丧:)

我有一个秘钥。我有一个编码的 Cookie。我需要解码 cookie,使用我拥有的 key ,编辑其中的任何数据,并使用我更改的数据重新加密以在挑战中取得进展。

我已经阅读了 Gorilla Sessions Package 文档,但并未真正获得任何帮助。

任何人都可以提供帮助,我从哪里开始?

最佳答案

查看文档 - gorilla 提供了一个 secure cookie package .根据您的应用程序架构 - 基本实现可以按如下方式工作:

创建一个 session 管理包以供您的应用使用。为了示例 - 让我们称它为 sessionmngr

sessionmngr 中,导入 "github.com/gorilla/securecookie"

sessionmngr 包中,使用小写的init() 函数来设置securecookie 的私有(private)实例。导入包后,将按照声明的顺序调用小写的 init() 函数。 (查看语言 spec 了解更多信息)。您将使用此实例对来自标准库的 http.Request 的 cookie 进行编码和解码。

import (
"github.com/gorilla/securecookie"

//you will need this later
"http"
)

//declare private secure cookie
var s *securecookie.SecureCookie

//initialize it here (taken from the gorilla docs example)
func init() {
var hashKey = []byte("very-secret")
var blockKey = []byte("a-lot-secret")
s = securecookie.New(hashKey, blockKey)
}

然后,您将在整个包中的函数中使用 s,这些函数需要对 cookie 的值进行编码和解码。 securecookie package documentation提供样板示例。

为了满足读取和修改已加密 cookie 的要求 - 在 securecookie 实例上使用 DecodeEncode 方法在上面的例子中设置。

类似 ---

func DecodeAndModify(w http.ResponseWriter, r *http.Request) {
//get reference to cookie if set
if cookie, err := r.Cookie("cookie-name"); err == nil {

value := make(map[string]string)
//use Decode to get the value from the cookie
if err = s.Decode("cookie-name", cookie.Value, &value); err == nil {
//modify the value in some way
value["newKey"] = "newValue"
//re-encode it
if encoded, err := s.Encode("cookie-name", value); err == nil {
cookie := &http.Cookie{
Name: "cookie-name",
Value: encoded,
Path: "/",
}
http.SetCookie(w, cookie)
}
}
}
}

关于go - 解密 gorilla session Cookie 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39690846/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com