Domain 1

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/45

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 12:17 AM on 6/19/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

46 Terms

1
New cards

CIA

Confidentiality, Integrity, Availability — the three goals of all security: keep secrets, keep data accurate, keep it accessible.

2
New cards

AAA

Authentication, Authorization, Accounting — prove who you are, get permission, then get logged doing it.

3
New cards

NIST

National Institute of Standards and Technology — the U.S. agency that writes the security frameworks everyone references.

4
New cards

GDPR

General Data Protection Regulation — the EU privacy law that fines companies for mishandling personal data.

5
New cards

PII

Personally Identifiable Information — data that points to a specific human (name, SSN, address).

6
New cards

PHI

Protected Health Information — medical data, the stuff HIPAA guards.

7
New cards

IAM

Identity and Access Management — the whole system for who you are and what you're allowed to touch.

8
New cards

MFA

Multi-Factor Authentication — proving identity with two+ types of evidence (password + phone code).

9
New cards

SSO

Single Sign-On — log in once, get access to many apps without re-entering credentials.

10
New cards

PKI

Public Key Infrastructure — the framework of keys and certificates that makes encryption and trust work.

11
New cards

CA

Certificate Authority — the trusted issuer that vouches for a website's identity (signs its certificate).

12
New cards

PAM

Privileged Access Management — tightly controls and monitors the powerful admin accounts.

13
New cards

ACL

Access Control List — a rulebook saying who/what can access a resource.

14
New cards

RBAC

Role-Based Access Control — permissions come from your job role, not from you personally.

15
New cards

ABAC

Attribute-Based Access Control — access decided by attributes (department, time, location), more flexible than roles.

16
New cards

MAC (access)

Mandatory Access Control — the system enforces access by labels/clearance, users can't override (think military).

17
New cards

DAC

Discretionary Access Control — the owner of a resource decides who gets in.

18
New cards

CRL

Certificate Revocation List — the 'do not trust' list of certificates that were cancelled early.

19
New cards

OCSP

Online Certificate Status Protocol — a faster, real-time way to check if one certificate is still valid.

20
New cards

TPM

Trusted Platform Module — a chip on the motherboard that stores keys securely (used for disk encryption).

21
New cards

HSM

Hardware Security Module — a dedicated device for generating and guarding cryptographic keys at scale.

22
New cards

FRR

False Rejection Rate — how often biometrics wrongly reject a legit user (annoying).

23
New cards

FAR

False Acceptance Rate — how often biometrics wrongly accept an imposter (dangerous).

24
New cards

CER / EER

Crossover/Equal Error Rate — the point where FRR and FAR are EQUAL; the single BEST biometric accuracy measure because it balances both error types. 'Best indication of accuracy' → lowest CER.

25
New cards

CRC

Cyclic Redundancy Check — a math check for accidental data errors (integrity, not security).

26
New cards

MAC vs DAC vs RBAC vs ABAC

MAC: system enforces via labels/clearance, users can't override. DAC: resource owner decides. RBAC: permissions tied to job role. ABAC: access by attributes (dept, time, location).

27
New cards

Authentication vs Authorization vs Accounting

Authentication proves who you are; authorization decides what you can do; accounting logs what you did. They happen in sequence.

28
New cards

Identification vs Authentication

Identification is making a claim (entering a username); authentication is proving it (password/token). Username identifies; password authenticates.

29
New cards

Control CATEGORIES vs TYPES

Categories (by nature): technical, managerial, operational, physical. Types (by function): preventive, deterrent, detective, corrective, compensating, directive.

30
New cards

Deterrent vs Preventive

Deterrent discourages an attacker ('Beware of Dog' sign) — works on the mind. Preventive actually stops them (locked gate) — works regardless.

31
New cards

Compensating vs Corrective

Compensating is an alternative control when the primary isn't feasible (extra monitoring because you can't patch). Corrective fixes/restores after an incident (restore from backup). Substitute vs repair.

32
New cards

Encryption vs Hashing vs Obfuscation

Encryption is reversible with a key (confidentiality). Hashing is one-way/irreversible (integrity). Obfuscation just makes things harder to read — not real protection.

33
New cards

Digital Signature vs Digital Certificate

Signature proves sender identity + that data wasn't altered (sender's private key). Certificate binds a public key to an identity, vouched for by a CA.

34
New cards

Non-repudiation vs Authentication

Authentication proves identity at login. Non-repudiation produces proof a specific person did something so they can't later deny it (digital signatures provide this).

35
New cards

Key Stretching vs Salting

Salting adds random data so identical passwords hash differently (defeats rainbow tables). Key stretching deliberately slows hashing to make brute force expensive.

36
New cards

Steganography vs Encryption

Encryption hides the meaning of a message. Steganography hides the existence of the message (data tucked inside an image).

37
New cards

CRL vs OCSP

Both check cert revocation. CRL is a downloaded list (large/stale) — the phone book. OCSP is a real-time query for one cert — calling to ask.

38
New cards

Certificate stapling (quickest validity check)

Server attaches a recent, pre-verified OCSP response to its cert during the handshake, so the browser doesn't make a separate CA call. Fastest because the proof arrives bundled with the cert.

39
New cards

Self-Encrypting Drive (SED) vs TPM

TPM stores keys, but software (BitLocker) does the encrypting — involves the user/OS. SED does encryption in hardware on the drive itself, automatically, zero user involvement. 'Remove responsibility from the user' → SED.

40
New cards

Asymmetric vs Symmetric — which algorithms

Asymmetric (key PAIR, public+private): RSA, ECC, DSA, Diffie-Hellman. Symmetric (ONE shared key): AES, DES, 3DES, RC4, Blowfish. Hook: RSA/ECC are the public/private 'fancy' ones; AES/DES are fast bulk-encryption workhorses.

41
New cards

THE asymmetric rule

Each person has a key PAIR: public (everyone sees) + private (only you). Rule: whatever ONE key does, only the OTHER undoes. Sign with private → verify with public. Encrypt with their public → only their private opens it.

42
New cards

Which key signs? Which key encrypts?

SIGN with YOUR PRIVATE key (only you have it → proves it's you; anyone verifies with your public). ENCRYPT for someone with THEIR PUBLIC key (only their private can open it). Signing = the key only you possess.

43
New cards

Symmetric key formula n(n-1)/2

Symmetric needs a unique shared key per PAIR of users. 10 users → 10×9/2 = 45. Halve because each key is shared between 2 people. This explosion is the main argument FOR asymmetric crypto.

44
New cards

Digital signature vs Hashing

Hashing alone = integrity (unaltered) but NOT who sent it. Digital signature = a hash encrypted with the signer's private key = integrity PLUS identity/origin. 'Unaltered AND from a trusted source' → signature, never hashing alone.

45
New cards

Integrity measurement vs Version control

Integrity measurement = compare a system's CURRENT state to a known-good BASELINE / master image to detect changes ('compared to the master image'). Version control = tracks revisions of code/files over time (Git). Baseline comparison vs revision history.

46
New cards

OCSP vs CSR

OCSP = real-time revocation CHECKING (is this cert still valid?). CSR = Certificate Signing Request — what you send to a CA to GET a cert issued. Revocation check → OCSP.