This repository has been archived by the owner on Jun 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add option for zeek in addition to bro (#131)
- Loading branch information
Showing
2 changed files
with
99 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
from .plugin import Plugin | ||
import re | ||
from csirtg_indicator import Indicator | ||
from csirtg_indicator.constants import PYVERSION | ||
try: | ||
from StringIO import StringIO | ||
except ImportError: | ||
from io import StringIO | ||
|
||
|
||
from pprint import pprint | ||
|
||
itype = { | ||
'ipv4': 'ADDR', | ||
'ipv6': 'ADDR', | ||
'url': 'URL', | ||
'fqdn': 'DOMAIN', | ||
'md5': 'FILE_HASH', | ||
'sha1': 'FILE_HASH', | ||
'sha256': 'FILE_HASH', | ||
} | ||
|
||
COLUMNS = ['fields', 'indicator', 'indicator_type', 'meta.cif_tags', 'meta.cif_confidence', 'meta.cif_source', 'meta.do_notice'] | ||
|
||
HEADER = '#' + '\t'.join(COLUMNS) | ||
SEP = '|' | ||
|
||
|
||
def _i_to_zeek(i, cols): | ||
if isinstance(i, Indicator): | ||
i = i.__dict__() | ||
|
||
cols = ['indicator', 'itype', 'tags', 'confidence', 'provider'] | ||
r = [] | ||
|
||
if i['itype'] is 'url': | ||
i['indicator'] = re.sub(r'(https?\:\/\/)', '', i['indicator']) | ||
|
||
for c in cols: | ||
y = i.get(c, '-') | ||
|
||
if type(y) is list: | ||
y = SEP.join(y) | ||
|
||
if isinstance(y, int): | ||
y = str(y) | ||
|
||
if PYVERSION == 2: | ||
if isinstance(y, unicode): | ||
y = y.encode('utf-8') | ||
else: | ||
if isinstance(y, bytes): | ||
y = y.encode('utf-8') | ||
|
||
if c is 'itype': | ||
y = 'Intel::{0}'.format(itype[i[c]]) | ||
|
||
r.append(str(y)) | ||
|
||
r.append('T') | ||
return "\t".join(r) | ||
|
||
|
||
def get_lines(data, cols=COLUMNS): | ||
output = StringIO() | ||
output.write("{0}\n".format(HEADER)) | ||
cols = ['indicator', 'itype', 'tags', 'confidence', 'provider'] | ||
|
||
for i in data: | ||
i = _i_to_zeek(i, cols) | ||
|
||
output.write(i) | ||
output.write("\n") | ||
yield output.getvalue() | ||
|
||
if isinstance(output, StringIO): | ||
output.truncate(0) | ||
|
||
|
||
class Zeek(Plugin): | ||
__name__ = 'zeek' | ||
|
||
def __init__(self, *args, **kwargs): | ||
super(Zeek, self).__init__(*args, **kwargs) | ||
|
||
self.cols = COLUMNS | ||
|
||
def __repr__(self): | ||
text = [] | ||
for i in self.data: | ||
i = _i_to_zeek(i, self.cols) | ||
text.append(i) | ||
|
||
text = "\n".join(text) | ||
|
||
text = "{0}\n{1}".format(HEADER, text) | ||
return text |