AIL-framework/HOWTO.md

83 lines
2.8 KiB
Markdown
Raw Normal View History

2023-05-30 14:48:06 +02:00
# Feeding, adding new features and contributing
2017-05-03 14:25:58 +02:00
## [Documentation AIL Importers](./doc/README.md#ail-importers)
2017-05-03 14:25:58 +02:00
[Documentation AIL Importers](./doc/README.md#ail-importers)
2017-05-03 14:25:58 +02:00
## How to feed the AIL framework
2017-05-03 14:42:37 +02:00
2017-05-03 14:25:58 +02:00
AIL is an analysis tool, not a collector!
2017-05-09 16:35:43 +02:00
However, if you want to collect some pastes and feed them to AIL, the procedure is described below. Nevertheless, moderate your queries!
2017-05-03 14:25:58 +02:00
1. [AIL Importers](./doc/README.md#ail-importers)
2. ZMQ: Be a collaborator of CIRCL and ask to access our feed. It will be sent to the static IP you are using for AIL.
2017-05-03 14:25:58 +02:00
2023-05-30 14:48:06 +02:00
## How to create a new module
2017-05-03 14:25:58 +02:00
2023-05-30 14:48:06 +02:00
To add a new processing or analysis module to AIL, follow these steps:
2017-05-03 14:25:58 +02:00
2023-05-30 14:48:06 +02:00
1. Add your module name in [./configs/modules.cfg](./configs/modules.cfg) and subscribe to at least one module at minimum (Usually, `Item`).
2017-05-03 14:25:58 +02:00
2023-05-30 14:48:06 +02:00
2. Use [./bin/modules/modules/TemplateModule.py](./bin/modules/modules/TemplateModule.py) as a sample module and create a new file in bin/modules with the module name used in the `modules.cfg` configuration.
2017-05-03 14:25:58 +02:00
2023-05-30 14:48:06 +02:00
## How to contribute a module
2017-05-03 14:25:58 +02:00
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.
2017-05-09 16:35:43 +02:00
2023-05-30 14:48:06 +02:00
## Additional information
2017-05-09 16:35:43 +02:00
2023-05-30 14:48:06 +02:00
### Crawler
In AIL, you can crawl websites and Tor hidden services. Don't forget to review the proxy configuration of your Tor client and especially if you enabled the SOCKS5 proxy
### Installation
2018-09-27 11:14:29 +02:00
[Install Lacus](https://github.com/ail-project/lacus)
2018-09-28 11:32:08 +02:00
### Configuration
2018-09-28 11:32:08 +02:00
1. Lacus URL:
2023-05-30 14:48:06 +02:00
In the web interface, go to `Crawlers` > `Settings` and click on the Edit button
2023-05-17 16:07:32 +02:00
![Splash Manager Config](./doc/screenshots/lacus_config.png?raw=true "AIL Lacus Config")
![Splash Manager Config](./doc/screenshots/lacus_config_edit.png?raw=true "AIL Lacus Config")
2. Launch AIL Crawlers:
Choose the number of crawlers you want to launch
![Splash Manager Nb Crawlers Config](./doc/screenshots/crawler_nb_captures.png?raw=true "AIL Lacus Nb Crawlers Config")
2023-05-30 14:48:06 +02:00
![Splash Manager Nb Crawlers Config](./doc/screenshots/crawler_nb_captures_edit.png?raw=true "AIL Lacus Nb Crawlers Config")
2019-07-05 16:33:58 +02:00
2023-05-30 14:48:06 +02:00
### Kvrocks Migration
2023-05-17 15:46:44 +02:00
---------------------
**Important Note:
We are currently working on a [migration script](https://github.com/ail-project/ail-framework/blob/master/update/v5.0/DB_KVROCKS_MIGRATION.py) to facilitate the migration to Kvrocks.
**
2023-05-17 15:46:44 +02:00
Please note that the current version of this migration script only supports migrating the database on the same server.
(If you plan to migrate to another server, we will provide additional instructions in this section once the migration script is completed)
To migrate your database to Kvrocks:
1. Launch ARDB and Kvrocks
2. Pull from remote
2023-05-30 14:48:06 +02:00
```shell
2023-05-17 15:46:44 +02:00
git checkout master
git pull
```
3. Launch the migration script:
2023-05-30 14:48:06 +02:00
```shell
2023-05-17 15:46:44 +02:00
git checkout master
git pull
cd update/v5.0
2023-05-17 15:46:44 +02:00
./DB_KVROCKS_MIGRATION.py
```