Previous Page
Next Page

Key Terms

Review Exercises

11.1. Creating a User and a Role

In this exercise, you'll create a new role named admin1 and a profile called Shutdown. The Shutdown profile will be added to the role. A user account trng1 will be created and have the admin1 role assigned to it. The user will then assume the role and execute a privileged command to shut down the system.

Estimated time: 20 minutes

To create a user and a role, perform the following steps:

1.
Create the role named admin1, as shown here:

roleadd -u 2000 -g 10 -d /export/home/admin1 -m admin1
passwd admin1

You will be prompted to enter the password twice.

2.
Create a profile to allow the user to shut down a system.

Edit the /etc/security/prof_attr file and enter the following line:

Shutdown:::Permit system shutdown:

Save and exit the file.

3.
Add the Shutdown and All profiles to the role as follows:

rolemod -P Shutdown,All admin1

4.
Verify that the changes have been made to the user_attr database:

more /etc/user_attr

5.
Create the user account and assign it access to the admin1 role:

useradd -u 3000 -g 10 -d /export/home/trng1 -m -s /bin/ksh -R admin1\
 trng1

6.
Assign a password to the new user account as follows:

passwd trng1

You will be prompted to enter the password twice.

7.
Verify that the entry has been made to the passwd, shadow, and user_attr files as follows:

more /etc/passwd
more /etc/shadow
more /etc/user_attr

8.
Assign commands to the Shutdown profile:

Edit the /etc/security/exec_attr file and add the following line:

Shutdown:suser:cmd:::/usr/sbin/shutdown:uid=0

Save and exit the file.

9.
Test the new role and user account as follows:

  1. Log in as trng1.

  2. List the roles that are granted to you by typing the following:

    roles

  3. Use the su command to assume the role admin1:

    su admin1

    You will be prompted to enter the password for the role.

  4. List the profiles that are granted to you by typing the following:

    profiles

  5. Shut down the system:

    /usr/sbin/shutdown -i 0 -g 0

Exam Questions

1.

Which of the following commands is used to create a role?

  1. useradd

  1. makerole

  1. roleadd

  1. addrole


2.

In Role-Based Access Control, which file contains details of the user attributes?

  1. /etc/security/prof_attr

  1. /etc/user_attr

  1. /etc/security/user_attr

  1. /etc/shadow


3.

Which two statements about the roleadd command are true? (Choose two.)

  1. roleadd looks similar to the useradd command.

  1. roleadd uses the profile shell (pfsh) as the default shell.

  1. The -A option associates an account with a profile.

  1. An account created with roleadd is the same as a normal login account.


4.

Which component of RBAC associates users and roles with authorizations and profiles?

  1. user_attr

  1. prof_attr

  1. auth_attr

  1. exec_attr


5.

Which component of RBAC defines the privileged operations assigned to a profile?

  1. user_attr

  1. prof_attr

  1. auth_attr

  1. exec_attr


6.

In the execution attributes database, which of the following is not a valid value for the attr field?

  1. euid

  1. uid

  1. egid

  1. suid


7.

After creating an RBAC role, you find that the only commands that can be executed within the role are the privileged commands that you have set up. Ordinary nonprivileged commands are not available. The RBAC setup has a problem. What is the cause of this problem?

  1. The role is not associated with a correct profile.

  1. The access mechanism to the role is not initializing properly.

  1. The role's profile is not associated with the correct commands.

  1. The file identifying the privileged commands has missing entries.

  1. The role's profile is not associated with the correct authorizations.


8.

Which of the following are valid RBAC databases? (Choose three)

  1. /etc/usr_attr

  1. /etc/user_attr

  1. /etc/security/exec_attr

  1. /etc/security/prof_attr


9.

You want to enable a user to administer all user cron tables. This includes amending entries in any user's crontab. Given due care to system security, what should you do to enable the user to carry out this duty?

  1. Give the user the root password.

  1. Set the suid on the crontab command.

  1. Use RBAC to authorize the user to administer cron tables.

  1. Use RBAC to give the user an ID of root when executing the crontab command.

  1. Use the ACL mechanism to give the user RW access to each crontab table.


10.

Which command(s) grant a user access to a role account? Choose all that apply.

  1. roleadd

  1. rolemod

  1. useradd

  1. usermod


11.

Which option to the rolemod command appends an authorization to an exiting list of authorizations?

  1. -A

  1. -P

  1. -a

  1. -o

  1. None


12.

In which files are profiles defined? Choose all that apply.

  1. /etc/security/prof_attr

  1. /etc/user_attr

  1. /etc/security/exec_attr

  1. /etc/security/auth_attr


13.

Which statements are true regarding the following line? Choose all that apply.

Media Restore:suser:cmd:::/usr/lib/fs/ufs/ufsrestore:euid=0

  1. It represents a profile in the exec_attr database.

  1. Any role that has Media Restore as a profile is able to execute the ufsrestore command with an effective UID of root.

  1. It represents a profile in the prof_attr database.

  1. It represents a role definition in the user_attr database.


14.

In RBAC, which of the following is a bundling mechanism for grouping authorizations and commands with special attributes?

  1. Profile

  1. Role

  1. Authorization

  1. Group


Answers to Exam Questions

1.

C. Use the roleadd command to create a role account. For more information, see the "Using RBAC" section.

2.

B. /etc/user_attr contains details of the extended user attributes. For more information, see the "RBAC Components" section.

3.

A, B. The roleadd command looks very similar to the useradd command, but it uses the profile shell as the default shell. For more information, see the "Using RBAC" section.

4.

A. user_attr (extended user attributes database) associates users and roles with authorizations and profiles. For more information, see the "RBAC Components" section.

5.

D. exec_attr (profile attributes database) defines the privileged operations assigned to a profile. For more information, see the "RBAC Components" section.

6.

D. Four valid keys exist: euid, uid, egid, and gid. For more information, see the "RBAC Components" section.

7.

A. If a role is not associated with a correct profile, the only commands that can be executed within the role are the privileged commands that you have set up. Ordinary non-privileged commands are unavailable. For more information, see the "RBAC Components" section.

8.

B, C, D. The three valid RBAC databases are /etc/user_attr, /etc/security/exec_attr, and /etc/security/prof_attr. For more information, see the "RBAC Components" section.

9.

C. To enable a user to administer all user cron tables, configure RBAC to authorize the user to administer cron tables. For more information, see the "Using RBAC" section.

10.

C, D. Use the roleadd command to create a role account. Then, with the usermod command, assign the role to an existing user account using the -R option. If you are creating a new user account, use the useradd command with the R option to assign the role to the new user account. For more information, see the "Using RBAC" section.

11.

E. The rolemod command does not add to the existing authorizations; it replaces any existing authorization setting. For more information, see the "Using RBAC" section.

12.

A, C. /etc/security/prof_attr (rights profile attributes database) defines profiles, lists the profile's assigned authorizations, and identifies the associated help file. /etc/security/exec_attr (profile attributes database) defines the privileged operations assigned to a profile. For more information, see the "RBAC Components" section.

13.

A, B. The following entry in the exec_attr database represents a profile named Media Restore:

Media Restore:suser:cmd:::/usr/lib/fs/ufs/ufsrestore:euid=0

Any role that has Media Restore as a profile can execute the uf srestore command with an effective UID of root. For more information, see the "RBAC Components" section.

14.

A. Execution profiles are bundling mechanisms for grouping authorizations and commands with special attributes. For more information, see the "RBAC Components" section.


Previous Page
Next Page