Practical Assignment 2 (PA.2) Use the instructions below to complete all 5 parts of the assignment. You will submit an answer for each section in red. Part One: Linux Client First, we will need a...

1 answer below »
I have attached a file, it was answered before a lot of answers are missing. Thank you




Practical Assignment 2 (PA.2) Use the instructions below to complete all 5 parts of the assignment. You will submit an answer for each section in red. Part One: Linux Client First, we will need a Linux machine to act as a client for this lab. The fastest method to add a new machine as a client, is to clone your existing VM from PA.1. 1. First, create a snapshot of your VM from PA.1: a. In the Google Cloud console, click Compute Engine, then Snapshots. b. Click Create Snapshot c. Provide a “name” and “description” for your snapshot. (I called mine cis285-client). d. For the “source disk”, choose the virtual instance you created in practical assignment one. e. Click “Create” 2. Once the snapshot has been created, build the new instance: a. In the Google Cloud console, click Compute Engine, then VM Instances. b. Click Create Instance c. Provide a name for the VM d. Use the N1 Series e. Use F1-Micro for the machine type f. Select Boot Disk, then select the Snapshots tab g. Select the snapshot you created in the previous step h. Create the virtual machine Part Two: Install vsftp We will use vsftp to demonstrate some of the security features in Linux. Vsftp is a simple FTP server. 1. Use the sudo yum install vsftpd command to install vsftp 2. Use the sudo systemctl list-unit-files –type service command to view all the services on your server. a. Are there any services that seem superfluous? Research two of the enabled services, and describe what they are for, and why they might be enabled by default. 3. Use the command sudo vi /etc/vsftpd/vsftpd.conf to look at the configuration file. a. Which setting in the configuration do you think allows vsftpd to use local accounts? b. Which file do you think vsftpd needs access to in order to authenticate users? 4. Start vsftpd using sudo systemctl start vsftpd 5. Ensure it is started by checking its status: sudo systemctl status vsftpd 6. Ensure that vsftpd is configured to run when the system is restarted using sudo systemctl enable vsftpd 7. Run sudo systemctl list-unit-files –type service again. a. Do you see vsftpd now listed? Part Three: Processes and Daemons In this unit, we learned about processes and daemons. We will explore the processes running on our CentOS server in this lab. Before you begin this section, use an SSH client to connect to your server (such as PowerShell, your terminal in Mac, or PuTTY if you have an older version of Windows). 1. What processes are running on your server? a. From your standard user’s prompt (not logged in with root privileges), use the ps command to show a list of processes. i. This is a short list. Why are there no other processes listed? b. Change to “root” privileges using the su command, and run the ps -ef command. i. Which of these processes are daemons/services, and which are user processes? Is it easy to tell? c. Run the ps -ejH | less command to see your process tree. i. It should now be a little easier to see your process, and how they relate to one another. What are the parent processes? Research what these are and provide an explanation for each. ii. What is the parent of vsftpd? iii. What is the PID of vsftpd? iv. Identify at least two processes under one of the parents above and explain what they are. v. Are there any processes that appear to be superfluous, or is CentOS as shipped/installed in Google Cloud fairly well trimmed down (i.e., hardened)? d. Kill vsftpd using kill PID (replace PID with the process ID you noted in a previous step). i. Is the process now gone when you use the ps command? e. Use the command systemctl status vsftpd i. Does this confirm the process was killed? f. Use the command systemctl start vsftpd to start the service again. g. Use the top command to view your processes (use “q” to quit when done). i. Which process is using the most memory? ii. Which processes is using the most CPU? Part Four: Linux Firewall 1. Use SSH to login to the server you created in Part One. 2. Use the command sudo yum install ftp to install an ftp client 3. Test your FTP server: a. Create a file with some content using vi some_file.txt b. Use the command ftp server_hostname to connect to your FTP server from your client system. Change server_hostname to the name of your server, which will be in Google Cloud Console. You can also type hostname on your server to find its hostname. c. When prompted, enter the username, and password. d. Use the command put some_file.txt to copy your file. Verify that the file was created on the server. 4. Now, switch to the SERVER, and we will configure the firewall in Linux to block FTP: a. First, use iptables -L to look at the firewall rules in IPTables. This is rather complicated! We will use the firewall-cmd utlity, which essentially manages iptables with more user-friendly commands. b. First, take a look at the zones available using firewall-cmd --get-zones i. Note the Public and Trusted zones. What other zones do you have? c. Next, lets see what the active zone is using firewall-cmd --get-active-zones i. What is your current active zone? d. Next, take a look at the rules for this zone using firewall-cmd --list-all --zone=public i. What is the behavior of this zone? Is it more permissive, or restrictive? (Hint: look at the Target value). ii. Which services are allowed? e. Next, lets switch our zone to Public using the command firewall-cmd --set-default-zone=public i. Go back to your client, and try to log in. Did it work? What was the error message? f. The public zone is far more secure, but in order to use certain services they must be added. Use the command firewall-cmd --zone=public --add-service=ftp to add FTP as a service enabled. i. Can you FTP from the client now? g. You can leave your zone set to public; however, in the future, we will need to add services to the public zone in order to use them. i. In this exercise, we use the service name to add them to the firewall rule, thus allowing traffic on the official port registered for that service (for example, FTP uses TCP port 21). In some cases, you may want to add a port that is not “well known”. Research the command that would configure either ALLOW or DENY for specific TCP ports. ii. Research “Port Hiding”. What is this? Is this an effective strategy to protect servers? Part Five: SELinux SELinux provides a mechanism for mandatory access control (rather than the default behavior of discretionary access control). We will take a look at the settings for SELinux. 1. On your SERVER, issue the commend to show SELinux current status: getenforce a. What is the state of SELinux? b. Use the command setenforce 0 – what is the status of SELinux after running this command? (Use setenforce 1 to set it back to a more restrictive state). 2. In this assignment, you have set up an FTP server. Take a look at some of the configuration options in SELinux that confines the FTP server using the command getsebool -a | grep ftp a. Research two of these settings; what are they used for? Do you agree with the default setting, or would you change this? 3. Change one of the settings you identified in the previous step using setsebool setting x (change setting to the name of setting you found, and x will 0 for off, or 1 for on). a. Verify the setting is now set using getsebool setting (change setting to the name of the setting you used). Does it reflect your earlier setting?
Answered 1 days AfterSep 23, 2022

