3.3 — Protecting Data

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

1/77

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 6:00 PM on 9/8/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

78 Terms

1
New cards

Regulated Data

Data subject to external requirements that may specify how it must be stored, protected, or retained.

2
New cards

Trade Secret

Nonpublic business information or processes that provide value to an organization and should remain confidential.

3
New cards

Intellectual Property

Creations or information legally protected through mechanisms such as copyright or trademark and which may sometimes be publicly visible.

4
New cards

Legal Information

Data related to legal matters that may include both public records and private information such as PII.

5
New cards

Financial Information

Sensitive information involving organizational or individual finances and financial transactions.

6
New cards

Human-Readable Data

Data represented in a format a person can directly understand.

7
New cards

Non-Human-Readable Data

Data represented primarily for processing or interpretation by machines.

8
New cards

Barcode Example

A barcode may contain machine-readable bars along with human-readable numbers.

9
New cards

Data Sensitivity

Level of protection required for information based on its importance, privacy, or potential impact if disclosed.

10
New cards

Proprietary Data

Data owned by or unique to an organization.

11
New cards

PII

Personally Identifiable Information. Information that can identify an individual, such as name, date of birth, address, mother's maiden name, or biometrics.

12
New cards

PHI

Protected Health Information. Information involving an individual's health status, health records, or healthcare payment information.

13
New cards

PII vs PHI

PII identifies an individual, while PHI specifically involves identifiable health-related information.

14
New cards

Sensitive Classification

Data requiring protection because unauthorized disclosure could cause harm or violate organizational requirements.

15
New cards

Confidential Classification

Data intended to remain private and accessible only to authorized individuals.

16
New cards

Public or Unclassified Data

Data that does not require the same access restrictions as sensitive or classified information.

17
New cards

Private Classified or Restricted Data

Data with stronger access restrictions because disclosure could cause significant harm or violate requirements.

18
New cards

Critical Data

Data that is especially important to operations and must remain available.

19
New cards

Data at Rest

Data stored on media such as drives, databases, or other storage systems.

20
New cards

Protecting Data at Rest

Use controls such as encryption and permissions to protect stored information.

21
New cards

Data in Transit

Data actively moving across a network. Also called data in motion.

22
New cards

Protecting Data in Transit

Use controls such as firewalls, IPS, TLS, VPNs, and IPsec to protect moving data.

23
New cards

Data in Use

Data actively being processed by a CPU or stored temporarily in memory.

24
New cards

Data in Use Risk

Data in memory may need to be decrypted for processing, making it an attractive target for attackers.

25
New cards

Three Data States

Data at rest is stored, data in transit is moving, and data in use is actively being processed.

26
New cards

Target Breach Data-in-Use Example

The source uses the 2013 Target breach as an example where point-of-sale malware captured payment card information from memory.

27
New cards

Data State Protection Lesson

Protecting data at rest and in transit is not sufficient if attackers can access sensitive information while it is being processed.

28
New cards

Data Sovereignty

Data stored in a country is subject to that country's laws and regulations.

29
New cards

GDPR

Regulation mentioned in the source in connection with geographic and data sovereignty considerations.

30
New cards

Geographic Restrictions

Security policies that make decisions based on the physical location of data or users.

31
New cards

IP-Based Location

An IP subnet can sometimes identify a user's location, especially on known internal private networks, but is less reliable for mobile and wireless devices.

32
New cards

Geolocation

Determining the physical location of a device or user using information such as GPS, wireless networks, or network information.

33
New cards

GPS Geolocation

Uses Global Positioning System information to determine physical location.

34
New cards

802.11 Geolocation

Can compare visible wireless SSIDs with databases of known wireless networks to estimate a mobile device's location.

35
New cards

Geofencing

Making access-control decisions based on geographic location.

36
New cards

Geolocation vs Geofencing

Geolocation determines where a user or device is, while geofencing uses that location to allow or deny access.

37
New cards

Geofencing Example

An organization may allow access to sensitive data only while a user is physically inside corporate facilities.

38
New cards

Protecting Data Everywhere

Data may exist on storage devices, mobile systems, networks, CPU, or memory and should be protected regardless of its current location.

39
New cards

Encryption

Transforms readable plaintext into unreadable ciphertext using cryptographic methods.

40
New cards

Plaintext

Original clear and readable data before encryption.

41
New cards

Ciphertext

Data after encryption that should be unreadable without the proper decryption process and key.

42
New cards

Decryption

