Skip to content

Instantly share code, notes, and snippets.

@fer
Last active June 7, 2021 11:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fer/1674c950389325ef215e96b3783d9c98 to your computer and use it in GitHub Desktop.
Save fer/1674c950389325ef215e96b3783d9c98 to your computer and use it in GitHub Desktop.
Zeek IDS

filebeat boilerplate code

Zima SIEM

Fecha de Inicio: 24 de Mayo, 2021 2 meses

Ideas

  • Alertas de los twits que hablan de ti

Objetivos / Casos de Uso

  • Salvar esquema nacional de seguridad del OAR/

Monitorizar servicios ya existentes:

  • Web Server (jBoss, Apache, nginx...)
  • Monitorizar Email

Monitorizar servicios de seguridad que se pudieran llegar a instalar:

  • Zeek
  • pfSense
  • OSSEC
  • Yara 4 OSSEC

Características

  • Modulable
  • Construcción en menos de 300 horas

Instalar ELK en Ubuntu

Basado en esta guía

sudo apt-get install openjdk-8-jdk
sudo apt-get install nginx
wget –qO – https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add –
sudo apt-get install apt-transport-https
echo "deb https://artifacts.elastic.co/packages/7.x/apt stable main" | sudo tee –a /etc/apt/sources.list.d/elastic-7.x.list
sudo apt-get update

Instalar Elasticsearch

sudo apt-get install elasticsearch
sudo vi /etc/elasticsearch/elasticsearch.yml
...
network.host: localhost
http.port: 9200
discovery.type: single-node
...
sudo vi /etc/elasticsearch/jvm.options
#  Find the lines starting with -Xms and -Xmx. In the example below, the maximum (-Xmx) and minimum (-Xms) size is set to 512MB.
sudo systemctl start elasticsearch.service

El servicio corre en localhost:9200

Instalar Kibana

sudo apt-get install kibana
sudo vi /etc/kibana/kibana.yml
...
server.port: 5601
server.host: "localhost"
elasticsearch.hosts: ["http://localhost:9200"]
sudo systemctl start kibana

El servicio corre en localhost:5601

Instalar logstash

sudo apt-get install logstash
sudo systemctl start logstash
sudo systemctl enable logstash
sudo systemctl status logstash

Logstash is a highly customizable part of the ELK stack. Once installed, configure its INPUT, FILTERS, and OUTPUT pipelines according to your own individual use case.

All custom Logstash configuration files are stored in /etc/logstash/conf.d/.

https://www.elastic.co/guide/en/logstash/7.0/config-examples.html

Instalar Filebeat

sudo apt-get install filebeat
sudo vi /etc/filebeat/filebeat.yml

Keep commented

# output.elasticsearch:
   # Array of hosts to connect to.
   # hosts: ["localhost:9200"]

Uncomment:

output.logstash
     hosts: ["localhost:5044"]

Enable the Filebeat system module, which will examine local system logs:

sudo filebeat modules enable system
sudo filebeat setup --index-management -E output.logstash.enabled=false -E 'output.elasticsearch.hosts=["localhost:9200"]'
sudo systemctl start filebeat
sudo systemctl enable filebeat
curl -XGET http://localhost:9200/_cat/indices?v

Instalación de ELK stack con Docker

Clonar este repo y ejecutar cluster con docker:

git clone https://github.com/deviantony/docker-elk
cd docker-elk
docker-compose up

The stack is pre-configured with the following privileged bootstrap user: user: elastic password: changeme

To do

  • Buscar nombre
  • En Español
  • Crear cualquier grafico en Kibana
  • Importar cualquier flujo de datos
  • Crear filtros
  • Crear alarmas
  • Listar/Personalizar Beats para ingestion de datos que no existan todavia
  • Fecha fin de proyecto
  • Fecha empezar a vender

Herramientas

  • [Elasticsearch]
  • [Kibana]
  • [Logstash]
  • [Filebeat]
  • [Metricbeat]
  • Packetbeat: Network data
  • [Heartbeat]
  • [Auditbeat]
  • [Yara]
  • pfsense
  • Zeek

SIEM Process

  • Step #1: Collect data from various sources.
  • Step #2: Normalize and aggregate collected data.
  • Step #3: Analyze the data to discover and detect threats.
  • Step #4: Pinpoint security breaches and enable organizations to investigate alerts.

Links

Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment