Skip to content

Commit

Permalink
Updated HMM learning data hmm.pkl #99
Browse files Browse the repository at this point in the history
  • Loading branch information
shu-tom committed Feb 8, 2021
1 parent e73d002 commit c4715d7
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions docker-compose-with-elasticstack/LogonTracer/build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ RUN git clone https://github.com/JPCERTCC/LogonTracer.git \
&& cd LogonTracer \
&& pip install cython \
&& pip install numpy \
&& pip install scipy==1.2.1 \
&& pip install statsmodels==0.10.2 \
&& pip install scipy \
&& pip install statsmodels \
&& pip install -r requirements.txt \
&& sed -i 's/\" -s \" + NEO4J_SERVER/\" -s neo4j\"/g' logontracer.py \
&& sed -i 's/+ NEO4J_SERVER +/+ \"neo4j\" +/g' logontracer.py \
Expand Down
4 changes: 2 additions & 2 deletions docker-compose/LogonTracer/build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ RUN git clone https://github.com/JPCERTCC/LogonTracer.git \
&& cd LogonTracer \
&& pip install cython \
&& pip install numpy \
&& pip install scipy==1.2.1 \
&& pip install statsmodels==0.10.2 \
&& pip install scipy \
&& pip install statsmodels \
&& pip install -r requirements.txt \
&& sed -i 's/\" -s \" + NEO4J_SERVER/\" -s neo4j\"/g' logontracer.py \
&& sed -i 's/+ NEO4J_SERVER +/+ \"neo4j\" +/g' logontracer.py \
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,8 @@ RUN git clone https://github.com/JPCERTCC/LogonTracer.git \
&& cd LogonTracer \
&& pip install cython \
&& pip install numpy \
&& pip install scipy==1.2.1 \
&& pip install statsmodels==0.10.2 \
&& pip install scipy \
&& pip install statsmodels \
&& pip install -r requirements.txt \
&& unlink /var/lib/neo4j/data \
&& mkdir -p /var/lib/neo4j/data/databases \
Expand Down
2 changes: 1 addition & 1 deletion logontracer.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
has_hmmlearn = False

try:
from sklearn.externals import joblib
import joblib
has_sklearn = True
except ImportError:
has_sklearn = False
Expand Down
Binary file modified model/hmm.pkl
Binary file not shown.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ numpy
py2neo>=2020.0.0
evtx
lxml
scipy==1.2.1
scipy
changefinder
flask
hmmlearn
scikit-learn==0.19.2
scikit-learn
elasticsearch-dsl>=7.0.0,<8.0.0

0 comments on commit c4715d7

Please sign in to comment.