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
Automate installation of applications 
Batch, powershell or shell in Linux
26
Automate backups
Self explanatory
27
Automate gathering info or data
Use scripts to be able to gather information or data from various systems across your network 
28
Automate updates 
Operating systems Device drivers Applications
29
3 Scripting considerations 
Introduce malware Changing system settings Cause crashes
30
Boolean
Data with only two possible values True or false 
31
Pseudocode 
Made up coding language 
32
Integer
Can only store a whole number
33
Float / decimal /real number
Variable that stores a decimal number 
34
Character
Can only store ASCII character 
35
String
Can store multiple characters
36
Constant
Cannot be changed inside the program once defined 
37
Loop types
For loop (for a certain number) While loop (while something is happening  Do loop (only stops when a condition is met)
38
While loop checks when?
Before its run
39
Do loop runs when?
After the loop is run at least once