Answer To: Practical Assignment 2 (PA.2) Use the instructions below to complete all 5 parts of the assignment....

Shubham answered on Sep 25 2022
53 Votes
Practical Assignment 2 (PA.2)
Use the instructions below to complete all 5 parts of the assignment. You will submit an answer for each section in red.
Part One: Linux Client
First, we will need a Linux machine to act as a client for this lab. The fastest method to add a new machine as a client, is to clone your existing VM from PA.1.
1. First, create a snapshot of your VM from PA.1:
a. In the Google Cloud console, click Compute Engine, then Snapsh
ots.
b. Click Create Snapshot
c. Provide a “name” and “description” for your snapshot. (I called mine cis285-client).
d. For the “source disk”, choose the virtual instance you created in practical assignment one.
e. Click “Create”
2. Once the snapshot has been created, build the new instance:
a. In the Google Cloud console, click Compute Engine, then VM Instances.
b. Click Create Instance
c. Provide a namefor the VM
d. Use the N1Series
e. Use F1-Micro for the machine type
f. Select Boot Disk, then select the Snapshots tab
g. Select the snapshot you created in the previous step
h. Create the virtual machine
Part Two: Install vsftp
We will use vsftp to demonstrate some of the security features in Linux. Vsftp is a simple FTP server.
1. Use the sudo yum install vsftpdcommand to install vsftp
2. Use the sudo systemctl list-unit-files –type service command to view all the services on your server.
a. Are there any services that seem superfluous? Research two of the enabled services, and describe what they are for, and why they might be enabled by default.
DHCP is superfluous for storing network configuration for computers in the central location. It changes with the setting of each desktop for network change. Standard items include services like DHCP, BIND DNS, Sendmail SMTP and network monitoring. Optional Items include Novell NDS and SendmailPro SMTP.
3. Use the command sudo vi /etc/vsftpd/vsftpd.conf to look at the configuration file.
a. Which setting in the configuration do you think allows vsftpd to use local accounts?
The command listen in vsftpd runs with stand alone mode and it sets the value to YES. listen_ipv6 when enabled includes a stand alone mode and listens to only IPv6 sockets and it can be used in conjunction with the listen directive.
b. Which file do you think vsftpd needs access to in order to authenticate users?
It installs the daemon and the file can help in defining the requirements of users for meeting the requirement to login into FTP server. It specifies the local user account used for the anonymous FTP user. It can help in adding the username of the user that connects to login.
4. Start vsftpd using sudo systemctl start vsftpd
5. Ensure it is started by checking its status: sudo systemctl status vsftpd
6. Ensure that vsftpd is configured to run when the system is restarted using sudo systemctl enable vsftpd
7. Run sudo systemctl list-unit-files –type service again.
a. Do you see vsftpd now listed?
Yes vsftpd is not listed and it allows the user to upload files to the home directory with the use of FTP with login credentials. It provides a secure way for users to specify a directory accomplished with chroot jails.
Part Three: Processes and Daemons
In this unit, we learned about processes and daemons. We will explore the processes running on our CentOS server in this lab. Before you begin this section, use an SSH client to connect to your server (such as PowerShell, your terminal in Mac, or PuTTY if you have an older version of Windows).
1. What processes are running on your server?
a. From your standard user’s prompt (not logged in with root privileges), use the ps command to show a list of processes.
i. This is a short list. Why are there no other processes listed?
With the use of ps command it does not show other processes because while running the script, it allocates one a new terminal and starts with a new shell (Brendan, 2021). Therefore ps inside the script can run on different terminals. It runs the process alongside with other attributes and PIDs.
b. Change to “root” privileges using the su command, and run the ps -ef command.
i. Which of these processes are daemons/services, and which are user processes? Is it easy to tell?
su command is the service and ps -ef command is the user process. su command provides a wide configuration for using PAM to authenticate for setting by and modifying the value of the authentication attributes. ps -ef command can help in checking the status of the active process on the system.
c. Run the ps -ejH | less command to see your process...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here