lab:stack_of_nucs:ansible_playbook_-_hashtopolis_installation
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
lab:stack_of_nucs:ansible_playbook_-_hashtopolis_installation [2023/05/08 16:16] – [Windows] user | lab:stack_of_nucs:ansible_playbook_-_hashtopolis_installation [2024/05/06 02:11] (current) – removed user | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Ansible Playbook - Hashtopolis Installation ====== | ||
- | This is a bonus step for our [[start|Stack of NUCs]] lab. We are going to create and run an Ansible playbook to set up [[https:// | ||
- | |||
- | It is important to discuss GPUs at this point. | ||
- | * hashcat is no longer CPU-only; it uses GPUs and CPUs via OpenCL | ||
- | * if your NUCs have a supported GPU, great it; otherwise you will be using OpenCL and CPU | ||
- | * in my lab this worked out to only 61039 kH/s for md5 and 330 H/s for mode 1880 (Unix) | ||
- | * if you have an NVIDIA GPU install hashcat-nvidia for better performance | ||
- | * because of this complexity, we are installing the '' | ||
- | |||
- | 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 agent machines | ||
- | * passes over files, binaries and task commands | ||
- | * agents - act on the commands, execute the hash cracking application, | ||
- | |||
- | Purpose: | ||
- | * Demonstrate a running a cluster of hash cracking nodes | ||
- | |||
- | References: | ||
- | * [[https:// | ||
- | * [[https:// | ||
- | * [[https:// | ||
- | * [[https:// | ||
- | * [[https:// | ||
- | |||
- | ====== Step 1 - Start a project 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 '' | ||
- | * ''/ | ||
- | * <file yaml inventory> | ||
- | [all:vars] | ||
- | ansible_python_interpreter=/ | ||
- | ansible_user=' | ||
- | ansible_become=true | ||
- | ansible_become_method=sudo | ||
- | [server] | ||
- | |||
- | [agents] | ||
- | </ | ||
- | - Create the '' | ||
- | * ''/ | ||
- | * <file yaml ansible.cfg> | ||
- | [defaults] | ||
- | inventory = inventory | ||
- | </ | ||
- | - Create the '' | ||
- | * <file bash apache.conf.j2> | ||
- | < | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | |||
- | < | ||
- | | ||
- | </ | ||
- | |||
- | < | ||
- | | ||
- | </ | ||
- | |||
- | </ | ||
- | </ | ||
- | - Create the '' | ||
- | * <file php info.php.j2> | ||
- | <?php | ||
- | phpinfo(); | ||
- | </ | ||
- | - Create the '' | ||
- | * <file bash .my.cnf.j2> | ||
- | [client] | ||
- | port = 3306 | ||
- | socket = / | ||
- | user=root | ||
- | password={{ mysql_root_password }} | ||
- | </ | ||
- | ====== Step 2 - Install Server ====== | ||
- | The server runs on a LAMP stack. This playbook installs the LAMP stack and git clones the Hashtopolis server application. | ||
- | |||
- | TODO: add php.ini tweaking to the playbook, as necessary | ||
- | |||
- | - Create the playbook ''/ | ||
- | * <file yaml hashtopolis-server.yml> | ||
- | --- | ||
- | - hosts: localhost | ||
- | tasks: | ||
- | - name: Download wordlist common passwords | ||
- | get_url: | ||
- | url: https:// | ||
- | dest: / | ||
- | - name: Download wordlist rockyou.txt | ||
- | get_url: | ||
- | url: http:// | ||
- | dest: / | ||
- | - name: Download oneruletorulethemall | ||
- | get_url: | ||
- | url: https:// | ||
- | dest: / | ||
- | - hosts: server | ||
- | become: true | ||
- | vars: | ||
- | mysql_root_password: | ||
- | app_user: " | ||
- | http_host: " | ||
- | http_conf: " | ||
- | http_port: " | ||
- | disable_default: | ||
- | hashtopolis_password: | ||
- | tasks: | ||
- | - name: Install prerequisites | ||
- | apt: | ||
- | pkg: | ||
- | - aptitude | ||
- | - git | ||
- | - phpmyadmin | ||
- | |||
- | # Apache Configuration | ||
- | - name: Install LAMP Packages | ||
- | apt: | ||
- | pkg: | ||
- | - apache2 | ||
- | - mysql-server | ||
- | - python3-pymysql | ||
- | - php | ||
- | - php-pear | ||
- | - php-mysql | ||
- | - libapache2-mod-php | ||
- | - 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: start and enable mysql service | ||
- | service: | ||
- | name: mysql | ||
- | state: started | ||
- | enabled: true | ||
- | - name: manage MySQL root password | ||
- | become: true | ||
- | template: | ||
- | src: / | ||
- | dest: / | ||
- | - name: Sets the hashtopolis password | ||
- | mysql_user: | ||
- | name: hashtopolis | ||
- | password: "{{ hashtopolis_password }}" | ||
- | priv: " | ||
- | login_user: root | ||
- | login_password: | ||
- | state: present | ||
- | - name: Removes all anonymous user accounts | ||
- | mysql_user: | ||
- | name: '' | ||
- | host_all: true | ||
- | 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 | ||
- | mysql_db: | ||
- | name: | ||
- | - hashtopolis | ||
- | state: present | ||
- | login_user: root | ||
- | login_password: | ||
- | |||
- | # 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: Clone Hashtopolis github repository | ||
- | git: | ||
- | repo: https:// | ||
- | dest: / | ||
- | clone: true | ||
- | update: true | ||
- | - name: Copy hastopolis/ | ||
- | copy: | ||
- | src: / | ||
- | dest: "/ | ||
- | remote_src: true | ||
- | owner: www-data | ||
- | group: www-data | ||
- | |||
- | - name: Copy wordlist 100k | ||
- | copy: | ||
- | src: / | ||
- | dest: / | ||
- | owner: www-data | ||
- | group: www-data | ||
- | - name: Copy wordlist rockyou.txt | ||
- | copy: | ||
- | src: / | ||
- | dest: / | ||
- | owner: www-data | ||
- | group: www-data | ||
- | - name: Decompress rockyou.txt | ||
- | command: / | ||
- | - name: Copy oneruletorulethemall | ||
- | copy: | ||
- | src: / | ||
- | dest: / | ||
- | owner: www-data | ||
- | group: www-data | ||
- | handlers: | ||
- | - name: Reload Apache | ||
- | service: | ||
- | name: apache2 | ||
- | state: reloaded | ||
- | |||
- | - name: Restart Apache | ||
- | service: | ||
- | name: apache2 | ||
- | state: restarted | ||
- | </ | ||
- | - Run the playbook | ||
- | * '' | ||
- | |||
- | ====== Step 3 - Configure Hashtopolis Server ====== | ||
- | - Configure the server using the Web UI | ||
- | * open web browser and point to the server' | ||
- | * complete the installation gui to configure the server | ||
- | * server hostname: localhost | ||
- | * server port: 3306 | ||
- | * mysql user: hashtopolis | ||
- | * mysql password: my_hashtopolis_password | ||
- | * database name: hashtopolis | ||
- | * create a login account when prompted | ||
- | - Allow voucher reuse | ||
- | * Click Config > Server | ||
- | * Click Server | ||
- | * Check " | ||
- | * Click Save Changes | ||
- | - Import word lists | ||
- | * Click Files | ||
- | * Click Wordlists | ||
- | * Under Import files select 10-million-password-list-top-100000.txt and rockyou.txt | ||
- | * Click Import | ||
- | - Import rule | ||
- | * Click Files | ||
- | * Click Rules | ||
- | * Under Import files select OneRuleToRuleThemAll.rule | ||
- | * Click Import | ||
- | - After configuration is complete, remove the install directory. | ||
- | * <file yaml remove-hashtopolis-installer.yml> | ||
- | --- | ||
- | - hosts: server | ||
- | become: true | ||
- | vars: | ||
- | http_host: " | ||
- | tasks: | ||
- | - name: Remove install directory | ||
- | file: | ||
- | path: "/ | ||
- | state: " | ||
- | </ | ||
- | * '' | ||
- | |||
- | ====== Step 4 - Generate Voucher Codes ====== | ||
- | - Log in and create enough vouchers for all your worker nodes | ||
- | * Click Agents > New | ||
- | * Under Vouchers, and next to the New voucher button, click Create | ||
- | * Repeat to generate vouchers for all your workers | ||
- | * Save these voucher codes to ''/ | ||
- | |||
- | ====== Step 5 - Install Agents ====== | ||
- | Intel CPUs require this runtime: " | ||
- | * [[https:// | ||
- | * hmmmm '' | ||
- | * [[http:// | ||
- | |||
- | |||
- | Testing: '' | ||
- | |||
- | - Create a j2 template for the agent configuration file | ||
- | * <file json config.json.j2> | ||
- | { | ||
- | " | ||
- | " | ||
- | " | ||
- | " | ||
- | " | ||
- | " | ||
- | " | ||
- | " | ||
- | " | ||
- | } | ||
- | </ | ||
- | * See more options for this config file at [[https:// | ||
- | - Create unit file for the new hashtopolis-agent service | ||
- | * <file systemd hashtopolis-agent.service> | ||
- | [Unit] | ||
- | Description=Hashtopolis Agent | ||
- | After=network.target | ||
- | |||
- | [Service] | ||
- | Type=simple | ||
- | ExecStart=/ | ||
- | Restart=on-failure | ||
- | StandardOutput=syslog | ||
- | StandardError=syslog | ||
- | SyslogIdentifier=hashtopolis-agent | ||
- | WorkingDirectory=/ | ||
- | |||
- | [Install] | ||
- | WantedBy=multi-user.target | ||
- | </ | ||
- | - Create playbook to install the agent | ||
- | * <file yaml hashtopolis-agent.yml> | ||
- | --- | ||
- | - hosts: server | ||
- | - hosts: agents | ||
- | become: true | ||
- | vars: | ||
- | server_ip: " | ||
- | vouchers: "{{ lookup(' | ||
- | tasks: | ||
- | - name: Install prerequisites | ||
- | apt: | ||
- | pkg: | ||
- | - git | ||
- | - zip | ||
- | - curl | ||
- | - hashcat | ||
- | - python3 | ||
- | - python3-psutil | ||
- | - python3-requests | ||
- | - pciutils | ||
- | - name: Pull agent | ||
- | get_url: | ||
- | url: " | ||
- | dest: / | ||
- | - name: Create config file | ||
- | template: | ||
- | src: "/ | ||
- | dest: "/ | ||
- | - name: Create systemd unit file | ||
- | copy: | ||
- | src: / | ||
- | dest: / | ||
- | owner: root | ||
- | mode: 644 | ||
- | |||
- | - name: Just force systemd to reread configs (2.4 and above) | ||
- | systemd: | ||
- | daemon_reload: | ||
- | |||
- | - name: Start hashtopolis-agent service | ||
- | systemd: | ||
- | name: hashtopolis-agent | ||
- | enabled: true | ||
- | state: started | ||
- | </ | ||
- | - '' | ||
- | - If some agents are not coming on-line, check the '' | ||
- | |||
- | ====== Step 6 - Confirm Agents are Up and Running ====== | ||
- | - Check the services using a playbook | ||
- | * <file yaml check-agent-service.yml> | ||
- | --- | ||
- | - hosts: agents | ||
- | tasks: | ||
- | - name: Get Service Status | ||
- | ansible.builtin.systemd: | ||
- | name: " | ||
- | register: hta_service_status | ||
- | - debug: | ||
- | var: hta_service_status.status.ActiveState | ||
- | </ | ||
- | - Log in to the Hashtopolis dashboard and view the agents | ||
- | - Edit each agent " | ||
- | ====== Step 7 - Create Sample md5 Password Hashes ====== | ||
- | - Create a list of passwords you want to crack | ||
- | * Use a variety of passwords | ||
- | * poor passwords | ||
- | * kids passwords ([[https:// | ||
- | * short leet passwords | ||
- | * short truly random passwords | ||
- | * <code bash> | ||
- | sudo apt install pwgen -ypwgen | ||
- | pwgen 5 1 | ||
- | pwgen 7 1 | ||
- | </ | ||
- | - Put the passwords in a file '' | ||
- | * <file bash passwords.txt> | ||
- | Butterfly123! | ||
- | returnofthejedi | ||
- | J@sonHouse | ||
- | sillywombat11 | ||
- | mi$tyHelp55 | ||
- | January2022 | ||
- | P@$$w0rd | ||
- | Ewug4 | ||
- | ieMuth6 | ||
- | covidsucks | ||
- | </ | ||
- | - Create a list of md5 hashes of these passwords (we are cracking with very old NUCs after all) in the file '' | ||
- | * <file bash hash-passwords.sh> | ||
- | #!/bin/bash | ||
- | file=" | ||
- | output=" | ||
- | while read -r line | ||
- | do | ||
- | /bin/echo -n " | ||
- | done < $file | ||
- | </ | ||
- | * <file bash hashes.txt> | ||
- | 7c67bd5694775b082d3d858a1882afb1 | ||
- | 7dd02e107e35921b778bd4d61be734b1 | ||
- | 966ffda037af61805f2d797d4cafce12 | ||
- | f81e55522520a7646c6d5a1c643cda9c | ||
- | 2f43b4850a2ecd83471d7e938d54a636 | ||
- | 27d745dd658451e50f969e132e86de9f | ||
- | c53e479b03b3220d3d56da88c4cace20 | ||
- | fd350c0534cff7b3e4bc6b99b11c1286 | ||
- | cfbf38310f0bb6972addb10494db51db | ||
- | 26dc3dac9e39bfa97fdf180899b9e81f | ||
- | </ | ||
- | - SORT the file | ||
- | * '' | ||
- | * <file bash hashes.txt> | ||
- | 26dc3dac9e39bfa97fdf180899b9e81f | ||
- | 27d745dd658451e50f969e132e86de9f | ||
- | 2f43b4850a2ecd83471d7e938d54a636 | ||
- | 7c67bd5694775b082d3d858a1882afb1 | ||
- | 7dd02e107e35921b778bd4d61be734b1 | ||
- | 966ffda037af61805f2d797d4cafce12 | ||
- | c53e479b03b3220d3d56da88c4cace20 | ||
- | cfbf38310f0bb6972addb10494db51db | ||
- | f81e55522520a7646c6d5a1c643cda9c | ||
- | fd350c0534cff7b3e4bc6b99b11c1286 | ||
- | </ | ||
- | - Upload the hashes.txt file to Hashtopolis | ||
- | * Lists > New hashlist | ||
- | * Name: hashes.txt | ||
- | * Hashtype: 0 (md5) | ||
- | * Hashlist format: Text File | ||
- | * Hash source: Upload | ||
- | * File to upload: Click Choose File, then select the file | ||
- | * Click Create hashlist | ||
- | |||
- | ====== Step 8 - Create Tasks to Crack the Hashes ====== | ||
- | - Tasks > New Task | ||
- | * Name: demo | ||
- | * Hashlist: hashes.txt | ||
- | * Command: | ||
- | * Click Rules then check (under T) OneRuleToRuleThemAll.rule | ||
- | * Click Wordlists then check (under T) rockyou.txt | ||
- | * Command should be: "#HL# -r OneRuleToRuleThemAll.rule rockyou.txt" | ||
- | * Priority: leave 10 (greater than 0) | ||
- | * Maximum number of agents: leave 0 | ||
- | * Task notes: demo | ||
- | * Color: A00000 | ||
- | * Click Create Task | ||
- | * Under Assigned agents | ||
- | * For each node click Assign | ||
- | * WARNING if the task assignment fails, modify the agent(s) to be " | ||
- | - Wait for your job to complete | ||
- | * Click Lists > Cracks to view cracked passwords | ||
- | * First to be cracked: | ||
- | * P@$$w0rd | ||
- | * Butterfly123! | ||
- | * January2022 | ||
- | * covidsucks | ||
- | * sillywombat11 | ||
- | * Ewug4 | ||
- | * Consider what the difference would be without using the rule or with using the smaller word list | ||
- | - Tasks > New Task | ||
- | * Name: brute7 | ||
- | * Hashlist: hashes.txt | ||
- | * Command: | ||
- | * '' | ||
- | * Priority: 10 | ||
- | * Maximum number of agents: leave 0 | ||
- | * Task notes: brute force | ||
- | * Color: 00A000 | ||
- | * Click Create Task | ||
- | - Tasks > New Task | ||
- | * Name: brute8 | ||
- | * Hashlist: hashes.txt | ||
- | * Command: | ||
- | * '' | ||
- | * Priority: 10 | ||
- | * Maximum number of agents: leave 0 | ||
- | * Task notes: brute force | ||
- | * Color: 00A000 | ||
- | * Click Create Task | ||
- | - Create more tasks for longer lengths if you'd like | ||
- | |||
- | ====== Step 9 - Uninstall Hashtopolis ====== | ||
- | - Create the file / | ||
- | * <file yaml remove-hashtopolis.yml> | ||
- | --- | ||
- | - hosts: server | ||
- | become: true | ||
- | become_user: | ||
- | tasks: | ||
- | - name: Stop and disable services | ||
- | service: | ||
- | name: "{{ item }}" | ||
- | state: stopped | ||
- | enabled: false | ||
- | with_items: | ||
- | - apache2 | ||
- | - mysql | ||
- | - name: Remove packages | ||
- | apt: | ||
- | name: | ||
- | - apache2 | ||
- | - mysql | ||
- | - python3-pymysql | ||
- | - php | ||
- | - php-pear | ||
- | - php-mysql | ||
- | - libapache2-mod-php | ||
- | state: absent | ||
- | autoclean: true | ||
- | purge: true | ||
- | - name: Remove directory | ||
- | file: | ||
- | state: absent | ||
- | path: / | ||
- | - hosts: agents | ||
- | become: true | ||
- | become_user: | ||
- | tasks: | ||
- | - name: Stop and disable services | ||
- | service: | ||
- | name: "{{ item }}" | ||
- | state: stopped | ||
- | enabled: false | ||
- | with_items: | ||
- | - hashtopolis-agent | ||
- | - name: Remove packages | ||
- | apt: | ||
- | name: | ||
- | - git | ||
- | - zip | ||
- | - curl | ||
- | - hashcat | ||
- | - python3-psutil | ||
- | - python3-requests | ||
- | - pciutils | ||
- | state: absent | ||
- | autoclean: true | ||
- | purge: true | ||
- | </ | ||
- | - Run the playbook: '' | ||
- | |||
- | NOTE After running playbook to remove Hashtoplis, I would that upon reinstalling the server, the Hashtopolis server PHP stopped working. The following are commands to fix that issue. | ||
- | |||
- | <code bash> | ||
- | sudo apt install php-fpm | ||
- | sudo a2enmod proxy_fcgi setenvif | ||
- | sudo a2enconf php8.1-fpm | ||
- | sudo systemctl restart apache2 | ||
- | </ | ||
- | |||
- | ====== Optional ====== | ||
- | Try cracking other hashes. | ||
- | |||
- | ===== Ubuntu type 1800 ===== | ||
- | - On [[NUC 1]] | ||
- | - Create a user account name '' | ||
- | - Dump the hash for the user '' | ||
- | * '' | ||
- | - In Hashtopolis | ||
- | - Create a lastlist | ||
- | * name '' | ||
- | * paste in the hash (starts with and includes " | ||
- | * you can also use the example hash from [[https:// | ||
- | * hashtype 1800 - sha512crypt, | ||
- | * No check for salted hashes, separator | ||
- | * No check for salt is in hex (only when salted hashes) | ||
- | - Create a task | ||
- | * name unix | ||
- | * hashlist Unix | ||
- | * worklist rockyou.txt | ||
- | * priority 5 | ||
- | * attack command: ''# | ||
- | |||
- | ===== Windows ===== | ||
- | Note that I'm still working out the specifics | ||
- | |||
- | Reference: [[https:// | ||
- | |||
- | Issues: | ||
- | * benchmarks are seeming to get stuck | ||
- | * agents error out | ||
- | * plaintext comes back blank | ||
- | |||
- | - On the Windows 10 PC | ||
- | - Add an account with the a simple password, such as '' | ||
- | * net user add person /active:yes /add | ||
- | * net localgroup administrators /add person | ||
- | * making this user an administrator makes it show up easier to find in the password hash dump | ||
- | * '' | ||
- | * set the password to something easy like '' | ||
- | - Extract the SAM and SYSTEM registry hives | ||
- | * Open a shell as Administrator | ||
- | * '' | ||
- | * '' | ||
- | * the last parameter is the location to copy the file two | ||
- | - On [[NUC 1]] | ||
- | - Copy the SAM and SYSTEM registry hives to [[NUC 1]] | ||
- | - Install impacket-secretsdump | ||
- | * '' | ||
- | - Dump the system keys and hashes | ||
- | * If the files are named " | ||
- | * '' | ||
- | - For your test user (i.e. '' | ||
- | * one for LM authentication, | ||
- | * other is the NTLM string | ||
- | * For example, for person: | ||
- | * LM aad3b435b51404eeaad3b435b51404ee = means LM is not being stored | ||
- | * might this actually be NTLM hash? let's try | ||
- | * NTLM 8846f7eaee8fb117ad06bdd830b7586c | ||
- | * Warning 31d6cfe0d16ae931b73c59d7e0c089c0 is blank password, and it means weren' | ||
- | - In Hashtopolis | ||
- | - Create new hashlists | ||
- | * LM | ||
- | * Name: LM | ||
- | * Hashtype: 3000 - LM | ||
- | * Paste in text, the LM hash you dumped | ||
- | * Create | ||
- | * Trying Runtime Benchmark | ||
- | * NTLM | ||
- | * Name: NTLM | ||
- | * Hashtype: 1000 - NTLM | ||
- | * Paste in text, the LM hash you dumped | ||
- | * Create | ||
- | - Create new tasks | ||
- | * LM | ||
- | * Name: LM | ||
- | * Hashlist: LM | ||
- | * Enable rule OneRuleToRuleThemAll.rule | ||
- | * Enable worklist rockyou.txt | ||
- | * Priority: 10 | ||
- | * Attack command: ''# | ||
- | * NTLM | ||
- | * Name: LM | ||
- | * Hashlist: LM | ||
- | * Enable rule OneRuleToRuleThemAll.rule | ||
- | * Enable worklist rockyou.txt | ||
- | * Priority: 9 | ||
- | * Attack command: ''# | ||
- | * If the plaintext comes back blank....?? | ||
lab/stack_of_nucs/ansible_playbook_-_hashtopolis_installation.1683562604.txt.gz · Last modified: 2023/05/08 16:16 by user