A system requires administrators to be logged in as the "root" in order to make administrator changes. Which of the following controls BEST mitigates the risk associated with this scenario?
A. Require that all administrators keep a log book of times and justification for accessing root
B. Encrypt all users home directories using file-level encryption
C. Implement a more restrictive password rotation policy for the shared root account
D. Force administrator to log in with individual accounts and switch to root
E. Add the administrator to the local group
Answer: D. Force administrator to log in with individual accounts and switch to root
You might also like to view...
To create a 3-D object, you first produce a line drawing called a ____.
A. frame B. line draw C. wireframe D. blueprint
Show the total enrollment for course 122 in a column named TOTAL ENROLLED. (1 row)
What will be an ideal response?
A(n) _________________________ is information that exists on a physical medium such as paper.
Fill in the blank(s) with the appropriate word(s).
Which of the following statements is false?
a) In any class that does not explicitly declare a constructor, the compiler provides a public default constructor (which always has no parameters). b) When a class has only the default constructor, the class’s instance variables are initialized to their default values: 0 for numeric simple types, false for simple type bool and null for all other types. c) If you declare one or more constructors for a class, the compiler will not create a default constructor for that class. d) If the compiler does not create a default constructor for an Account class, you will not be able to create an Account object with the expression new Account().