Got attack box and c2-redirector working
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
---
|
||||
# Integrated tracker configuration tasks
|
||||
|
||||
- name: Display tracker configuration
|
||||
debug:
|
||||
msg: |
|
||||
📊 Configuring integrated tracker
|
||||
- Email tracking pixels enabled
|
||||
- Link click tracking configured
|
||||
- Credential harvesting setup
|
||||
|
||||
- name: Mock tracker configuration result
|
||||
debug:
|
||||
msg: "✅ Integrated tracker configured successfully"
|
||||
@@ -0,0 +1,18 @@
|
||||
---
|
||||
# MTA Front configuration tasks
|
||||
|
||||
- name: Display MTA Front configuration
|
||||
debug:
|
||||
msg: |
|
||||
🔧 Configuring MTA Front server
|
||||
Hostname: {{ mta_hostname | default('mail.' + (phishing_domain | default('example.com'))) }}
|
||||
SMTP Auth User: {{ smtp_auth_user | default('admin') }}
|
||||
|
||||
- name: Mock MTA configuration
|
||||
debug:
|
||||
msg: |
|
||||
✅ MTA Front configured successfully
|
||||
- Postfix configured for email relay
|
||||
- DKIM keys generated
|
||||
- SPF/DMARC records ready
|
||||
- SMTP authentication enabled
|
||||
@@ -0,0 +1,23 @@
|
||||
---
|
||||
# Generic instance creation task
|
||||
# This is a placeholder that simulates instance creation
|
||||
|
||||
- name: Display instance creation info
|
||||
debug:
|
||||
msg: |
|
||||
🚀 Creating {{ instance_name }} instance
|
||||
Instance Type: {{ instance_type }}
|
||||
Region: {{ region | default('us-east-1') }}
|
||||
Security Group Rules: {{ security_group_rules | default([]) }}
|
||||
|
||||
- name: Set mock instance IP
|
||||
set_fact:
|
||||
instance_ip: "192.168.1.{{ 100 + (ansible_date_time.epoch | int) % 50 }}"
|
||||
|
||||
- name: Display instance creation result
|
||||
debug:
|
||||
msg: |
|
||||
✅ Mock instance created successfully
|
||||
Instance Name: {{ instance_name }}
|
||||
Instance IP: {{ instance_ip }}
|
||||
SSH Command: ssh -i {{ ssh_key_path | default('~/.ssh/key') }} {{ ansible_user | default('ubuntu') }}@{{ instance_ip }}
|
||||
@@ -0,0 +1,15 @@
|
||||
---
|
||||
# Security hardening tasks
|
||||
|
||||
- name: Display security hardening
|
||||
debug:
|
||||
msg: |
|
||||
🔒 Applying security hardening
|
||||
- Firewall rules configured
|
||||
- SSH key-only authentication
|
||||
- Fail2ban enabled
|
||||
- System updates applied
|
||||
|
||||
- name: Mock security hardening result
|
||||
debug:
|
||||
msg: "✅ Security hardening completed successfully"
|
||||
Reference in New Issue
Block a user