Skip to content

Commit c4715d7

Browse files
committed
Updated HMM learning data hmm.pkl #99
1 parent e73d002 commit c4715d7

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

docker-compose-with-elasticstack/LogonTracer/build/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ RUN git clone https://github.com/JPCERTCC/LogonTracer.git \
1919
&& cd LogonTracer \
2020
&& pip install cython \
2121
&& pip install numpy \
22-
&& pip install scipy==1.2.1 \
23-
&& pip install statsmodels==0.10.2 \
22+
&& pip install scipy \
23+
&& pip install statsmodels \
2424
&& pip install -r requirements.txt \
2525
&& sed -i 's/\" -s \" + NEO4J_SERVER/\" -s neo4j\"/g' logontracer.py \
2626
&& sed -i 's/+ NEO4J_SERVER +/+ \"neo4j\" +/g' logontracer.py \

docker-compose/LogonTracer/build/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ RUN git clone https://github.com/JPCERTCC/LogonTracer.git \
1919
&& cd LogonTracer \
2020
&& pip install cython \
2121
&& pip install numpy \
22-
&& pip install scipy==1.2.1 \
23-
&& pip install statsmodels==0.10.2 \
22+
&& pip install scipy \
23+
&& pip install statsmodels \
2424
&& pip install -r requirements.txt \
2525
&& sed -i 's/\" -s \" + NEO4J_SERVER/\" -s neo4j\"/g' logontracer.py \
2626
&& sed -i 's/+ NEO4J_SERVER +/+ \"neo4j\" +/g' logontracer.py \

docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,8 @@ RUN git clone https://github.com/JPCERTCC/LogonTracer.git \
194194
&& cd LogonTracer \
195195
&& pip install cython \
196196
&& pip install numpy \
197-
&& pip install scipy==1.2.1 \
198-
&& pip install statsmodels==0.10.2 \
197+
&& pip install scipy \
198+
&& pip install statsmodels \
199199
&& pip install -r requirements.txt \
200200
&& unlink /var/lib/neo4j/data \
201201
&& mkdir -p /var/lib/neo4j/data/databases \

logontracer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
has_hmmlearn = False
6565

6666
try:
67-
from sklearn.externals import joblib
67+
import joblib
6868
has_sklearn = True
6969
except ImportError:
7070
has_sklearn = False

model/hmm.pkl

10 Bytes
Binary file not shown.

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ numpy
22
py2neo>=2020.0.0
33
evtx
44
lxml
5-
scipy==1.2.1
5+
scipy
66
changefinder
77
flask
88
hmmlearn
9-
scikit-learn==0.19.2
9+
scikit-learn
1010
elasticsearch-dsl>=7.0.0,<8.0.0

0 commit comments

Comments
 (0)