Lab 12 mnjk

From ITCwiki
Jump to navigation Jump to search

Introduction

In this lab you will learn about several Linux utilities which can be used for monitoring Linux and other systems for security and service uptime purposes.

In this lab you will perform the following tasks:

  • Monitor connections with netstat
  • Scan for open ports using nmap
  • Monitor services with zabbix

You will be introduced to the following commands:

Lab Procedure

Prerequisites

  1. Open an SSH console to your Linux system using the PuTTY software, login with your standard user account
  2. The IP address of a partner's system which you have permission to portscan

Monitoring connections with netstat

Video Tutorial - Monitoring Connections with Netstat
One common activity you would want to do when evaluating the security of a system is to find out what ports the system is accepting connections on. For this reason most operating systems have some kind of utility to display active network connections and open ports, Linux is no exception. The netstat utility can show you currently active network connections as well as open ports on your local system. Take a look at the man page for the netstat command. Specifically, figure out what the -n -a -t -p and -u options do.

  1. Run the netstat command on your system and observe the output.
  2. sudo netstat -natup
    • Try to identify what the purpose of each open port on your system is. There are many online guides to common uses for ports.
  3. Use the sudo ps aux command (along with grep) to match the PID (process ID) numbers of open ports shown in netstat -natup with specific processes on your system.
  4. Connect to the IP address or domain name of your system through your web browser and re-run the netstat -natup command to see the TCP session established by your browser to download the website.
    • You'll find that there are a number of ports open on your system. Some of these we have opened to provide a specific service such as SMTP, DNS, Webserver, etc. but some such as the sunrpc port are open simply by default on a fresh install. There are a number of different strategies you can use to secure your system including disabling a service, binding it to an internal-only IP address, or blocking access with a firewall rule. If your firewall is setup with an implicit (or explicit) reject any rule at the bottom of the input chain and you have not specifically opened a port it should not be accessible from other systems. How can we test that though? The netstat utility is useful at making a list of ports somehow open on the system but it does not show us how those ports react if someone outside actually tries to connect.

Scanning ports using nmap

Video Tutorial - Scanning Ports with nmap
The nmap Network Mapper utility is a very powerful security scanning utility available on Linux. While netstat uses information from the Linux kernel about what ports and connections are in use by what processes nmap actively probes and tests ports on your system or another system to determine whether the port is open or not as well as additional information about the port in some cases. Unlike netstat, nmap is not part of the default Debian installation so you will need to install the nmap package before proceeding. nmap is complex and powerful. Entire books and extensive documentation are available which you may want to reference but we'll only be exploring some of the more basic features in this introduction.

NOTE: Before we begin this section of the lab it is important to remember that scanning a system is often seen as an attack against the system and should not be done unless you are the administrator of both the system that you are scanning from and the system you are scanning or have the explicit permission of the system administrator of those systems! In some areas people have been legally charged and prosecuted for scanning of systems which they are not authorized to do. You have been warned!
  1. Make sure nmap is installed
  2. sudo apt install nmap
  3. nmap provides a system on the Internet which they allow you to scan for testing purposes so let's try a verbose scan which gives additional diagnostic detail.
  4. nmap -v scanme.nmap.org
    • Review the output and then run the same command without the -v verbose option and compare the output you receive.
      When scanning your own system there are a few different ways to go about it. You could either scan the localhost address 127.0.0.1 or the actual outside IP address of your system. You could also setup a separate system or VM and do the scanning from that system. In each case you might see somewhat different results, can you guess why?
    • The answer is related to how you have firewall rules setup and what addresses you have services bound to. For example by default on Debian systems the mySQL/MariaDB server daemon only listens for connections on the localhost address (127.0.0.1) and not on outside interfaces. Try running the nmap 127.0.0.1 command and then compare output with the nmap <your outside ip address here> command. Do you see some network services listening only on the localhost address. These services are not accessible from outside your computer even though the ports are open and you would see them as open with netstat. This shows us some of the additional value of using nmap.
  5. The most realistic use of nmap though is to scan like an attacker would using a system outside of the one you're testing. Use nmap to scan a partner's IP address in the class and take a look at some of the nmap documentation to try a few different types scans on that system. If you would like you can also try scanning the entire ITC-2480 subnet (172.17.50.0/24) if you want to try some subnet scanning capabilities.
    • Remember that in our case these systems are secure from the outside world because we have an upstream firewall which you have bypassed by connecting to our VPN and these systems are using unroutable private IPv4 addresses.
  6. nmap also supports scanning IPv6 addresses. Note that a running service is not necessarily listening on both IPv4 and IPv6 addresses just because you have them both active on your machine. Figure out how to scan IPv6 addresses with nmap and try scanning both an IPv4 and IPv6 address of your machine and compare the results. Use the same type of address (i.e. both IPv4 and Ipv6 addresses should be the localhost addresses or should both be outside addresses) Are the same services open on both IPv4 and IPv6 on your system?

