Security Flashcards

1
Q

TLS

A
  • TLS 1.3 new verion of SSL 2018
  • SSL depecated in 2015

what it does
* authentication
* data encruption
* data integrity

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

SSL vs TLS vs HTTPS

A

SSL: Secure Sockets Layer
TLS: transport layer security
HTTPs: http secure (use tls on top of http)

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

symetric vs asmetric encryption

A

symetric: secert key

asymetric: public/private keys
public key for encrypt
private key for decrypt

example: Rsa

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

CSR:

A

Certificate Signing Request

The CSR contains information about your domain (e.g., Common Name, Organization, etc.) and is used when applying for an SSL certificate from a Certificate Authority (CA).

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

MITM attacks

A

A Man-in-the-Middle (MITM) attack occurs when an attacker intercepts and potentially alters the communication between two parties without their knowledge. The attacker can secretly listen, modify, or even inject new information into the communication

  • unsecured Wi-Fi network at a coffee shop
  • ## using HTTP

Protection Against MITM Attacks:
* Use HTTPS (SSL/TLS)
* Avoid Unsecured Wi-Fi
* Use VPN:
* Enable HSTS: HTTP Strict Transport Security ensures that your browser always uses HTTPS.

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