英文:
How to decrypt Express.js Connect.sid cookie
问题
这是我的Cookies
connect.sid:s:fRptL0_o-5FBbqqbDluHrSvo4DyKHvcP.6Y57+JkukcncVD/6ANbtojCGkL2yLnnmJgo2n30SnWo
密钥是 #@%#&^$^$%@$^$&%#$%@#$%$^%&$%^#$%@#$%#E%#%@$FEErfgr3g#%GT%536c53cc6%5%tv%4y4hrgrggrgrgf4n
我尝试解码它
英文:
here is my cookies
connect.sid:s:fRptL0_o-5FBbqqbDluHrSvo4DyKHvcP.6Y57+JkukcncVD/6ANbtojCGkL2yLnnmJgo2n30SnWo
the secret is #@%#&^$^$%@$^$&%#$%@#$%$^%&$%^#$%@#$%#E%#%@$FEErfgr3g#%GT%536c53cc6%5%tv%4y4hrgrggrgrgf4n
i tried decoding it
答案1
得分: 1
没有什么需要解码的。
该数值是有符号的,而不是加密的。密钥仅用于验证它。
它使用了cookie-signature模块来实现这一点。
英文:
There's nothing to decode.
The value is signed, not encrypted. The secret is only used to verify it.
It uses the cookie-signature module to do this.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论