LoginSignup
90
52

More than 3 years have passed since last update.

Cookie属性 HttpOnlyとSecure

Posted at

ごっちゃになりがちなのでメモ。

HttpOnly

Cookie属性としてこれを付与するとJavaScriptからアクセスできなくなる。
→ Cookieに格納されたセッションIDをJSで盗もうとするのを防げたりする。
→ Httpでしか送信できないとか、そういう意味ではない。

Secure

これが付与されるとHTTPSの通信の場合のみ送信されるようになる。
→ 常時SSLのサイトでは基本的にこれを使うべき。

90
52
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
90
52