1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

セキュリティ学習#2

Posted at

セキュリティの基礎

HTTP

HTTPとは

クライアントとサーバーを繋ぐためのプロトコル
リクエストメッセージとレスポンスメッセージでやり取りする
image.png

リクエストメッセージ

一行目が重要で、リクエストラインと呼ぶ 以下3点で構成される

  1. メソッド (POST)
  2. URL(/login)
  3. プロトコルバージョン (HTTP/1.1)

リクエストラインの下に必要な情報が含まれている

レスポンスメッセージ

大きく3部構成(ステータスライン、ヘッダ、ボディ)

ステータスライン

以下3点で構成される

  • プロトコルバージョン (HTTP/1.1)
  • ステータスコード(200)
  • テキストフレーズ (OK)
ヘッダ

レスポンスの情報が入る

ボディ

HTMLタグなどの実際に出力されるコードが入る

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?