Pearson Quiz 1 t o 5 Weaknesses Flashcards

What I do not know will kill me

1
Q

Ano yung tawag kapag ang hardware at software ay pinag sama-sama mo sa para makapag provide ng load balancing?

A

Clustering

Clustering ang tawag sa hardware at software na pinag sama-sama para mag provide ng load balancing

Clustering is the use of hardware and software to provide load-balancing

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

How do you break down the cipher suite ECDHE-RSA-AES128-GCM-SHA256?

A

ECDHE → Ephemeral Key Exchange (Perfect Forward Secrecy)
RSA → Authentication (Certificate-based)
AES128-GCM → Bulk Encryption (Secure AEAD encryption)
SHA256 → Integrity (Message Authentication in TLS 1.2)

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

Explain and Identifiefy the following Cipher Suite:
ECDHE-RSA-AES256-GCM-SHA384

A

Key Exchange = ECDHE (Perfect Forward Secrecy)
Authentication = RSA
Bulk Encryption = AES-256-GCM
Integrity = SHA-384

Tips to Recognize Cipher Suites Quickly:
✅ If you see “ECDHE” or “DHE”, it has forward secrecy.
✅ If “AES-GCM” is present, it is secure & authenticated encryption.
✅ If “CBC” is present, it’s older and less secure (avoid if possible).
✅ If “RSA” is used for key exchange, forward secrecy is NOT present.
✅ TLS 1.3 ciphers are simpler: They don’t include key exchange/authentication explicitly.

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

Cipher Suite Structure

A
  1. Key Exchange 2. Authentication 3. Bulk Encryption 4. Integrity

e.g.
ECDHE-RSA-AES128-GCM-SHA256

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

Which part of the cipher suite ECDHE-RSA-AES128-GCM-SHA256 is responsible for bulk encryption?

A) ECDHE
B) RSA
C) AES128-GCM
D) SHA256

A

Answer: ✅ C) AES128-GCM

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

In the cipher suite DHE-RSA-AES256-CBC-SHA256, the key exchange method is ______, and the bulk encryption method is ______.

A

Key Exchange: DHE
Bulk Encryption: AES-256-CBC

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

A security team wants to use a cipher suite that provides Perfect Forward Secrecy (PFS) and AEAD encryption. Which of the following is the best choice?

A) RSA-AES256-CBC-SHA1
B) DHE-RSA-AES128-GCM-SHA256
C) ECDHE-RSA-AES256-GCM-SHA384
D) AES256-CBC-SHA

A

Answer: ✅ C) ECDHE-RSA-AES256-GCM-SHA384
(Has ECDHE for PFS and AES-GCM for AEAD)

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