Monitoring Services and Graphing System Statistics with Zabbix

Video Tutorial - Monitoring with Zabbix
In this section we will be following the instruction on how to install zabbix using these instructions on the Zabbix site.

  1. Go to the instructions link above and scroll down to part 2. Start by installing the zabbix repository.
  2. wget https://repo.zabbix.com/zabbix/5.0/debian/pool/main/z/zabbix-release/zabbix-release_5.0-1+buster_all.deb
    dpkg -i zabbix-release_5.0-1+buster_all.deb
    apt update
  3. Install Zabbix server, frontend, agent
  4. apt install zabbix-server-mysql zabbix-frontend-php zabbix-agent
  5. Create a database, a user, and schema following the instructions on the same website.
    NOTE: These instructions use the MySQL/MariaDB command line, if you prefer you can create the same database, user, and schema using the Webmin software but you'll have to translate the command line instructions into the actions required in Webmin.
    mysql -uroot -p
    create database zabbix character set utf8 collate utf8_bin;
    create user zabbix@localhost identified by 'password';
    • Replace password with a password you want to use. (Command needs the quotes so don't remove them).
    grant all privileges on zabbix.* to zabbix@localhost;
    quit;
  6. On Zabbix server host import initial schema and data. You will be prompted to enter your newly created password used when setting up the mysql database.
  7. zcat /usr/share/doc/zabbix-server-mysql*/create.sql.gz | mysql -uzabbix -p zabbix
  8. Edit the server configuration file ( /etc/zabbix/zabbix_server.conf ) to include the correct database password used when you setup the database above. ( DBPassword=<password> )
    DBPassword.png
  9. Edit the server configuration file ( /etc/zabbix/apache.conf ) to include the correct timezone. A list of valid PHP timezones can be found here. We will be using America/Chicago.
  10. Apache timezone.png
  11. Restart the server. Then set it to auto start on startup:
  12. systemctl restart zabbix-server zabbix-agent apache2
    systemctl enable zabbix-server zabbix-agent apache2
  13. Access the Zabbix web application at http://yourserver/zabbix/ and complete the setup wizard. Detailed instructions for completing the setup wizard can be found here on the Zabbix site.
    • At the end of the setup wizard you may need to download a zabbix.conf.php and save it to /etc/zabbix/zabbix.conf.php on your system.
  14. Login to http://yourserver/zabbix/ (where yourserver is the IP address or DNS name for your system) with the username and password found on the Zabbix site login instructions.
  15. Enable monitoring zabbix.png
      The default superuser credentials are user name Admin with password zabbix.
  16. Enable monitoring of your Zabbix server host (Configuration -> Hosts)
  17. Enable monitoring zabbix.png
    NOTE: The Zabbix manual may be helpful in completing these monitoring setup tasks.
    • Add the templates to the host appropriate for the services we are running on the server (HTTP, IMAP, MySQL, SMTP, SSH)
    Zabbix templates.png
    • Explore some of the data available through Zabbix such as various graphs (Monitoring -> Graphs), Latest Data (Monitoring -> Latest Data), Screens (Monitoring -> Screens), and Events (Monitoring -> Events)
    • Try temporarily stopping some of the services on your system (to simulate a problem) such as the Postfix SMTP server, courier-imap server, etc. using the command line service command.
    • Re-check the data in Zabbix with the services turned off, are you alerted of the problems? Make sure to turn the services back on when you're done.
    NOTE: Most services will not instantaneously show as down, the templates for the service probably check it once per minute or less so you may need to leave things down for a bit to see it in the Web UI.
    • If you have additional time see if you can get email notifications of failed services working (see Administration -> Media Types -> Email and Configuration -> Actions)

Checking Your Work

  • Automatically check your results by running this command:
  • curl https://raw.githubusercontent.com/mnjk-inver/Linux-2480-Rebuild/main/lab_12_test.py | python3