180 likes | 366 Views
CIS 193A - Lesson2. Authorization & Authentication. Sudo and PAM. Quote of the Day. In ubiquitous computing environments, the computer technology will recede into the background of our lives for its ultimate goal, invisibility. Taekyoung Kwon Dept. of Computer Engineering
E N D
CIS 193A - Lesson2 Authorization & Authentication Sudo and PAM
Quote of the Day In ubiquitous computing environments, the computer technology will recede into the background of our lives for its ultimate goal, invisibility. Taekyoung Kwon Dept. of Computer Engineering Sejong University, Seoul
Focus Question What is the difference between authentication and authorization, and how do PAM and sudo relate to these two concepts?
The Sudo Facility The sudo facility consists of: • the sudo command: /usr/bin/sudo • a configuration file: /etc/sudoers The sudoers file specifies who is able to run what commands as what user on which hosts.
Sudoers Syntax who hosts = [ (as who) ] [ tags ] commands • who::= username | %groupname • hosts::= localhost | hostname | IP address • as who::= username • tags::= NOPASSWD | NOEXEC | NOSETENV • Commands::= command [options] [args] Keyword: ALL represents any possible value:%wheel ALL = (ALL) ALL Aliases may be used to represent any of the above as a list of values
Sudo Examples • Allow user john to run all commands as root on the local machine.john localhost = (root) ALL • Allow the group admins to run the kill command as any member of the users group on any host.%admins ALL = (%users) /bin/kill
Use of the sudo command • Run a command as another user:sudo –u user commandPassword:_ # must supply your password, # not the targeted user. • Run a command as root:sudo commandPassword: # your password, not root’s Note: when running successive sudo commands, you will be prompted for a password only on the first invocation.
PAM Pluggable Authentication Modules
The PAM Facility The PAM facility consists of: • the PAM libraries: /lib/security/pam_*.so • a configuration file: /etc/pam.conf ora configuration directory: /etc/pam.dwith configuration files for each service Other configuration files associated with the libraries occur in the /etc and /etc/security.
PAM File Syntax Type Control PAM Library Parameters Example configuration file: system-auth auth required pam_env.so auth sufficient pam_unix.so nullok auth requisite pam_succeed_if.so uid >= 500 quiet account required pam_unix.so broken_shadow account sufficient pam_succeed_if.so uid < 500 quiet password requisite pam_cracklib.so try_first_pass retry=3 password sufficient pam_unix.so sha512 shadow nullok use_authtok session optional pam_keyinit.so revoke session required pam_limits.so
Common PAM Libraries pam_access.so pam_keyinit.so pam_permit.sopam_ccreds.so pam_krb5.so pam_chroot.so pam_postgresok.so pam_time.so pam_pwhistory.so pam_timestamp.so pam_cracklib.so pam_lastlog.so pam_tty_audit.so pam_debug.so pam_ldap.so pam_rhosts.so pam_umask.so pam_deny.so pam_limits.so pam_rootok.so pam_unix_acct.so pam_echo.so pam_listfile.so pam_rps.so pam_unix_auth.so pam_env.so pam_localuser.so pam_securetty.so pam_exec.so pam_loginuid.so pam_selinux.so pam_mail.so pam_shells.so pam_unix.so pam_mkhomedir.so pam_smb_auth.so pam_userdb.so pam_filter.so pam_motd.so pam_smbpass.so pam_warn.so pam_ftp.so pam_namespace.so pam_stack.so pam_wheel.so pam_group.so pam_nologin.so pam_issue.so pam_passwdqc.so pam_succeed_if.so pam_xauth.so
Focus Question What is the difference between authentication and authorization, and how do PAM and sudo relate to these two concepts? Authentication verifies that you are who you say you are. Once authentication is accomplished, authorization answers what you are allowed to do. PAM performs authentication, sudo handles authorization.
Multi-Factor Authentication • Single factor: • Based upon something you have • Two factor: • Based on something you have and • Something you know • Three factor: • Based on something you have, • Something you know, and • Something you are