Skip to content

Cyb3rMaddy/ELK-Project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Automated ELK Stack Deployment

The files in this repository were used to configure the network depicted below. Azure VM Topology

Web 1 and Web 2 hosts DVWA

ELK hosts ELK Stack

These files have been tested and used to generate a live ELK deployment on Azure. They can be used to either recreate the entire deployment pictured above. Alternatively, select portions of the playbook file may be used to install only certain pieces of it, such as Filebeat

This document contains the following details:

  • Description of the Topology
  • Access Policies
  • ELK Configuration
    • Beats in Use
    • Machines Being Monitored
  • How to Use the Ansible Build

Description of the Topology

The main purpose of this network is to expose a load-balanced and monitored instance of DVWA, the D*mn Vulnerable Web Application.

Load balancing ensures that the application will be highly available, in addition to restricting access to the network.

A jumpbox or bastion server serves as a gatway to gain entry into a remote network. Many times the primary mode of access is ssh and without the key access is forbidden A loadbalancer is meant to serve as a specific point of access for a service that is served by multiple machines. This allows high availability models to function properly Integrating an ELK server allows users to easily monitor the vulnerable VMs for changes to the log files and system resources.

Filebeat is meant primarily to watch for system logs and forward any changes to the Elasticsearch Host Metricbeat is used only for gathering metrics and system resources usage for display in Elasticsearch The configuration details of each machine may be found below.

image

Access Policies

The machines on the internal network are not exposed to the public Internet.

Only the JumpBox machine can accept connections from the Internet. Access to this machine is only allowed from my public IP

Machines within the network can only be accessed by JumpBox host. JumpBox: Public IP is 20.213.91.203 Private IP is 10.0.0.4

A summary of the access policies in place can be found in the table below. image

Elk Configuration

Ansible was used to automate configuration of the ELK machine. No configuration was performed manually, which is advantageous because... -It allows for full automation of a specific server and reduces configuration errors

The playbook implements the following tasks:

  • Install Docker: Installs the core docker code to the remote server
  • Install Python3_pip: Pip is an installation module that allows for additional docker modules to be installed easier
  • Docker Module: Tells the previous PIP module to install the necessary docker component modules
  • Increase Memory/Use More Memory: A common issue with the ELK Docker image is to little memory. This help fix the issue to allow the server to launch
  • Download and Launch ELK Container: This downloads the ELK docker container and initializes it with the specified ports being published

The following screenshot displays the result of running docker ps after successfully configuring the ELK instance.

ELK_docker

Target Machines & Beats

This ELK server is configured to monitor the following machines:

  • 10.0.0.5
  • 10.0.0.6
  • 10.1.0.4

We have installed the following Beats on these machines:

  • Web 1, Web 2

These Beats allow us to collect the following information from each machine:

  • Filebeats collects system type events such as logins to see who is actively logging into the system. filebeat-modules-system

  • Metricbeats collects useful information such as cpu usage and memory, this is particularly useful when seeing if there are any aberant programs or behaviors taking system resources metricbeat memory usage

Using the Playbook

In order to use the playbook, you will need to have an Ansible control node already configured. Assuming you have such a control node provisioned:

SSH into the control node and follow the steps below:

  • Copy the installELK_playbook.yml file to /etc.ansible/roles/installELK_playbook.yml.
  • Update the hosts file to include the name of the VM and its private IP
  • Run the playbook, and navigate to http://[your_elk_server_ip]:5601/app/kibana to check that the installation worked as expected.

Commands to Use the Playbook

nano ansible.cfg

add the machine, its IP, and ansible_python_interpreter=/usr/bin/python3 to the hosts

Ctrl + x to exit file

in the folder that install-elk.yml is in, run: cp install-elk.yml /etc/ansible

nano install-elk.yml /etc/ansible

name: installing elk hosts: [your_machine]

Ctrl + x to exit file

ansible-playbook install-elk.yml

The playbook file is located in /Ansible/installELK_playbook.yml

About

Azure project I did at Georgia Tech

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages