请问一下用 openresty 和 lua 脚本实现 url 鉴权怎么不行

2023-03-29 11:09:15 +08:00
 kiduu
location /image {
  content_by_lua_block {
    local secret_key = "secret_key"
    local uri = ngx.var.uri
    local args = ngx.req.get_uri_args()
    local file_path = string.sub(uri, 5)
    local timestamp = args.t
    local sign = args.sign
    local expected_sign = ngx.md5(file_path .. "@" .. timestamp .. "@" .. secret_key)
    if sign == expected_sign then
      ngx.exec(uri)
    else
      ngx.exit(ngx.HTTP_FORBIDDEN)
    end
  }
}

想要的效果是域名 /文件路径?t=timestamp&sign=hash 值,hash 值为 md5(/文件路径 @时间戳 @密钥) 用 curl 测试的时候一直 403 , curl "http://域名 /image/1.jpg?t=$(date +%s)&sign=$(echo -n "/image/1.jpg@$(date +%s)@secret_key" | md5sum | cut -d ' ' -f 1)" 技术水平不到家,望大佬指点

1179 次点击
所在节点    云计算
1 条回复
proxytoworld
2023-03-29 11:23:32 +08:00
好像你文件路径算错了,不会 lua ,但看你代码算的路径好像不包含 /image ??但请求里的 md5 带了 /image

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/928086

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX