35 lines
1.3 KiB
YAML
35 lines
1.3 KiB
YAML
---
|
|
# Install Metasploit Framework
|
|
|
|
- name: General | Software | Metasploit | Facts
|
|
set_fact:
|
|
metasploit_installer: msfinstall
|
|
when: ansible_system in ("Linux", "Darwin")
|
|
|
|
- name: General | Software | Metasploit | Check Install Status
|
|
stat:
|
|
path: /usr/bin/msfconsole
|
|
register: metasploit_status
|
|
|
|
- name: General | Software | Metasploit | Refresh Apt Files
|
|
shell: "{{ item }}"
|
|
loop:
|
|
- "mkdir -p /tmp/apt/"
|
|
- "mv -fv /usr/share/keyrings/metasploit-framework.gpg /tmp/apt/metasploit-framework.gpg.old"
|
|
- "mv -fv /etc/apt/sources.list.d/metasploit-framework.list /tmp/apt/metasploit-framework.list.old"
|
|
- "mv -fv /etc/apt/preferences.d/pin-metasploit.pref /tmp/apt/pin-metasploit.pref.old"
|
|
when: ansible_system in ("Linux") and
|
|
not metasploit_status.stat.exists
|
|
ignore_errors: true
|
|
|
|
- name: General | Software | Metasploit | Install
|
|
shell: "{{ item }}"
|
|
loop:
|
|
- "curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb > {{ metasploit_installer }}"
|
|
- "chmod 755 {{ metasploit_installer }}"
|
|
- "mkdir -p {{ global_bin }}"
|
|
- "mv -fv ./msfinstall {{ global_bin }}/{{ metasploit_installer }}"
|
|
- yes y | "{{ global_bin }}/{{ metasploit_installer }}"
|
|
when: ansible_system in ("Linux", "Darwin") and
|
|
not metasploit_status.stat.exists
|