HTTP Flashcards

1
Q

What is HTTP?

A

The Hypertext Transfer Protocol (HTTP) is the primary protocol for transmission of data across the Internet. It is a method for encoding and transferring data between a client (such as a web browser) and a web server.

HTTP follows a request-response paradigm in which the client makes a request and the server issues a response.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How are request and responses being sent during HTTP.

A

When request and responses are being sent, they use TCP/IP to reduce and transport the data in small packets of binary sequences of ones and zeros. These packets are physically sent through electric wires, fibre optic cables and wireless networks.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is TCP/IP?

A

TCP/IP (Transmission Control Protocol/Internet Protocol) is a suite of communications protocols.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is an HTTP header?

A

An HTTP header is a field of an HTTP request or response that passes additional context and metadata about the request or response. For example, a request message can use headers to indicate it’s preferred media formats, while a response can use headers to indicate the media format of the returned body.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is a request header?

A

A request header is an HTTP header that can be used in an HTTP request to provide information about the request context, so that the server can tailor the response.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are HTTP Fetch Metadata Request Headers and why are they used?

A

Fetch metadata request headers provide information about the context from which the request originated.

This allows a server to make decisions about whether a request should be allowed based on where the request came from and how the resource will be used

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is an HTTP Response header?

A

A response header is an HTTP header used to give a more detailed context of the response.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is an HTTP Security Header?

A

HTTP security headers are a subset of HTTP headers that is specific to security. Security headers provide an extra layer of security by restricting behaviours permitted by browsers and servers once a web application is running.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What does HTTPS do?

A

HTTPS encrypts and decrypts user HTTP requests as well as the HTTP responses (e.g., web pages) that are returned by a web server. HTTPS protects against sniffing and man-in-the-middle (MITM) attacks.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the Transport Security Layer used for?

A

TLS can be used to encrypt other communications such as email, messaging, and voice over IP (VoIP).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What are the three main properties provided by TLS?

A

Encryption, Integrity and Authentication.

  • Encryption: hides the data being transferred from third parties.
  • Integrity: verifies that the data has not been forged or tampered with.
  • Authentication: ensures that the parties exchanging information are who they claim to be.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What happens during a TLS handshake?

A
  • Specify which version of TLS (TLS 1.0, 1.2, 1.3, etc.) they will use.
  • Decide on which cipher suites (encryption methods) they will use.
  • Authenticate the identity of the server using the server’s TLS certificate.
  • Generate session keys for encrypting messages between them after the handshake is complete.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What types of digital signatures are there?

A

Certified Signatures:
* Adding a certifying signature to a PDF document indicates that you are the author of the document and want to secure the document against tampering.

Approval Signatures
* Approval signatures on a document can be used in an organisation’s business workflow by helping to optimise approval procedures.

Visible Digital Signatures:
* These allow a single user or multiple users to digitally sign a single document.

Invisible Digital Signatures:
* Documents with invisible digital signatures carry a visual indication of a blue ribbon in the task bar.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly