python-netflow-v9-softflowd
python-netflow-v9-softflowd copied to clipboard
PyPI "netflow" package. NetFlow v9 parser, collector and analyzer implemented in Python 3. Developed and tested with softflowd
It looks to me that the enterprise flag bit is incorrectly cleared. Looking at line 957 in ipfix.py it clears the 7th bit when according to the spec the enterprise...
Currently, if a string is read from bytes `"foobar"`, it gets represented by `str("foobar)` as `"b'foobar'". This PR changes it to use decode to get the real representation
This PR is supposed to add support for variable length fields according to the standard set in https://www.rfc-editor.org/rfc/rfc7011.html#section-7.
Exception in thread Thread-2: Traceback (most recent call last): File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner self.run() File "/python-netflow-v9-softflowd/netflow/collector.py", line 129, in run export = parse_packet(pkt.data, templates) File "/python-netflow-v9-softflowd/netflow/utils.py", line 96,...
analyzer.py did not work when decode data collected by collector.py when exporter (softflowd) exported version 1 record, version 5 record or IPFIX record. This PR fix this problem. This code...
Hi, I wanted to report an issue that I encountered. I am using flowd from mindrot.org to send the netflow data to my python script. Unfortunately the Netflow implementation is...