Difference between revisions of "SEC520/labs/Lab 7"
(Created page with "<h1> <span class="mw-headline">Linux System Hardening (part 2)</span></h1> <h2> <span class="mw-headline">Introduction</span></h2> <dl><dd><ul><li>In the previous lab, we lear...") |
|||
Line 38: | Line 38: | ||
</p> | </p> | ||
<h2> <span class="mw-headline">Prerequisites</span></h2> | <h2> <span class="mw-headline">Prerequisites</span></h2> | ||
− | <ul><li> [https:// | + | <ul><li> [https://wiki.cdot.senecacollege.ca/wiki/SEC520/labs/Lab_6 SEC520 Lab 6] |
</li></ul> | </li></ul> | ||
<p><br> | <p><br> | ||
Line 47: | Line 47: | ||
<li>[http://www.yolinux.com/TUTORIALS/LinuxTutorialManagingGroups.html#ACL ACLs]</li>[http://www.yolinux.com/TUTORIALS/LinuxTutorialManagingGroups.html#ACL | <li>[http://www.yolinux.com/TUTORIALS/LinuxTutorialManagingGroups.html#ACL ACLs]</li>[http://www.yolinux.com/TUTORIALS/LinuxTutorialManagingGroups.html#ACL | ||
]<li>[http://hackinglinux.blogspot.ca/2007/05/selinux-tutorial.html SELinux]</li> | ]<li>[http://hackinglinux.blogspot.ca/2007/05/selinux-tutorial.html SELinux]</li> | ||
− | <li>[http://www.syntaxtechnology.com/2009/06/sudo-tutorial/ Sudo]</li> | + | <!--DEAD LINK<li>[http://www.syntaxtechnology.com/2009/06/sudo-tutorial/ Sudo]</li>--> |
<li>[http://cs.senecac.on.ca/%7Efac/ops435/2008_dev/ops435_w11_l1.pdf Cron Jobs]</li> | <li>[http://cs.senecac.on.ca/%7Efac/ops435/2008_dev/ops435_w11_l1.pdf Cron Jobs]</li> | ||
</ul> | </ul> | ||
Line 56: | Line 56: | ||
<ul> | <ul> | ||
<li>[http://cs.senecac.on.ca/%7Efac/sec520/slides/sec520_w4_l1.odp odp] | [http://cs.senecac.on.ca/%7Efac/sec520/slides/sec520_w4_l1.pdf pdf] | [http://cs.senecac.on.ca/%7Efac/sec520/slides/sec520_w4_l1.ppt ppt] (Slides: Linux System Hardening - part 2)</li> | <li>[http://cs.senecac.on.ca/%7Efac/sec520/slides/sec520_w4_l1.odp odp] | [http://cs.senecac.on.ca/%7Efac/sec520/slides/sec520_w4_l1.pdf pdf] | [http://cs.senecac.on.ca/%7Efac/sec520/slides/sec520_w4_l1.ppt ppt] (Slides: Linux System Hardening - part 2)</li> | ||
− | + | <!--DEAD LINK<li>[http://lcweb.senecac.on.ca:2063/0596003919 Linux Security Cookbook (E-book)] (Chapter 5)</li>--> | |
− | + | <!--DEAD LINK<li>[http://lcweb.senecac.on.ca:2063/0131963694?uicode=seneca Linux By Example (E-book)] (Chapter x)</li>--> | |
</ul> | </ul> | ||
Line 212: | Line 212: | ||
<li value="4">Save and exit the visudo editing session. Check and return to editing session if any errors are created.</li> | <li value="4">Save and exit the visudo editing session. Check and return to editing session if any errors are created.</li> | ||
<li>Edit the file <b>/etc/rsyslog.conf</b> and add the following line to the bottom of this file (for logging purposes):<br /><br /><pre style="font-family:courier,monospace;"> | <li>Edit the file <b>/etc/rsyslog.conf</b> and add the following line to the bottom of this file (for logging purposes):<br /><br /><pre style="font-family:courier,monospace;"> | ||
− | + | local1.* /var/adm/sudo.log</pre><br /></li> | |
<li>Save your editing changes.</li> | <li>Save your editing changes.</li> | ||
<li>Switch (su) as the third user (eg. in our demonstration: <b>user3</b>).</li> | <li>Switch (su) as the third user (eg. in our demonstration: <b>user3</b>).</li> | ||
Line 229: | Line 229: | ||
<li value="11">Switch (su) to a different user (other than your third user), and try to issue the <b>sudo /sbin/ifconfig eth0</b> command. What happenned?</li> | <li value="11">Switch (su) to a different user (other than your third user), and try to issue the <b>sudo /sbin/ifconfig eth0</b> command. What happenned?</li> | ||
<li>Switch (su) to the administrator's account, and view the contents of <b>/var/adm/sudo.log</b>. What do you notice?</li> | <li>Switch (su) to the administrator's account, and view the contents of <b>/var/adm/sudo.log</b>. What do you notice?</li> | ||
− | <li>Edit the sudoers file and add the following line (where hostname is your VM machine):<pre style="font-family:courier,monospace;" | + | <li>Edit the sudoers file and add the following line (where hostname is your VM machine):<pre style="font-family:courier,monospace;">USER3 localhost.localdomain= NOPASSWD: /bin/kill, PASSWD: /bin/ls, /usr/bin/lprm |
</pre> | </pre> | ||
<br> | <br> | ||
</li><li>While in edit mode, add <b>USER1</b> as an alias for user1, and add the <b>kill</b> command to the <b>Cmnd_Aliases</b> line for <b>user1</b>. Each line should appear similar to this:<pre style="font-family:courier,monospace;"> | </li><li>While in edit mode, add <b>USER1</b> as an alias for user1, and add the <b>kill</b> command to the <b>Cmnd_Aliases</b> line for <b>user1</b>. Each line should appear similar to this:<pre style="font-family:courier,monospace;"> | ||
− | + | User_Alias USER1=user1 | |
− | USER1 localhost.localdomain= PASSWD: /bin/kill | + | USER1 localhost.localdomain= PASSWD: /bin/kill</pre></li> |
<li>Save changes to the sudoer's file and exit.</li> | <li>Save changes to the sudoer's file and exit.</li> | ||
<li>Switch (su) as the third user and attempt to kill a process. Where you prompted to enter a password? Then switch (su) as the first user (eg. <b>user1</b>) and attempt to kill another process. Where you prompted to enter a password? </li> | <li>Switch (su) as the third user and attempt to kill a process. Where you prompted to enter a password? Then switch (su) as the first user (eg. <b>user1</b>) and attempt to kill another process. Where you prompted to enter a password? </li> |
Revision as of 09:59, 1 February 2018
Contents
Linux System Hardening (part 2)
Introduction
- In the previous lab, we learned how to make our Linux server less vulnerable by setting a grub password, preventing unneccessary services from running, tunnelling with SSH, and using PAM modules for setting authentication rules when running user applications. Although this is useful, vulnerability can exist when running the few essential services.
- In this lab, students will be learning about "Authorization" within the AAA Protocol, to limit the resources or applications that the system users are permitted to access. First, students will use ACLs (Access Control Lists) to further define authorization to groups of users within the organization.
- Students will then learn how to install, configure and run SELinux which provides limitations of which users are entitled to run processes within the server. Students will then learn how to limit regular or "elevated" user access to regular programs or utilities (administrative) by editing the Sudoer's file.
- Finally, students will complete the "lock down" of the computer system by learning how to limit the running of scheduled processes (cron jobs), perform software upgrades, and to turn-off X-windows on a Linux server.
Objectives
- Limit user access to files within defined groups using Access Control Lists.
- Install, configure, and run SELinux which is used to enforce entitled users access to running processes.
- Configure the sudoer's file in order to allow other users access to linux commands that are only considered for administrators.
- Control which user(s) can run cron jobs in order to run commands or programs on a scheduled basis.
Required Materials (Bring to All Labs)
- SATA Hard Disk (in removable disk tray).
- Lab Logbook (Lab5 Reference Sheet) (to make notes and observations).
Prerequisites
Online Tools and References
Course Notes
Performing Lab 7
Task #1: ACLs
In this section, students will learn how to use ACLs (Access Control Lists) to "finely-tune" group access to directories and files, and differentiate between setting permissions via ACL and setting permissions using the chmod command.
INSTRUCTIONS:
- Boot-up your Kali Linux (host) and your Hardened Linux VM on your hard disk pack.
- Log into your user account that has administrative priviledges (this should have been performed during installation process in lab4).
- Open a shell terminal, and create the following directory: ~/share
- Set passthrough permissions for your home directory, and set permissions to allow same group members access and view the contents of the share directory. Use the ls -ld command to confirm the set permissions for these directories.
- Use the groupadd command to create a new group name called project
- Use the usermod command to add the three users (created in lab4) to the group called project. View the contents of the /etc/group file to confirm that the users have been added to the project group.
- Use the touch command to create an empty file in the share directory called ~/share/project.txt
- Use the chgrp command to have the file project.txt belong to the project group. Use the ls -l command to confirm that the project.txt file now belongs to the project group.
- Set permissions for same group members to view and modify contents of the file ~/share/project.txt and confirm that the permissions have been correctly set for that file.
- Switch (i.e. su) to one of the users (added to the project group), and confirm that they can access and modify the file: ~/share/project.txt
- Repeat the above step for the second user (belonging to the project group).
- Why can you allow the first user to both read and modify the project.txt file, but you can't only allow the second user to only read the project.txt file without editing permissions? Answer in your lab log-book.
- Switch (su) back to your administration account.
- Issue the following command: rpm -qi acl to confirm that the acl application has been installed in your system. If it is not present, make certain to install that application.
- In order to use ACLs, you need to edit the </b>/etc/fstab</b> file to mount all disk filesystems with the acl option
(Refer to the following link for an example: Mounting With ACL Option). - Issue the command: mount -o remount /
in order to remount your file system (as opposed to rebooting). - View the Youtube video (or other online resources) on how to use ACLs: Video
- Set same group members for group name project to only view the contents of the file ~/share/project.txt
- Use the setfacl command to allow only one of the users to both view and modify the file ~/share/project.txt
For example, if the username is user1, then issue the command:
setfacl -m u:user1:rw share/project.txt - Use the getfacl to confirm the permissions for the file: ~/share/project.txt
- Switch (su) to your account that you used the setfacl command to provide read/write permissions. Can you make editing changes to project.txt?
- Now switch (su) to another account. Can you make editing changes to project.txt? Why?.
- Record your results in your lab log-book.
- Proceed to Task #2
- Familiarize yourself with the system-config-securitylevel tool
(SELinux tab) and these SELinux commands (and SELinux-modified
commands):
- getenforce, setenforce
- getsebool, setsebool
- chcon
- restorecon
- ls -Z, ps -Z, id
- gnome-system-monitor
- system-config-securitylevel
- Ensure that your SELinux system is in enforcing mode.
- Configure Apache to permit the use of $HOME/public_html directories by editing the httpd.conf file:
- Comment out the UserDir Disable directive.
- Uncomment the UserDir public_html directive.
- Uncomment the directory container for /home/*/public_html and configure it permit the execution of CGI scripts.
- Uncomment the directive add_handler cgi-script .cgi
- Restart Apache. Do not use apachectl -- use the service command.
- Create ~/public_html/index.html
- Attempt to access the content you created in step 5 using a browser. It should fail.
- Review the latest avc messages in /var/log/messages and compare them to the Apache error log. Record your finding in your lab log-book.
- Put SELinux in Permissive mode.
- Attempt to access the content you created in step 5 using a browser. It should succeed. (If not, your httpd.conf file or permissions are incorrect - fix them).
- Put SELinux back into Enforcing mode.
- Using the man page for httpd_selinux, determine what is required to make ~/public_html/index.html accessible while SELinux is in Enforcing mode. Test it and make sure it works.
- Create the following Bash shell script (called test.bash):
#!/bin/bash echo "Content-type: text/plain" echo cal -y
- Test your script through a web browser.
- Create the following testing CGI script (called test.cgi):
#!/bin/bash echo "Content-type: text/plain" echo echo "Attempting to show the contents of ~/.bash_profile:" cat ~/.bash_profile if [ $? -eq 0 ] then echo "Success." else echo "Failure." fi
- Run this script via the web browser in both Permissive and Enforcing modes. Observe the difference in output. What is the reason for the difference?
- Record your findings in your lab log-book.
- Proceed to Task #3
- READ the man page on sudo and visudo. Most modern versions of Linux have sudo default installed.
- Open sudoers using visudo.
- We will be setting up logging information as well as allowing the third user to issue certain administrative commands. With the setup below, this lab is making reference to username: user3 (replace this with the actual username of the third user). Make the following changes to the sudoer's file, adding information that appears in bold:
# sudoers file. # # This file MUST be edited with the 'visudo' command as root. # # See the sudoers man page for the details on how to write a sudoers file. # # Host alias specification Host_Alias MYHOST=localhost # User alias specification <b>User_Alias USER3=user3 # Cmnd alias specification Cmnd_Alias NETWORK=/sbin/ifconfig</b> Note: you NEED the ABSOLUTE path to the command you put in there. # User privilege specification root ALL=(ALL) ALL <b>user3 ALL=NETWORK</b> # Defaults Specification <b>Defaults syslog=local1</b>
- Save and exit the visudo editing session. Check and return to editing session if any errors are created.
- Edit the file /etc/rsyslog.conf and add the following line to the bottom of this file (for logging purposes):
local1.* /var/adm/sudo.log
- Save your editing changes.
- Switch (su) as the third user (eg. in our demonstration: user3).
- Experiment with the sudo capabilities assigned to the third user</b> by issuing the command: sudo /sbin/ifconfig eth0 (You'll have to supply the user password). For the purpose of this lab, the command does not have to work - don't worry about error messages.
- Return to the administrator account.
- Check the /var/adm/sudo.log file. What does it show ?
- Switch (su) to a different user (other than your third user), and try to issue the sudo /sbin/ifconfig eth0 command. What happenned?
- Switch (su) to the administrator's account, and view the contents of /var/adm/sudo.log. What do you notice?
- Edit the sudoers file and add the following line (where hostname is your VM machine):
USER3 localhost.localdomain= NOPASSWD: /bin/kill, PASSWD: /bin/ls, /usr/bin/lprm
- While in edit mode, add USER1 as an alias for user1, and add the kill command to the Cmnd_Aliases line for user1. Each line should appear similar to this:
User_Alias USER1=user1 USER1 localhost.localdomain= PASSWD: /bin/kill
- Save changes to the sudoer's file and exit.
- Switch (su) as the third user and attempt to kill a process. Where you prompted to enter a password? Then switch (su) as the first user (eg. user1) and attempt to kill another process. Where you prompted to enter a password?
- Switch (su) to the third user, and execute the following command: sudo -l. What did this command do?
- Grant vi privileges to the third user. Switch (su) as the third user and issue the command: sudo vi. Press : to go to the last line mode in your vi text editor, and issue the command:
!id - What was the id of the third user and what what sort of implications does this create in terms of system security?
- Record your findings in your lab log-book.
- Proceed to Task #4.
- Switch to the super-user, and issue the following command:
crontab -u user1 -e - Add the following contents into the first user's crontab file:
* * * * * 'uptime >> ~/uptime.txt'
- Save and exit your crontab editing session.
- Edit the /etc/crontab.allow file to include the first user. If the file does not exist, simply create it, or check with the Linux distribution for instructions to use the crontab.allow file.
- Login to the first user and see if your cron job is working.
- Login to the second user (created in lab4) to see if that account can create a cron job. Where you successful? Why?
- Try to list at least 3 types of Bash Shell scripts that a Linux system administrator can limit to specific users. Record your findings in your lab log-book.
- Perform another software update (either graphically or using the yum or apt-get commands). Verify that the software upgrades are up-to-date.
- Switch your Linux server from graphical mode (eg run level 5) to default mode (eg run level 3). Note: The procedure has changed in newer Linux system (using sysd). Refer to the following link to learn how to set your Fedora17 system to text-based mode: Init vs Systemd
- Perform a scan from your Kali Linux (host) machine to hopefully see a more hardened system with less running services.
- Proceed to "Completing The Lab".
- Compare ACLs by demonstrating running services via user1 and user2.
- Verify SELinux is running in Enforcing mode.
- Display contents of sudoer's file (for user1).
- Verification of running crob job.
- Linux system in text-based mode (i.e. run level 3 for your Hardened Linux system).
- Completed Lab 7 notes.
- What does the term ACL stand for?
- Compare and contrast the features of ACLs for Windows (using NTFS) and Linux.
- What is the purpose of ACLs?
- What is the purpose of SELinux.
- List the various modes of SELinux.
- Briefly list the steps to allow the regular user called msaul to run administrative commands.
- Briefly explain how to setup the sudoer's file to have the user ctyler only run the administrative command: visudo
- Briefly list the steps to allow user1 to run a cron job called cleanup.bash
- Write a Linux command to perform a software update.
- Write a Linux command to set the Linux server to text-based mode.
- Why is it recommended to run a Linux server in text-based mode?
</ol>
Answer the Task #1 observations / questions in your lab log book.
Task #2: SELinux
INSTRUCTIONS:
Answer Task #2 observations / questions in your lab log book.
Task #3: Sudo
"Sudo (switchuser/superuser do) allows a system administrator to give
certain users (or groups of users) the ability to run some (or all)
commands as root while logging all commands and arguments. Sudo operates
on a per-command basis, it is not a replacement for the shell."
INSTRUCTIONS:
</ol>
Answer Task #3 observations / questions in your lab log book.
Task #4: Cron Jobs & Turning off XWindows
This last section involves "tweaks" to harden your Linux system from less obvious vulnerabilities. First, you will learn as the adiminstrator
to limit cron jobs (i.e. scheduled tasks) that can be run by users. Finally, you will change from run level 5 (Xwindows) to level 3 (text-based) to make your system less vulnerable to attacks.
INSTRUCTIONS:
Answer Task #4 observations / questions in your lab log book.
Completing the Lab
Arrange evidence for each of these items on your screen, then ask your instructor to review them and sign off on the lab's completion: