AIL-framework/README.md

123 lines
4.5 KiB
Markdown
Raw Normal View History

2016-01-19 14:17:16 +01:00
[![Build Status](https://travis-ci.org/CIRCL/AIL-framework.svg?branch=master)](https://travis-ci.org/CIRCL/AIL-framework)
AIL
===
2016-02-08 11:34:54 +01:00
![Logo](./doc/logo/logo-small.png?raw=true "AIL logo")
AIL framework - Framework for Analysis of Information Leaks
2014-09-18 13:28:25 +02:00
AIL is a modular framework to analyse potential information leaks from unstructured data sources like pastes from Pastebin or similar services. AIL framework is flexible and can be extended to support other functionalities to mine sensitive information.
![Dashboard](./doc/screenshots/DashboardAIL.png?raw=true "AIL framework dashboard")
![Trending](./doc/screenshots/WordtrendingAIL.png?raw=true "AIL framework wordtrending")
2014-09-22 13:36:13 +02:00
AIL framework screencast: https://www.youtube.com/watch?v=9idfHCIMzBY
2014-09-22 13:35:46 +02:00
2016-02-08 11:49:33 +01:00
Features
--------
* Modular architecture to handle stream of unstructured or structured information
* Default support for external ZMQ feeds as provided by CIRCL or other providers
* Each modules can process and reprocess the information already processed by AIL
* Detecting and extracting URLs including their geographical location (e.g. IP addresses location)
* Extracting and validating potential leak of credit cards numbers
* Extracting and validating email addresses leaked including DNS MX validation
* Module for extracting Tor .onion addresses (to be further processed for analysis)
* Extracting and validating potential hostnames (e.g. to feed Passive DNS systems)
* A full-text indexer module to index unstructured information
* Many more modules for extracting phone numbers, credentials, ...
Installation
------------
2014-09-18 13:28:25 +02:00
Type these command lines for a fully automated installation and start AIL framework
2014-08-25 15:02:53 +02:00
```
git clone https://github.com/CIRCL/AIL-framework.git
cd AIL-framework
./installing_deps.sh
cd var/www/
./update_thirdparty.sh
cd ~/AIL-framework/
. ./AILENV/bin/activate
cd bin/
./LAUNCH.sh
```
The default [installing_deps.sh](./installing_deps.sh) is for Debian and Ubuntu based distribution. For Arch
linux based distribution, you can replace it with [installing_deps_archlinux.sh](./installing_deps_archlinux.sh).
2014-08-25 15:02:53 +02:00
There is also a [Travis file](.travis.yml) used for automating the installation that can be used to build and install AIL on other
systems.
Starting AIL web interface
--------------------------
2014-08-08 11:42:51 +02:00
To start with the web interface, you need to fetch the required Javascript/CSS files:
```
cd $AILENV
cd var/www/
bash update_thirdparty.sh
```
and then you can start the web interface:
```
cd $AILENV
cd var/www/
Flask_server.py
```
2014-09-18 13:28:25 +02:00
Eventually you can browse the status of the AIL framework at the following URL:
``http://localhost:7000/``
How to create a new module
--------------------------
If you want to add a new processing or analysis module in AIL, it's simple.
2016-02-08 10:43:58 +01:00
1. Add your module name in [./bin/packages/modules.cfg](./bin/packages/modules.cfg) and subscribe to the Redis_Global at minimum.
2016-02-08 10:43:58 +01:00
2. Use [./bin/template.py](./bin/template.py) as a sample module and create a new file in bin/ with the module name used in the modules.cfg configuration.
2016-02-08 11:55:39 +01:00
How to contribute a module
--------------------------
Feel free to fork the code, play with it, make some patches or add additional analysis modules.
To contribute your module, feel free to pull your contribution.
2014-08-20 15:31:10 +02:00
Redis and LevelDB overview
--------------------------
2014-08-20 15:33:26 +02:00
* Redis on TCP port 6379 - DB 1 - Paste meta-data
* DB 0 - Cache hostname/dns
* Redis on TCP port 6380 - Redis Pub-Sub only
* Redis on TCP port 6381 - DB 0 - Queue and Paste content LRU cache
* LevelDB on TCP port <year> - Lines duplicate
2014-08-20 15:31:10 +02:00
LICENSE
-------
```
Copyright (C) 2014 Jules Debra
Copyright (C) 2014-2016 CIRCL - Computer Incident Response Center Luxembourg (c/o smile, security made in Lëtzebuerg, Groupement d'Intérêt Economique)
Copyright (c) 2014-2016 Raphaël Vinot
Copyright (c) 2014-2016 Alexandre Dulaunoy
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
```