Fixed field mapping @ zeekengine.py (#143)
Fixed field mapping @ zeekengine.py: resp_h is destination host, please refer to https://docs.zeek.org/en/current/log-formats.html
This commit is contained in:
parent
9939dc3bf4
commit
4f989dcd94
@ -270,7 +270,7 @@ class ZeekEngine(object):
|
|||||||
if record is not None:
|
if record is not None:
|
||||||
f = {"filename": record["filename"],
|
f = {"filename": record["filename"],
|
||||||
"ip_src": record["id.orig_h"],
|
"ip_src": record["id.orig_h"],
|
||||||
"ip_dst": record["id.orig_p"],
|
"ip_dst": record["id.resp_h"],
|
||||||
"mime_type": record["mime_type"],
|
"mime_type": record["mime_type"],
|
||||||
"sha1": record["sha1"]}
|
"sha1": record["sha1"]}
|
||||||
if f not in self.files:
|
if f not in self.files:
|
||||||
|
Loading…
Reference in New Issue
Block a user