- Debian
- Sudo, Groups & Hostname
- SSH & UFW
- Password Policy
- Monitoring Script
- Bonus
- 6.1. lighttpd & PHP
- 6.2. MariaDB
- 6.3. Wordpress
- 6.4. VSFTPD
- 6.5. ShellGPT
- Evaluation
This project consists of setting up a server in a virtual machine, using Virtual Box, under specific instructions.
The chosen operating system was the latest stable version of Debian, at the time (bullseye 11.7.0).
- Partitioning using LVM and according to specified definitions (different with or without bonus part);
- Install and configure sudo following strict rules:
- authentication using sudo has to be limited to 3 attempts in the event of an incorrect password;
- a custom message has to be displayed if an erros due to a wrong password occurs when using sudo;
- each action using sudo has to be archived, both inputs and outputs. The log file has to be saved in the /var/log/sudo/ folder;
- TTY mode has to be enabled for security reasons;
- the paths that can be used by sudo must be restricted to: /usr/local/sbin:/user/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin
- Install and configure SSH only running on port 4242;
- Install and configure UFW firewall;
- Implement a strong password policy for existing and new users using libpam-pwquality package:
- password has to expire every 30 days;
- minimum number of days allowed before the modification of a password will be set to 2;
- the user has to receive a warning message 7 days before their password expires;
- password must be at least 10 characters long, contain an uppercase letter, a lowercase letter, and a number;
- password must not contain more than 3 consecutive identical characters;
- password must not include the name of the user;
- password must have at leas 7 characters that are not part of the former password (does not apply to the root password);
- Set up a cron job with a monitoring script that displays some system info on all terminals every 10 minutes;
- Set up a functional WordPress website using the following services: lighttpd, MariaDB and PHP;
- Set up an aditional service. In this case I chose to set up FTP and ShellGPT (command line version of ChatGPT);
Bellow you can find some detailed concetps and key commands to achieve what is asked of this project. Most parts should not be followed strictly as they are merely hints of useful commands.
The initial steps to install Debian can be found in several tutorials across GitHub:
However I will specify how to correctly partition the disk so we can get the same values when using the lsblk
command as showed in the project subject.
lsblk
- prints all block devices (except RAM disks) in a tree-like format by default
When we are defining the size for the partitions we are working with Gigabyte wich is Decimal units, however what we see when using the lsblk
command is Gibibyte, which is Binary. We need to convert the Gibibyte values to aproximate Gigabyte values.
To do that we can use this online Converter.
Sudo (su “do”) allows a system administrator to delegate authority to give certain users (or groups of users) the ability to run some (or all) commands as root or another user.
su -
(substitute user) - login to the root account
apt update
- fetches the latest version of the package list from your distro's software repository, and any third-party repositories you may have configured
apt upgrade
- install the updated versions found on the previous command
apt install sudo
- install the sudo package that grants root privileges to users
dpkg -l | grep sudo
- verify if sudo was successfully installed
// Some helpful commands for user and group manipulation:
sudo groupadd <groupname>
- create a new group
sudo groupdel <groupname>
- delete a group
It is not possible to remove the primary group of an existing user without removing the user first. The command above removes the group entry from the /etc/group
and /etc/gshadow
files.
adduser <username> <groupname>
- add user to group
sudo deluser <username> <groupname>
- delete user from group
getent group <groupname>
- view users in sudo group
id -g <username>
- displays a user’s main group ID
cat /etc/passwd | cut -d ":" -f 1
- displays a list of all users on the machine
cat /etc/passwd | awk -F '{print $1}'
- same as above
hostnamectl status
- check hostname
sudo hostnamectl set-hostname <new_hostname>
- change hostname
// Defining some sudo rules according to the project's subject:
sudo visudo -f /etc/sudoers.d/newsudorules
- Opening sudo files with "visudo" creates a safer structure. Here we created a new file called newsudorules in the specified directory and we add the following lines:
Defaults passwd_tries=3
With Sudo, the maximum number of password attempts is 3 (3 is also standard)
Defaults badpass_message="Incorrect Password"
Your error message after incorrect password attempts
Defaults logfile="/var/log/sudo/newsudo_log"
Stores all used sudo commands in the specified file
Defaults log_input,log_output
It is used to keep logs of inputs and outputs.
Defaults iolog_dir="/var/log/sudo"
Archive log_input and log_output events to the specified directory.
Defaults requiretty
Enforces TTY mode.
Defaults secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin"
To limit the directories used by Sudo.
Openssh provides a secure channel over an unsecured network from the outside. It's a connectivity tool for remote login with the SSH protocol. It encrypts all traffic to eliminate eavesdropping, connection hijacking, and other attacks.
sudo apt install openssh-server
- installs the openssh-server package
sudo service ssh status
or sudo systemctl status ssh
- view SSH status
sudo vim /etc/ssh/sshd_config
- opens the SSH config file:
-
Change
Port 22
toPort 4242
-
Change
PermitRootLogin prohibit-password
toPermitRootLogin no
sudo systemctl restart ssh
- restart SSH service
Uncomplicated Firewall (UFW) is a program for managing a netfilter firewall designed to be easy to use. It uses a command-line interface consisting of a small number of simple commands, and uses iptables for configuration.
sudo apt install ufw
- install firewall
sudo ufw status
- check status of firewall
sudo ufw enable
- enable firewall
// Some helpful commands to configure UFW ports:
sudo ufw allow <port>
- add a new rule to allow port
sudo ufw deny <port>
- deny the rule to allow port
sudo ufw delete allow <port>
- remove port allow rule
sudo ufw delete deny <port>
- remove port deny rule
sudo ufw status numbered
- check configured rules with a number identifier
sudo ufw delete <port index>
- delete rule according to the identifier found with previous command
// Closing DHCP port and setting IP address as static
Change Network adapter to Bridged Adapter on VirtualBox.
sudo ip address
- check ip address
sudo nano /etc/network/interfaces
- open the interfaces file describer and edit:
#The primary network interface
auto enp0s3
iface enp0s3 inet static
address 'yourIPaddress'
netmask 255.255.0.0
gateway xx.xx.254.254
dns-nameservers xx.xx.254.254
sudo vim /etc/login.defs
- we define some conditions on the time validity of passwords:
PASS_MAX_DAYS 30
- maximum number of days a password may be used
PASS_MIN_DAYS 2
- minimum number of days allowed between password changes
PASS_WARN_AGE 7
- number of days warning given before password expires
chage -l <username>
- check password condition
Confirm for existing users:
sudo chage -M 30 <username>
sudo chage -m 2 <username>
sudo chage -W 7 <username>
sudo apt install libpam-pwquality
- install the libpam-pwquality package to increase the security of passwords
sudo vim /etc/pam.d/common-password
- open document and add after password requisite pam_pwquality.so
difok = 7
- number of characters that must not be present in the old password
retry=3
- prompt user at least 3 times before returning error
minlen=10
- minimum size for the new password
dcredit=-1
- minimum digit number
ucredit=-1
- minimum uppercase character
lcredit=-1
- minimum lowercase character
maxrepeat=3
- maximum number of consecutive same characters
usercheck=1
- check if it contains the username in the password
enforce_for_root
- enforces pwquality checks on the root user password
passwd username
- change password
Basic info on some of the commands user:
sort
= alphabetical sorting.uniq
= separating repeating lines.$1,$2...
= We can say that Mer $1, haba $2, yesterday $3 or $4 columns are holding.free -m
= It shows the amount of Ram in Mebibytes. The reason for doing so is to calculate the percentage over the uses of the script, etc. for us to do.grep '^/dev/'
= ^ takes the places starting with the word after the suffix.grep -v '/boot$'
= -v The suffix indicates the word to be extractedawk '{ft += $2} END {print ft}'
= ft It can be thought of as a variable, it adds the data contained in $2 in ft and prints ft to the screen.cut -c 9- | xargs | awk '{printf("%.1f%%")
= "cut -c 9-" Used to delete a character or a sequence of characters. "xargs" As a function, it forwards the previously used output to the next command. - -"printf("%.1f%%%")"
Takes 1 character after "." in float value type and adds "%" at the end.
Cron is located under /etc/init.d
sudo vim /root/monitoring.sh
- create and open monitoring script file
The script can be found here, copy the content to the created monitoring.sh file.
sudo chmod 777 monitoring.sh
- give full permissions to the monitoring script file
sudo systemctl status cron
- check if cron is active
sudo systemctl enable cron
- enable cron
sudo crontab -e
- add the job to cron
*/10 * * * * bash /root/monitoring.sh
- will execute every 10 minutes
sudo crontab -u root -l
- check root’s scheduled cron jobs
-
/etc/init.d/cron stop
- stop cron service -
/etc/init.d/cron start
- start cron service
Lighttpd is a HTTP web server designed to be fast, secure, flexible and standards-compliant.
sudo apt install lighttpd
- install lighttpd
sudo ufw allow 80
- port 80 Standard port for HTTP
dpkg -l | grep lighttpd
- check if lighttpd is installed
sudo lighttpd -v
- check version
sudo systemctl start lighttpd
- start lighttpd
sudo systemctl enable lighttpd
- enable lighttpd
sudo systemctl status lighttpd
- check lighttpd status
sudo ufw allow http
sudo ufw status
Test with: https://yourIPaddress:80
sudo apt install php-cgi php-mysql
sudo lighty-enable-mod fastcgi
sudo lighty-enable-mod fastcgi-php
sudo service lighttpd force-reload
Create a file in /var/www/html
named info.php
and write:
php
<?php
phpinfo();
?>
Test with: http://yourIPaddress:80/info.php
MariaDB is a database used for various purposes, such as data storage, e-commerce, logging apps, etc.
sudo apt install mariadb-server
- install MariaDB
Because the default configuration leaves your MariaDB installation unsecure, we will use a script provided by the mariadb-server package to restrict access to the server and remove unused accounts:
sudo mysql_secure_installation
It will ask the following:
Switch to unix_socket autentication? → N
Change the root password? → N
Remove anonymous users? → Y
Disallow root login remotely? → Y
Remove test database and acces to it? → Y
Reaload privilege tables now? → Y
sudo systemctl restart mariadb
sudo mariadb
- enter MariaDB console
Run the following commands to create a new database and user, change user, database and password :
CREATE DATABASE *database*;
CREATE USER '*user*'@'localhost' IDENTIFIED BY '*password*';
GRANT ALL ON *database*.* TO '*user*'@'localhost' IDENTIFIED BY '*password*' WITH GRANT OPTION;
FLUSH PRIVILEGES;
EXIT;
Open MariaDB and login with created user:
mariadb -u *user* -p
SHOW DATABASES;
- see if your database shows in the list
// Some useful commands to add, delete or alter users and databases in MariaDB:
SELECT User, Host FROM mysql.user;
- list all mysql users
SHOW GRANTS FOR ‘*user*’@’localhost’;
- list grants for a mysql user
REVOKE ALL PRIVILEGES, GRANT OPTION FROM ‘*user*’@’localhost’;
- revoke all grants for mysql user
ALTER USER '*user*'@'localhost' IDENTIFIED BY '*new_password*';
- change password
DROP DATABASE *database*;
- delete a database
WordPress is a content management system focused on the creation of any type of website.
Install wget
and zip
first:
sudo apt install wget zip
sudo wget http://wordpress.org/latest.tar.gz -P /var/www
- download latest version of WordPress to the /var/www/html folder
sudo tar -xzvf /var/www/latest.tar.gz
- extract content
sudo rm /var/www/latest.tar.gz
- delete .tar file
sudo mv html/html_old/
- rename html folder to html_old
sudo mv wordpress/html/
- rename wordpress folder to html
sudo chmod -R 755 html
- set permissions to html folder
sudo cp wp-config-sample.php wp-config.php
- create a copy of sample config file
sudo nano wp-config.php
- edit the file with MariaDB credentials
http://yourIPaddress/wp-admin/ - enter wordpress admin page
File Transfer Protocol (FTP) servers can be useful for providing files to customers and for exchanging files with partners and business associates.
VSFTP is a secure, stable, and fast FTP server. It can greatly decrease the chances of an attacker gaining access to a server via FTP exploits.
sudo apt install vsftpd
dpkg -l | grep vsftpd
- check if it was successfully installed
sudo ufw allow 21
- open door 21
sudo ufw status
- check UFW status
sudo nano /etc/vsftpd.conf
- remove # write_enable=YES and add:
user_sub_token=$USER
user_sub_token=$USER
local_root=/home/$USER/ftp
userlist_enalbe=YES
userlist_file=/etc/vsftpd.userlist
userlist_deny=NO`
sudo mkdir /home/username/ftp
- create a FTP folder in the directory of our user
sudo mkdir /home/username/ftp/files
- create a files folder
sudo chown nobody:nogroup /home/username/ftp
- set the ownership and group to nobody
sudo nano /etc/vsftpd.userlist
- add 0 and username
If we would like to transfer files from our machine to the virtual server In terminal to the original folder where the .zip file was downloaded and login to ftp:
cd Downloads
ftp yourIPaddress
- username….password….
ftp> cd /var/www/html/wp-content/themes
- go to destination folder in server
ftp> binary
- switch to binary transfer
ftp> put niveau.1.0.5.zip
- copy the file
In the server unzip the file:
unzip niveau.1.0.5.zip
We need some aditional services to run ShellGPT on our terminal. First lets check if we already have Python installed:
python3 —version
- check python version
If an older version of python is installed, upgrade:
sudo apt —only-upgrade install python3
If not:
sudo apt update && sudo apt upgrade -y
- update all packages and repositories
sudo apt install python3
- install python
Install PIP package manager for python:
sudo apt-get -y install python3-pip
pip3 —version
- check pip version
Install venv module, to create an isolated virtual environment in Linux and prevent any conflict with other libraries. Installing any library or package will install many background dependencies that can interfere with other libraries. To create a virtual environment for a project, you need the venv module, which can be installed using the command below:
sudo apt install python3-venv
Go to root:
mkdir cmdline-chatgpt
- create a directory
Enter the new directory and create a virtual environment:
python3 -m venv chatgpt_cli
source chatgpt_cli/bin/activate
- activate virtual environment
Get an OpenAI API key, you will need a payed account for this to work. Light calls on the API cost a fraction of a cent $0.001, so it's ok for casual use. See this page to get a sense of the values. Anyways you can set a monthly limit so you don't get out of control.
export OPEN_API_KEY=<key>
- create an environment variable for this API key
env
- verify by listing it
This variable is temporarily stored for the current session so we need to export it into a .bashrc file:
export OPENAI_API_KEY=<key>
source .bashrc
- confirm changes
env
- verify by listing.
Install ShellGPT:
pip3 install shell-gpt
Syntax and options to use
source .bashrc
- confirm changes
sgpt <options> <input_query>
Every time we turn off/reboot the system we need to redo some steps. Go back to the created folder, activate the virtual environement and confirm changes with source .bashrc
.
Syntax | Options |
---|---|
--temperature | Changes the randomness of the output |
--top-probablity | Limits to only the highest probable tokens or words |
--chat | Used to have a conversation with a unique name |
--shell | Used to get shell commands as output |
--execute | Executes the commands received as output from --shell option |
--code | Used to get code as output |
Useful commands for the evaluation
USER
uname -a
sudo adduser <username>
sudo chage -l <username>
sudo adduser <username> sudo
getent group sudo
sudo adduser <username> user42
getent group user42
sudo groupadd evaluating
sudo adduser <username> evaluating
getent group evaluating
HOSTNAME
hostnamectl
sudo hostnamectl set-hostname <new>
hostnamectl status
sudo reboot
lsblk
SUDO
dpkg -l | grep sudo
nano /etc/sudoers.d/newsudorules
sudo aa-status
UFW
sudo ufw status
sudo ufw status numbered
sudo ufw allow 8080
sudo ufw delete <number>
SHH
sudo service ssh status
ssh <username>@ipadd -p 4242
PASSWORD
nano /etc/login.defs
nano /etc/pam.d/common-password
CRON
sudo crontab -l
sudo systemctl status cron
sudo nano /root/monitoring.sh
/etc/init.d/cron stop
/etc/init.d/cron start
BONUS
sudo systemctl status lighttpd
sudo systemctl status mariadb
ftp ipadd
cd cmdline-chatgpt
source chatgpt_cli/bin/activate
source .bashrc
sgpt <options> <input_query>