michkoll / ansible-cowrie

Setup a honeypot on aws EC2 instance

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ansible-cowrie

Setup a honeypot on aws EC2 instance. This playbook reads all EC2 instances for the given access key. Cowrie is installed to all machines that are tagged with Name:Cowrie

Using

Following command will execute the playbook

ansible-playbook site.yml

Prerequisites

Install ansible roles

Before running the playbook you have to install the ansible roles used in this playbook. The roles should be installed the roles/ directory (default configuration in provided ansible.cfg).

ansible-galaxy install --force -r requirements.yml

Prepare instances

Ansible managed machines need to have python installed. Please make sure python is installed in /usr/lib/python

AWS access

Before running the aws related roles, export your access and secret keys to environment. See AWS EC2 External Inventory Script for more information.

export AWS_ACCESS_KEY_ID='AK123'
export AWS_SECRET_ACCESS_KEY='abc123'

Important variables

Short overview of used inventory variables and default values

# Group_vars cowrie
ansible_ssh_private_key_file: ~/.ssh/cowrie.pem

# Group_vars ubuntu
ansible_ssh_user: ubuntu

To establish a ssh connection to the EC2 instances you have to provide the correct key file. The playbooks supports only Ubuntu server at that time.

Features

  1. Reads the aws machines for the given access keys
  2. Playbook will be executed for alle machines tagged in aws console with Name:Cowrie
  3. Hardening options
  4. change default ssh key to inventory variable ansible_port
  5. installs several iptables rule, only opening required cowrie ports
  6. Installs cowrie (for configuration options see role documentation)
  7. Install kippo-graph

Testing

For local testing purpose a vagrant config is added. First add roles in tests/playbook.yml. Start vagrant machine.

vagrant up --no-provision

Change the ssh port manually in /etc/ssh/sshd_config to the port configured in inventory and restart ssh service. If you use another port than 49222 you have to edit Vagrantfile.

Install python with sudo apt install python

You can provision the machine with

vagrant provision

License

MIT

Author Information

© 2018 Written by Michael Koll

About

Setup a honeypot on aws EC2 instance


Languages

Language:Python 98.1%Language:Ruby 1.9%