Giter Site home page Giter Site logo

evebox's Introduction

EveBox

EveBox is a Suricata "eve" event viewer for Elastic Search.

Requirements

  • Suricata, Logstash and Elastic Search (Elastic Search v1.3.0 or newer).
  • A webserver. EveBox consists of static files only. Apache, Nginx or any other static file webserver will do.
  • A modern browser.

Installation.

Clone this repo and serve up the app directory.

Or...

  1. Get the latest release from https://github.com/jasonish/evebox/releases.
  2. Extract evebox-.zip to your webserver.
  3. Optionally copy sample-config.js to config.js and modify. The Elastic Search settings can also be set from the user interface, but will need to be done from each browser.

Suricata / Logstash Setup

EveBox currently works around the concept of an inbox. That is, events go into the inbox until they are archive (acknowledged) or deleted. This is done by adding the "inbox" tag to events with Logstash.

Currently EveBox really only works with event_type alert, so to have all new alerts show up in the inbox a Logstash filter like the following can be added:

filter {

  # Add the "inbox" tag to all incoming alerts.
  if [event_type] == "alert" {
    mutate {
	  add_tag => ["inbox"]
    }
  }

}

Usage

EveBox is built around keyboard shorcuts. Hit the "Help" link or simply type "?" to get a list of keyboard shortcuts. If you are familiar with GMail keyboard shortcuts it should feel familiar very quickly.

TODOs

  • A darker theme.
  • Arbitrary tagging.
  • A backend might be needed to do such things as large bulk tagging.

License

BSD.

evebox's People

Contributors

jasonish avatar

Watchers

Jimmy Jose avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.