lab:fah_removal
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
lab:fah_removal [2023/05/01 15:52] – [Server Setup] user | lab:fah_removal [2023/05/06 23:02] (current) – replaced user | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== FAH Removal ====== | ||
- | In our previous step we [[fah_installation|set up FAH]] on our [[Stack of NUCs]]. | ||
- | |||
- | Now we are going to disable the service and uninstall it. In the last step there was an optional step to " | ||
- | |||
- | Purpose: | ||
- | * Demonstrate stopping and removing an installed service workload | ||
- | |||
- | ====== Step 1 - Connect to the Ansible Control Node ====== | ||
- | From [[stack - nuc 1|NUC 1]], log in to the Ansible control node, [[stack - nuc 2|NUC 2]]. | ||
- | |||
- | ====== Step 2 - Create the Playbook ====== | ||
- | Create the file / | ||
- | |||
- | <file yaml removefah.yml> | ||
- | --- | ||
- | - hosts: all | ||
- | become: true | ||
- | become_user: | ||
- | tasks: | ||
- | - name: Stop and disable FAHClient.service | ||
- | ansible.builtin.service: | ||
- | name: FAHClient.service | ||
- | state: stopped | ||
- | enabled: false | ||
- | - name: Remove fahclient package | ||
- | apt: | ||
- | name: fahclient | ||
- | state: absent | ||
- | clean: true | ||
- | purge: true | ||
- | - name: Reboot | ||
- | reboot: | ||
- | </ | ||
- | ====== Step 3 - Test the Playbook ====== | ||
- | '' | ||
- | |||
- | ====== Next Step ====== | ||
- | Now that we have removed the CPU-hungry FAH service, we go next to [[Install Kubernetes|installing Kubernetes]]. | ||
- | |||
- | ====== Optional ====== | ||
- | Cyber security students may want to deploy hashtopolis in the Lab. This deploys a distributed hashcat cluster for brute forcing password hashes. | ||
- | |||
- | ===== Hashtopolis ===== | ||
- | References: | ||
- | * [[https:// | ||
- | * [[https:// | ||
- | |||
- | There are two pieces to set up: | ||
- | * server - central server distributes the keyspace of a task, aggregates jobs, and collects results in MySQL database | ||
- | * communicates over HTTPS with client machines | ||
- | * passes over files, binaries and task commands | ||
- | * clients - acts on the commands, executes the hash cracking application, | ||
- | |||
- | ==== Start a folder for hashtopolis ==== | ||
- | - Log in to the Ansible control node (NUC 2) | ||
- | - Create directory ''/ | ||
- | * '' | ||
- | * '' | ||
- | - Create the inventory, putting one of the worker nodes in the [server] section and the rest in the [clients] section | ||
- | * ''/ | ||
- | * <file yaml inventory> | ||
- | [all:vars] | ||
- | ansible_python_interpreter=/ | ||
- | ansible_user=' | ||
- | ansible_become=true | ||
- | ansible_become_method=sudo | ||
- | [server] | ||
- | |||
- | [clients] | ||
- | </ | ||
- | - Create the ansible.cfg file | ||
- | * ''/ | ||
- | * <file yaml ansible.cfg> | ||
- | [defaults] | ||
- | inventory = inventory | ||
- | </ | ||
- | ==== Server Setup ==== | ||
- | Server runs a LAMP stack | ||
- | |||
- | <file yaml testing-server-build.yml> | ||
- | --- | ||
- | - hosts: master | ||
- | vars: | ||
- | my_sql_root_password: | ||
- | app_user: " | ||
- | http_host: " | ||
- | http_config: | ||
- | http_port: " | ||
- | disable_default: | ||
- | hashtopolis_password: | ||
- | tasks: | ||
- | - name: Install prerequisites | ||
- | apt: name={{ item }} update_cache=yes state=latest force_apt_get=yes | ||
- | loop: [ ' | ||
- | |||
- | #Apache Configuration | ||
- | - name: Install LAMP Packages | ||
- | apt: name={{ item }} update_cache=yes state=latest | ||
- | loop: [ ' | ||
- | |||
- | - name: Create document root | ||
- | file: | ||
- | path: "/ | ||
- | state: directory | ||
- | owner: "{{ app_user }}" | ||
- | mode: ' | ||
- | |||
- | - name: Set up Apache virtualhost | ||
- | template: | ||
- | src: " | ||
- | dest: "/ | ||
- | notify: Reload Apache | ||
- | |||
- | - name: Enable new site | ||
- | shell: / | ||
- | notify: Reload Apache | ||
- | |||
- | - name: Disable default Apache site | ||
- | shell: / | ||
- | when: disable_default | ||
- | notify: Reload Apache | ||
- | # MySQL Configuration | ||
- | - name: Sets the root password | ||
- | mysql_user: | ||
- | name: root | ||
- | password: "{{ mysql_root_password }}" | ||
- | login_unix_socket: | ||
- | - name: Removes all anonymous user accounts | ||
- | mysql_user: | ||
- | name: '' | ||
- | host_all: yes | ||
- | state: absent | ||
- | login_user: root | ||
- | login_password: | ||
- | - name: Removes the MySQL test database | ||
- | mysql_db: | ||
- | name: test | ||
- | state: absent | ||
- | login_user: root | ||
- | login_password: | ||
- | - name: Create new databases | ||
- | community.mysql.mysql_db: | ||
- | name: | ||
- | - hashtopolis | ||
- | - name: Sets the hashtopolis password | ||
- | mysql_user: | ||
- | name: hashtopolis | ||
- | password: "{{ hashtopolis_password }}" | ||
- | priv=" | ||
- | state: present | ||
- | # UFW Configuration | ||
- | - name: "UFW - Allow HTTP on port {{ http_port }}" | ||
- | ufw: | ||
- | rule: allow | ||
- | port: "{{ http_port }}" | ||
- | proto: tcp | ||
- | |||
- | # PHP Info Page | ||
- | - name: Sets Up PHP Info Page | ||
- | template: | ||
- | src: " | ||
- | dest: "/ | ||
- | |||
- | - name: secure mysql | ||
- | command: mysql_secure_installation | ||
- | |||
- | - name: Clone a github repository | ||
- | git: | ||
- | repo: https:// | ||
- | dest: / | ||
- | clone: yes | ||
- | update: yes | ||
- | - name: create folder / | ||
- | - name: copy hastopolis/ | ||
- | - name: chown -R www-data: | ||
- | - name: php.ini tweaking | ||
- | - name: remove install directory / | ||
- | |||
- | handlers: | ||
- | - name: Reload Apache | ||
- | service: | ||
- | name: apache2 | ||
- | state: reloaded | ||
- | |||
- | - name: Restart Apache | ||
- | service: | ||
- | name: apache2 | ||
- | state: restarted | ||
- | </ | ||
- | |||
- | open web browser, installation gui; auth into sql account | ||
- | * serve hostname: localhost | ||
- | * server port: 3306 | ||
- | * mysql user: hashtopolis | ||
- | * mysql password: my_hastopolis_password | ||
- | * database name: hashtopolis | ||
- | |||
- | additional configuration required | ||
- | |||
- | ==== Agent Setup ==== | ||
- | < | ||
- | # ensure the machine is up to date and install python packages | ||
- | sudo apt update | ||
- | sudo apt -y full-upgrade -y | ||
- | pip3 install requests | ||
- | pip3 install psutil | ||
- | |||
- | # install nvidia and cuda drivers | ||
- | sudo apt install -y nvidia-driver nvidia-cuda-toolkit | ||
- | |||
- | # verify install (should both show nvidia drivers) | ||
- | nvidia-smi | ||
- | lspci | grep -i vga | ||
- | |||
- | # verify with hashcat | ||
- | hashcat -I | ||
- | |||
- | # fetch the agent file from the server | ||
- | curl http:// | ||
- | python3 agent.zip | ||
- | </ | ||
- | |||
lab/fah_removal.1682956324.txt.gz · Last modified: 2023/05/01 15:52 by user