diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2021-02-23 14:46:47 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2021-02-23 14:46:47 +0100 |
commit | 0b5b177c14582dcaff854dda98db93c8d001682d (patch) | |
tree | ab1a2dffe19f0f03e0ff70e9da9360edb7a0f016 /examples/py-flow-info/flow-info.py | |
parent | 0a6d44dc60fb44c8aa59397d29b1f6cbb134d47d (diff) |
Extended nDPIsrvd.h with address parsing.
* nDPId supports looading of custom nDPI protocol/category files
* extended JSON schemas according to nDPI / nDPId JSON serializing
* removed memory holes in nDPId
* extended examples/c-captured
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'examples/py-flow-info/flow-info.py')
-rwxr-xr-x | examples/py-flow-info/flow-info.py | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/examples/py-flow-info/flow-info.py b/examples/py-flow-info/flow-info.py index 62e43f74b..a98b0743e 100755 --- a/examples/py-flow-info/flow-info.py +++ b/examples/py-flow-info/flow-info.py @@ -11,11 +11,16 @@ def prettifyEvent(color_list, whitespaces, text): term_attrs = str() for color in color_list: term_attrs += str(color) - return '{}{:>' + str(whitespaces) + '}{}'.format(term_attrs, text, TermColor.END) + fmt = '{}{:>' + str(whitespaces) + '}{}' + return fmt.format(term_attrs, text, TermColor.END) def onJsonLineRecvd(json_dict, current_flow, global_user_data): + instance_and_source = '' + instance_and_source += '[{}]'.format(TermColor.setColorByString(json_dict['alias'])) + instance_and_source += '[{}]'.format(TermColor.setColorByString(json_dict['source'])) + if 'basic_event_id' in json_dict: - print('{}: {}'.format(prettifyEvent([TermColor.WARNING, TermColor.BLINK], 16, 'BASIC-EVENT'), json_dict['basic_event_name'])) + print('{} {}: {}'.format(instance_and_source, prettifyEvent([TermColor.WARNING, TermColor.BLINK], 16, 'BASIC-EVENT'), json_dict['basic_event_name'])) return True elif 'flow_event_id' not in json_dict: return True @@ -40,10 +45,6 @@ def onJsonLineRecvd(json_dict, current_flow, global_user_data): else TermColor.FAIL + TermColor.BOLD + TermColor.BLINK + 'RISK' + TermColor.END, ndpi_frisk[:-2]) - instance_and_source = '' - instance_and_source += '[{}]'.format(TermColor.setColorByString(json_dict['alias'])) - instance_and_source += '[{}]'.format(TermColor.setColorByString(json_dict['source'])) - line_suffix = '' flow_event_name = '' if json_dict['flow_event_name'] == 'guessed' or json_dict['flow_event_name'] == 'not-detected': |