Policy And Privacy Concepts Flashcards

1
Q

Incident response

A

A set of procedures an investigator follows when examining a security incident

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

Chain of custody

A

Documents everyone who come in contract with the evidence

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

Copy of drive (data integrity, and preservation)

A

Copy every single bit of information, not just the files
Bit-for-bit copy
Byte-for-byte copy
Use hashes for integrity

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

Document the findings

A

For internal use, legal proceedings, etc
Summary of what happened
Detail of data acquisition
Analysis of data
Conclusions 

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

Valid license can be…

A

Per-seat (specific users only)
Concurrent (any 10 people can use it)

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

Non-expired licenses

A

Subscription based For a duration

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

Personal licenses

A

Usually perpetual
For a single user or device

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

Corporate use license

A

Per seat / site license
Annual renewal

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

Free and open source software
(FOSS)

A

Freely available

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

Closed source software

A

Source code is private

Example:
What you buy from Microsoft

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

End user licensing agreement
(EULA)

A

Determines how the software can be used

Terms of service

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

Payment card industry
data security standard 
(PCI DSS)

A

A standard for protecting credit cards

How places where you use your card keep your info safe

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

Personal government Issued information

A

Used for government services and documentation

Social Security number, drivers license etc

personally identifiable information PII

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

Protected health information
PHI 

A

Health information is private
HIPAA

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

Data retention requirements

A

Keep files that change frequently for version control

Recover from virus infection

Legal requirements for data retention 

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

.bat (Batch file)

A

Windows inside of command prompt

17
Q

.ps1 (PowerShell)

A

(Automates the OS)
Used inside of windows powershell
Uses cmdlets (Command-lets)

System administration
Active Directory

18
Q

.vbs Visual Basic Script

A

(Automates applications)
General purpose
Windows desktop
Inside Windows applications

19
Q

.sh Shell Script

A

Unix / Linux shell
Command line

20
Q

.js Java Script

A

Scripting for web browsers

21
Q

.py Python

A

Any OS command line

22
Q

Basic automation

A

Automate task
Scripts are fast

23
Q

Automate restarting machines

A

Application updates
Security patches
Troubleshooting

24
Q

Automate remapping network drives 

A

Can be done with .bat or .ps1

25
Q

Automate installation of applications

A

Batch, powershell or shell in Linux

26
Q

Automate backups

A

Self explanatory

27
Q

Automate gathering info or data

A

Use scripts to be able to gather information or data from various systems across your network 

28
Q

Automate updates 

A

Operating systems
Device drivers
Applications

29
Q

3 Scripting considerations 

A

Introduce malware
Changing system settings
Cause crashes

30
Q

Boolean

A

Data with only two possible values
True or false 

31
Q

Pseudocode 

A

Made up coding language 

32
Q

Integer

A

Can only store a whole number

33
Q

Float / decimal /real number

A

Variable that stores a decimal number 

34
Q

Character

A

Can only store ASCII character 

35
Q

String

A

Can store multiple characters

36
Q

Constant

A

Cannot be changed inside the program once defined 

37
Q

Loop types

A

For loop (for a certain number)

While loop (while something is happening 

Do loop (only stops when a condition is met)

38
Q

While loop checks when?

A

Before its run

39
Q

Do loop runs when?

A

After the loop is run at least once