We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
看了大大文章,紀錄以下筆記 白話 Session 與 Cookie:從經營雜貨店開始 淺談 Session 與 Cookie:一起來讀 RFC 深入 Session 與 Cookie:Express、PHP 與 Rails 的實作
session:是一種機制 cookie:是 browser 中可存放東西的地方
參考文章: HTTP Session 攻擊與防護 我遇過的最難的 Cookie 問題 HTTP Cookies: Standards, Privacy, and Politics Cookie Security
The text was updated successfully, but these errors were encountered:
Top issues on OWASP session 如果放在 URL,任何人只要拿到這個 session id,不用知道你的帳密,就可以直接假裝是你,把你戶頭的錢轉走之類的。
Sorry, something went wrong.
APP有用HTTPS傳輸,但資料還是被偷了。
No branches or pull requests
看了大大文章,紀錄以下筆記
白話 Session 與 Cookie:從經營雜貨店開始
淺談 Session 與 Cookie:一起來讀 RFC
深入 Session 與 Cookie:Express、PHP 與 Rails 的實作
session:是一種機制
cookie:是 browser 中可存放東西的地方
第一篇
是一種讓 Request 變成 stateful 的機制。以小明的例子來說,Session 就是一種讓客人之間能互相關聯起來的機制。
在故事裡面:紙條跟手機裡的資訊來比喻,有多種方式可以達成 Session。
在網路世界:也有很多種方式可以來實作 Session,第一種是網址列,第二種就是靠 Cookie。
常見的錯誤認知是一定要有 Cookie 才能實作 Session,這是錯誤的。
底下這 2 種方式都可以增加 session 的安全性
第二篇
SessionID:需要把狀態放在 Server。session information to be a key to a server-side resource
第三篇
Express
參考文章:
HTTP Session 攻擊與防護
我遇過的最難的 Cookie 問題
HTTP Cookies: Standards, Privacy, and Politics
Cookie Security
The text was updated successfully, but these errors were encountered: