mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
Merge branch 'master' of https://github.com/CIRCL/AIL-framework
This commit is contained in:
commit
c0cab45df8
3 changed files with 14 additions and 5 deletions
|
@ -1,7 +1,11 @@
|
||||||
FROM ubuntu:16.04
|
FROM ubuntu:16.04
|
||||||
|
|
||||||
RUN mkdir /opt/AIL && apt-get update -y \
|
# Make sure that all updates are in place
|
||||||
&& apt-get install git python-dev build-essential \
|
RUN apt-get clean && apt-get update -y && apt-get upgrade -y \
|
||||||
|
&& apt-get dist-upgrade -y && apt-get autoremove -y
|
||||||
|
|
||||||
|
# Install needed packages
|
||||||
|
RUN apt-get install git python-dev build-essential \
|
||||||
libffi-dev libssl-dev libfuzzy-dev wget sudo -y
|
libffi-dev libssl-dev libfuzzy-dev wget sudo -y
|
||||||
|
|
||||||
# Adding sudo command
|
# Adding sudo command
|
||||||
|
@ -9,6 +13,7 @@ RUN useradd -m docker && echo "docker:docker" | chpasswd && adduser docker sudo
|
||||||
RUN echo "root ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
|
RUN echo "root ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
|
||||||
|
|
||||||
# Installing AIL dependencies
|
# Installing AIL dependencies
|
||||||
|
RUN mkdir /opt/AIL
|
||||||
ADD . /opt/AIL
|
ADD . /opt/AIL
|
||||||
WORKDIR /opt/AIL
|
WORKDIR /opt/AIL
|
||||||
RUN ./installing_deps.sh
|
RUN ./installing_deps.sh
|
||||||
|
|
|
@ -153,6 +153,11 @@ Eventually you can browse the status of the AIL framework website at the followi
|
||||||
http://localhost:7000/
|
http://localhost:7000/
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Training
|
||||||
|
--------
|
||||||
|
|
||||||
|
CIRCL organises training on how to use or extend the AIL framework. The next training will be [Thursday, 20 Dec](https://en.xing-events.com/ZEQWMLJ.html) in Luxembourg.
|
||||||
|
|
||||||
HOWTO
|
HOWTO
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ pymisp
|
||||||
|
|
||||||
thehive4py
|
thehive4py
|
||||||
|
|
||||||
redis
|
redis==2.10.6
|
||||||
#filemagic conflict with magic
|
#filemagic conflict with magic
|
||||||
crcmod
|
crcmod
|
||||||
mmh3
|
mmh3
|
||||||
|
@ -13,7 +13,6 @@ zmq
|
||||||
langid
|
langid
|
||||||
|
|
||||||
#Essential
|
#Essential
|
||||||
redis
|
|
||||||
pyzmq
|
pyzmq
|
||||||
dnspython
|
dnspython
|
||||||
logbook
|
logbook
|
||||||
|
|
Loading…
Reference in a new issue