Lecture 9 Flashcards

1
Q

What is MAC?

A

Mandatory Access Control - access based on classification levels.

MAC is a security model that restricts the ability to access or manipulate resources based on predefined policies.

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

What does ‘least privilege’ mean?

A

Users should have the minimum access needed to do their job.

This principle helps to minimize the potential damage from accidents or malicious actions.

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

What is need-to-know?

A

Access only to information necessary for one’s role.

This principle ensures that users only access the data essential for their functions.

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

What is separation of duties?

A

Dividing responsibilities to reduce risk of abuse.

This practice helps prevent fraud and errors by ensuring that no single individual has control over all aspects of a process.

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

What is authentication?

A

Verifying identity.

This is a critical step in access control to ensure that users are who they claim to be.

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

What is authorization?

A

Determining what an authenticated user is allowed to do.

Authorization follows authentication and dictates user permissions.

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

What is accountability?

A

Being able to trace actions back to a user.

Accountability is crucial for security and compliance, allowing organizations to track user activities.

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

Why do we log access?

A

To monitor user actions and detect misuse.

Logging is an essential practice for auditing and enhancing security measures.

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

What access permission is given to the group for the resource BurpSuiteCommunity?

“drwxr-xr-x 5 kali kali 4096 Jul 30 2023 BurpSuiteCommunity”

A

Read and Execute

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

What is the name of the owner of the resource afile-example.txt?

“-rwxr-xr-x 5 kali root 4096 Feb 17 2023 afile-example.txt”

A

kali

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

What is the UNIX command to change the name of the owner of the resource afile-example.txt to
“da222e”

A

sudo chown da222e afile-example.txt

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