Licão 04 permissions

17
Lesson 4 permissions on a script Learn Security Levels and File permissions /etc/passwd shadow and groups create, modify and delete users and groups Ownership and Permissions Chmod

Transcript of Licão 04 permissions

Page 1: Licão 04 permissions

Lesson 4• permissions on a script

• Learn Security Levels and File permissions

• /etc/passwd shadow and groups

• create, modify and delete users and groups

• Ownership and Permissions

• Chmod

Page 2: Licão 04 permissions

Learn Security Levels and File permissions

Security levels

Page 3: Licão 04 permissions

Security Levels and File permissions

• User information is stored in two files:/etc/passwd/etc/shadow

• Group information is stored in one file:/etc/group

Page 4: Licão 04 permissions

Security Levels and File permissions

/etc/passwdList of user records, one per line, with columns separated by colons.

Format: login:x:userid:groupid:gecos:homedir:shellEx: root:x:0:0:root:/root:/bin/bash

mysql:x:27:27:MySQL Server:/var/lib/mysql:/bin/bash

/etc/shadowSimilar to passwd colon-separated-column list of records:

Format: login:password:password aging fieldsaging fields track dates for password resets, locks, etc

Ex: root:pB8msP1fCbCqc:13904:0:99999:7:::nisburgh:vRoPw6a/jQsp.:14466:0:99999:7:::

/etc/groupsSame colon-separated-column list of records format

Format: groupname:grouppassword:groupid:secondarymembersGroup passwords allow temporary access to a group, rarely used, not set up by default

Ex: daemon:x:2:root,bin,daemonapache:x:48:jack,nisburgh

Page 5: Licão 04 permissions

manage files with management commands

For /etc/passwd shadow and groupsWhile it is possible to edit the three files directly, it’s easier and safer to use:

management commands to create, modify and delete users and groups

useradd, usermod, userdel, groupadd, groupmod, groupdel

Useradd Add a new user to the systemAccepts various arguments to control the settings on the user account. Most common is -g to specify primary group of user, and -G to list secondary group memberships.

Ex: useradd lisauseradd -g clowns -G trouble bartsimpson

Usermod Modify a user’s settings. Ex: usermod -G detention bart

userdel Remove a user from the system.

Main option is -r, which tells userdel to remove the user’s home and spool directories. Ex: userdel moe

Page 6: Licão 04 permissions

Passwords

Passwd Change login password.

• Root can change the password for any user on the system• Root can setup password aging, allowing timed password resets and account

disabling• passwd is preferred way to lock user account

Ex: passwd -l mary

PASSWORD AGING

• To set maximum lifetime for a user’s password: passwd -x days login

• When user’s password has expired, the number of days it can remain expired before disabling the account completely can be set: passwd -i days login

Page 7: Licão 04 permissions

Permissions

Linux supports 3 main types of access on a file:1. read View the contents

2. write Modify the contents and metadata

3. Execute Run the contents

Actually, it’s different for files and directories

Files Directories

Read View the contents List contents

Write Change the contents/metadata Create/delete entries, change metadata

Execute Run the contents Operate with directory as CWD

Combining these permissions allows for the most common access levels:Read only; Read/Write; Execute; etc

Page 8: Licão 04 permissions

Ownership and Permissions

All files are associated with one user and one group (ownership).This creates the foundation for the main security infrastructure in the Linux (Unix).

When a process attempts an operation on a file, the user and group of the process (every process is associated with one user and one group) are compared with the user and group of the file, which determines what level of permissions is granted or denied on the file.

Every file has 3 levels of permissions:

• User• Group• Other

When a process seeks access, the process user is compared to the file user - if they match, the process gets the User permissions. Next Group. If no match, Other level access

All permission information is summarized with 9 characters:rwxrwxrwx

The presence of the letter indicates the permission is granted, a hyphen in it’s place indicates the permission is denied. Read only: r--r--r--

Page 9: Licão 04 permissions

Directory and File Permissions

Page 10: Licão 04 permissions

Groups

Page 11: Licão 04 permissions

chown

Page 12: Licão 04 permissions

chgrp

Page 13: Licão 04 permissions

chmod

Page 14: Licão 04 permissions

chmod

Page 15: Licão 04 permissions

chmod Symbolic codes

Page 16: Licão 04 permissions

chmod octal commands

Page 17: Licão 04 permissions

umask