6. Operating System Security Issues Flashcards

(5 cards)

1
Q

What is role based access control?

A

RBAC limits users access based on roles and privileges. It can implement both DAC and MAC

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

What are advanced file attributes?

A

Advanced file attributes includes the setuid bit (allows an executable to run with the owners privelege, can be a security hole if the owner is root), the setgid bit (runs with group owner’s privilege or makes new files inherit parent makes new files inherit parent directory’s group)
and the sticky bit (restricts file deletion in directories to the owner or super user)

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

What is the least privilege principle?

A

Users and programs should only have the minimum privileges necessary to perform their tasks.
- Using sudo instead of logging in directly as root is an example.

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

What should be done with services not needed (service management)?

A

services not needed by the system or users should be removed as they represent potential attack vectors
- use tools like nmap to identify open ports and running services.

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

What are Daemons?

A

Background processes running independently of terminals, reporting errors via log files
- Can be started directly or via super servers

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