LOGBOOK

HELP

Quiz Entry - updated: 2026.07.14

What are the HTTP message types and what is the difference between HTTP and HTTPS?

GET requests data, POST and PUT upload data to the server; HTTP (port 80) sends everything in clear text, while HTTPS (port 443) encrypts and authenticates it.

HTTP Message Types:

HTTP methods GET, POST, PUT

* GET pulls data; POST and PUT push data up to the server. *

Method Purpose
GET Client requests data from web server (e.g., request HTML pages)
POST Uploads data files to the web server (e.g., form data)
PUT Uploads resources or content to the web server (e.g., images)

HTTP vs HTTPS:

Feature HTTP HTTPS
Port 80 443
Security Not secure Encrypted
Use case Non-sensitive data Sensitive data (login, banking)

Important: HTTP is not a secure protocol. For secure communications sent across the internet, HTTPS should be used.

HTTPS uses encryption and authentication to secure communication between browser and server.

Go deeper:

From Quiz: NETW1 / Application Layer | Updated: Jul 14, 2026