https://github.com/wireghoul/mimir
Mimir network flow analysis software. Backend for Visdom
https://github.com/wireghoul/mimir
Last synced: 5 months ago
JSON representation
Mimir network flow analysis software. Backend for Visdom
- Host: GitHub
- URL: https://github.com/wireghoul/mimir
- Owner: wireghoul
- License: other
- Created: 2013-10-22T22:09:29.000Z (over 11 years ago)
- Default Branch: dev
- Last Pushed: 2013-07-23T07:59:07.000Z (almost 12 years ago)
- Last Synced: 2024-10-13T11:35:55.846Z (7 months ago)
- Language: Go
- Size: 1.25 MB
- Stars: 1
- Watchers: 3
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Mimir
Mimir is a network traffic flow analysis backend for Visdom. It is currently under heavy development and the Dev branch will be the default while master exists as a "stable" branch as much as possible during early development processes.Mimir requires the GoAVL library available at http://code.google.com/p/go-avltree/
To build the entire tree run 'go build' from the home directory.
Mimir uses Visdom for a frontend: http://github.com/visdom/visdom
## Quickstart Guide
### Install dependencies
Mimir depends on libgeoip and libpcap for sniffing and geolocating network traffic.
Ubuntu Example:
```shell
apt-get install git golang libgeoip-dev libpcap-dev
```
### Download and compile```shell
git clone https://github.com/visdom/visdom.git
cd visdom
git clone https://github.com/visdom/mimir.git
cd mimir
go build
wget http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz
gunzip GeoLiteCity.dat.gz
./runscripts/quickstart.sh
```Browse to http://your.host.here:8080
## Copyright and License
Copyright 2013 Southfork Security, Inc.Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.