Got attack box and c2-redirector working

This commit is contained in:
n0mad1k
2025-08-21 16:25:00 -04:00
parent 1450a55e50
commit 66687b3009
93 changed files with 14924 additions and 3727 deletions
+23
View File
@@ -0,0 +1,23 @@
---
# Common MTA front server configuration tasks
- name: Configure MTA front servers
debug:
msg: |
Configuring MTA front servers for deployment {{ deployment_id }}
MTA hostname: {{ mta_hostname | default('mail.' + (phishing_domain | default(domain))) }}
SMTP auth user: {{ smtp_auth_user | default('admin') }}
- name: Install MTA software
debug:
msg: "Would install and configure MTA (Postfix/Exim) on target hosts"
delegate_to: "{{ item }}"
loop: "{{ groups['phishing_mta_front'] | default([]) }}"
when: groups['phishing_mta_front'] is defined
- name: Configure DKIM/SPF
debug:
msg: |
Would configure DKIM/SPF records for:
- Domain: {{ phishing_domain | default(domain) }}
- MTA hostname: {{ mta_hostname | default('mail.' + (phishing_domain | default(domain))) }}