Transforms ciphertext back into readable plaintext using the appropriate key and process.

43
New cards

Confusion

Cryptographic characteristic described in the source where encrypted output appears dramatically different from the original plaintext.

44
New cards

PGP

Encryption technology used in the source example to demonstrate transforming the message Hello, world into ciphertext.

45
New cards

Hashing

Creates a fixed representation of data called a hash, message digest, or fingerprint and is not intended to recreate the original plaintext.

46
New cards

Message Digest

Another term for a hash value representing the contents of data.

47
New cards

Digital Fingerprint

Another way to describe a hash because it provides a compact representation of data.

48
New cards

Hashing for Passwords

Passwords can be represented by hashes so the original plaintext password does not need to be directly stored.

49
New cards

Hashing for File Integrity

A known file hash can be compared with a downloaded file's hash to determine whether the file has changed.

50
New cards

Hashing and Digital Signatures

Hashing can be combined with public key cryptography to support digital signatures, sender authentication, and integrity verification.

51
New cards

Collision

Occurs when two different inputs generate the same hash value.

52
New cards

Hash Collision Risk

Algorithms that are weak and produce collisions too easily may need to be retired.

53
New cards

SHA-256

Hashing algorithm that produces a 256-bit output represented as 64 hexadecimal characters.

54
New cards

Avalanche-Like Hash Behavior

A very small change to the input, such as changing punctuation, produces a dramatically different hash output in the source example.

55
New cards

Encryption vs Hashing

Encryption produces ciphertext that can be decrypted with the proper key, while hashing creates a one-way representation not intended to recreate the original data.

56
New cards

Obfuscation

Transforms understandable information into a form that is difficult for humans to recognize while preserving its function.

57
New cards

Code Obfuscation

Developers may make source code difficult to understand while allowing it to continue functioning normally.

58
New cards

Malicious Obfuscation

Attackers may obfuscate malicious scripts or code to make them harder for people and security tools to recognize.

59
New cards

Obfuscation Example

The source converts simple PHP code that prints Hello, world into difficult-to-read PHP that still produces the same output.

60
New cards

Data Masking

Hides portions of sensitive information so unnecessary details are not exposed.

61
New cards

Data Masking Example

A payment receipt may replace most digits of a credit card number with asterisks while displaying only the final four digits.

62
New cards

Masking Methods

Data masking may use techniques such as shuffling, encryption, or replacing characters with asterisks.

63
New cards

Tokenization

Replaces sensitive information with a different token that represents the original information without exposing it.

64
New cards

Tokenization Examples

Social Security numbers and payment card information can be replaced with tokens.

65
New cards

Mobile Payment Tokenization

A mobile device can use a temporary payment token instead of transmitting the original credit card number during a transaction.

66
New cards

Token Replay Protection

A temporary or one-time payment token cannot simply be captured and successfully reused after it has already been used.

67
New cards

Tokenization Relationship

The token and original sensitive value are different values and the original value cannot be derived directly from the token.

68
New cards

Tokenization and Encryption

The source notes that encryption or hashing is not required to create the relationship between the original value and its token.

69
New cards

Tokenization Registration Process

Card details are sent to a remote token service, the service provides tokens to the mobile device, and those tokens can later represent the card.

70
New cards

Tokenized Payment Process

The device sends a token through NFC, the store sends it for validation, and the token service validates the token.

71
New cards

Encryption vs Hashing vs Masking vs Tokenization

Encryption makes data unreadable and reversible with a key, hashing creates a one-way fingerprint, masking hides part of the original value, and tokenization substitutes a different value.

72
New cards

Obfuscation vs Encryption

Obfuscation makes information difficult for humans to understand while retaining its function, while encryption transforms plaintext into ciphertext that requires proper decryption.

73
New cards

Data Segmentation

Separates information into smaller pieces or different databases or locations rather than storing everything together.

74
New cards

Data Segmentation Benefit

An attacker may need to compromise multiple systems to obtain all information, and different datasets can receive different security levels.

75
New cards

Data Segmentation Example

A database containing only names may use different protections from databases containing healthcare or financial information.

76
New cards

Permission Restrictions

Limit what authenticated users can access or perform based on account rights, groups, and file permissions.

77
New cards

Authentication Before Permissions

Begin with secure authentication and appropriate password policies or additional factors before applying authorization and permission restrictions.

78
New cards

Authentication vs Permissions

Authentication verifies the user's identity, while permissions determine which data or resources that authenticated user can access.